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