14 overrides of IsCallerFilePath
Microsoft.CodeAnalysis.CSharp (14)
Symbols\FunctionPointers\FunctionPointerParameterSymbol.cs (1)
82internal override bool IsCallerFilePath => false;
Symbols\Metadata\PE\PEParameterSymbol.cs (1)
684internal override bool IsCallerFilePath
Symbols\NativeIntegerTypeSymbol.cs (1)
399internal override bool IsCallerFilePath => _underlyingParameter.IsCallerFilePath;
Symbols\ReducedExtensionMethodSymbol.cs (1)
639internal override bool IsCallerFilePath
Symbols\Retargeting\RetargetingParameterSymbol.cs (2)
162internal override bool IsCallerFilePath 202internal override bool IsCallerFilePath
Symbols\SignatureOnlyParameterSymbol.cs (1)
76internal override bool IsCallerFilePath { get { throw ExceptionUtilities.Unreachable(); } }
Symbols\Source\SourceComplexParameterSymbol.cs (1)
119internal override bool IsCallerFilePath => GetEarlyDecodedWellKnownAttributeData()?.HasCallerFilePathAttribute == true;
Symbols\Source\SourceDelegateClonedParameterSymbolForBeginAndEndInvoke.cs (1)
19internal override bool IsCallerFilePath => _originalParam.IsCallerFilePath;
Symbols\Source\SourcePropertyClonedParameterSymbolForAccessors.cs (1)
17internal override bool IsCallerFilePath => _originalParam.IsCallerFilePath;
Symbols\Source\SourceSimpleParameterSymbol.cs (1)
75internal override bool IsCallerFilePath
Symbols\Source\ThisParameterSymbol.cs (1)
98internal override bool IsCallerFilePath
Symbols\SubstitutedParameterSymbol.cs (1)
86internal override bool IsCallerFilePath
Symbols\Synthesized\SynthesizedParameterSymbol.cs (1)
100internal override bool IsCallerFilePath
9 references to IsCallerFilePath
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Invocation.cs (1)
1379else if (callerSourceLocation is object && parameter.IsCallerFilePath)
Symbols\NativeIntegerTypeSymbol.cs (1)
399internal override bool IsCallerFilePath => _underlyingParameter.IsCallerFilePath;
Symbols\Retargeting\RetargetingParameterSymbol.cs (2)
164get { return _underlyingParameter.IsCallerFilePath; } 204get { return _underlyingParameter.IsCallerFilePath; }
Symbols\Source\SourceDelegateClonedParameterSymbolForBeginAndEndInvoke.cs (1)
19internal override bool IsCallerFilePath => _originalParam.IsCallerFilePath;
Symbols\Source\SourcePropertyClonedParameterSymbolForAccessors.cs (1)
17internal override bool IsCallerFilePath => _originalParam.IsCallerFilePath;
Symbols\SubstitutedParameterSymbol.cs (1)
88get { return _underlyingParameter.IsCallerFilePath; }
Microsoft.CodeAnalysis.CSharp.Test.Utilities (2)
FunctionPointerUtilities.cs (2)
117Assert.False(symbol.IsCallerFilePath); 119Assert.False(symbol.IsCallerFilePath);