18 references to IsPartial
Microsoft.CodeAnalysis.VisualBasic (18)
Symbols\MethodSymbolExtensions.vb (2)
67
Return sourceMethod IsNot Nothing AndAlso sourceMethod.
IsPartial
77
Return sourceMethod IsNot Nothing AndAlso sourceMethod.
IsPartial
AndAlso sourceMethod.OtherPartOfPartial Is Nothing
Symbols\Source\SourceComplexParameterSymbol.vb (1)
305
(method IsNot Nothing AndAlso method.
IsPartial
) Then
Symbols\Source\SourceMemberContainerTypeSymbol.vb (2)
1748
If method IsNot Nothing AndAlso method.
IsPartial
AndAlso method.MethodKind = MethodKind.Ordinary Then
1825
ElseIf Not candidate.
IsPartial
Then
Symbols\Source\SourceMemberMethodSymbol.vb (10)
127
If Me.
IsPartial
Then
152
If Me.
IsPartial
Then
218
Dim methodImpl As SourceMemberMethodSymbol = If(Me.
IsPartial
, SourcePartialImplementation, Me)
357
If Me.
IsPartial
Then
388
Debug.Assert(Not Me.
IsPartial
)
416
If Me.
IsPartial
AndAlso Me.OtherPartOfPartial IsNot Nothing Then
444
Return Me.
IsPartial
531
Debug.Assert(definition.
IsPartial
)
532
Debug.Assert(implementation Is Nothing OrElse Not implementation.
IsPartial
)
541
If Me.
IsPartial
Then
Symbols\Source\SourceMethodSymbol.vb (3)
124
If methodSym.
IsPartial
AndAlso methodSym.IsSub Then
1733
Dim methodImpl As MethodSymbol = If(Me.
IsPartial
, PartialImplementationPart, Me)
1803
Dim methodImpl As SourceMethodSymbol = TryCast(If(Me.
IsPartial
, PartialImplementationPart, Me), SourceMethodSymbol)