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