1 instantiation of PEMethodSymbol
Microsoft.CodeAnalysis.VisualBasic (1)
115 references to PEMethodSymbol
Microsoft.CodeAnalysis.VisualBasic (47)
Symbols\Metadata\PE\PENamedTypeSymbol.vb (12)
556Dim method = DirectCast(members(index), PEMethodSymbol)
578method = DirectCast(members(index), PEMethodSymbol)
640Return HandleComparer.Default.Compare(DirectCast(x, PEMethodSymbol).Handle, DirectCast(y, PEMethodSymbol).Handle)
666Dim methodHandleToSymbol As Dictionary(Of MethodDefinitionHandle, PEMethodSymbol) = CreateMethods()
1188Private Function CreateMethods() As Dictionary(Of MethodDefinitionHandle, PEMethodSymbol)
1189Dim methods = New Dictionary(Of MethodDefinitionHandle, PEMethodSymbol)()
1205Private Sub CreateProperties(methodHandleToSymbol As Dictionary(Of MethodDefinitionHandle, PEMethodSymbol), members As ArrayBuilder(Of Symbol))
1227Private Sub CreateEvents(methodHandleToSymbol As Dictionary(Of MethodDefinitionHandle, PEMethodSymbol), members As ArrayBuilder(Of Symbol))
1252Private Shared Function GetAccessorMethod(moduleSymbol As PEModuleSymbol, methodHandleToSymbol As Dictionary(Of MethodDefinitionHandle, PEMethodSymbol), typeDef As TypeDefinitionHandle, methodDef As MethodDefinitionHandle) As PEMethodSymbol
1257Dim method As PEMethodSymbol = Nothing
Symbols\Metadata\PE\PEPropertySymbol.vb (13)
30Private ReadOnly _getMethod As PEMethodSymbol
31Private ReadOnly _setMethod As PEMethodSymbol
51getMethod As PEMethodSymbol,
52setMethod As PEMethodSymbol
85getMethod As PEMethodSymbol,
86setMethod As PEMethodSymbol,
382getMethodOpt As PEMethodSymbol,
384setMethodOpt As PEMethodSymbol,
437getMethod As PEMethodSymbol,
438setMethod As PEMethodSymbol,
531Private Shared Function GetAccessorParameter(accessor As PEMethodSymbol, index As Integer) As PEParameterSymbol
623getMethod As PEMethodSymbol,
624setMethod As PEMethodSymbol,
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (50)
CodeGen\CodeGenDelegateCreation.vb (11)
68Dim methodDef = CType(ctor, PEMethodSymbol).Handle
75Assert.True(CType(ctor, PEMethodSymbol).IsRuntimeImplemented)
89methodDef = CType(invoke, PEMethodSymbol).Handle
96Assert.True(CType(invoke, PEMethodSymbol).IsRuntimeImplemented)
120methodDef = CType(beginInvoke, PEMethodSymbol).Handle
127Assert.True(CType(beginInvoke, PEMethodSymbol).IsRuntimeImplemented)
142methodDef = CType(endInvoke, PEMethodSymbol).Handle
149Assert.True(CType(endInvoke, PEMethodSymbol).IsRuntimeImplemented)
167methodDef = CType(invoke, PEMethodSymbol).Handle
185methodDef = CType(endInvoke, PEMethodSymbol).Handle
205Assert.True(CType(invoke, PEMethodSymbol).IsRuntimeImplemented)
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler (7)
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler.UnitTests (3)
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (3)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (5)