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)
306
(method IsNot Nothing AndAlso method.
IsPartial
) Then
Symbols\Source\SourceMemberContainerTypeSymbol.vb (2)
1749
If method IsNot Nothing AndAlso method.
IsPartial
AndAlso method.MethodKind = MethodKind.Ordinary Then
1826
ElseIf Not candidate.
IsPartial
Then
Symbols\Source\SourceMemberMethodSymbol.vb (10)
128
If Me.
IsPartial
Then
153
If Me.
IsPartial
Then
219
Dim methodImpl As SourceMemberMethodSymbol = If(Me.
IsPartial
, SourcePartialImplementation, Me)
358
If Me.
IsPartial
Then
389
Debug.Assert(Not Me.
IsPartial
)
417
If Me.
IsPartial
AndAlso Me.OtherPartOfPartial IsNot Nothing Then
445
Return Me.
IsPartial
532
Debug.Assert(definition.
IsPartial
)
533
Debug.Assert(implementation Is Nothing OrElse Not implementation.
IsPartial
)
542
If Me.
IsPartial
Then
Symbols\Source\SourceMethodSymbol.vb (3)
125
If methodSym.
IsPartial
AndAlso methodSym.IsSub Then
1767
Dim methodImpl As MethodSymbol = If(Me.
IsPartial
, PartialImplementationPart, Me)
1837
Dim methodImpl As SourceMethodSymbol = TryCast(If(Me.
IsPartial
, PartialImplementationPart, Me), SourceMethodSymbol)