17 references to GetCustomAttributesForToken
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PEModuleSymbol.cs (1)
296
var loaded =
GetCustomAttributesForToken
(token);
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (2)
CodeGen\CodeGenOverridingAndHiding.cs (1)
4136
var allAttributes = ((PEModuleSymbol)parameter.ContainingModule).
GetCustomAttributesForToken
(peParameter.Handle);
Emit\OptionalArgumentsTests.cs (1)
464
var attribute = ((PEModuleSymbol)module).
GetCustomAttributesForToken
(field.Handle).Single();
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (10)
Attributes\AttributeTests_Assembly.cs (1)
1786
var attributes = module.
GetCustomAttributesForToken
(token);
Attributes\AttributeTests_IsUnmanaged.cs (1)
822
var attributes = ((PEModuleSymbol)typeParameter.ContainingModule).
GetCustomAttributesForToken
(((PETypeParameterSymbol)typeParameter).Handle);
Attributes\AttributeTests_Synthesized.cs (7)
187
var attributes = peModule.
GetCustomAttributesForToken
(token);
229
Assert.Equal("CompilerGeneratedAttribute", peModule.
GetCustomAttributesForToken
(((PEMethodSymbol)p.GetMethod).Handle).Single().AttributeClass.Name);
230
Assert.Equal("CompilerGeneratedAttribute", peModule.
GetCustomAttributesForToken
(((PEMethodSymbol)p.SetMethod).Handle).Single().AttributeClass.Name);
234
Assert.Empty(peModule.
GetCustomAttributesForToken
(((PEMethodSymbol)q.GetMethod).Handle));
235
Assert.Empty(peModule.
GetCustomAttributesForToken
(((PEMethodSymbol)q.SetMethod).Handle));
238
Assert.Equal("CompilerGeneratedAttribute", peModule.
GetCustomAttributesForToken
(((PEMethodSymbol)e.AddMethod).Handle).Single().AttributeClass.Name);
239
Assert.Equal("CompilerGeneratedAttribute", peModule.
GetCustomAttributesForToken
(((PEMethodSymbol)e.RemoveMethod).Handle).Single().AttributeClass.Name);
Attributes\WellKnownAttributesTestBase.cs (1)
91
var allAttributes = ((PEModuleSymbol)parameter.ContainingModule).
GetCustomAttributesForToken
(peParameter.Handle);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (4)
Symbols\ExtensionMethodTests.cs (1)
2605
var attr = ((PEModuleSymbol)module).
GetCustomAttributesForToken
(method.Handle).Single();
Symbols\IndexerTests.cs (1)
2138
Assert.Empty(((PEModuleSymbol)module).
GetCustomAttributesForToken
(peIndexer.Handle));
Symbols\Metadata\PE\LoadingAttributes.cs (2)
1310
Assert.Equal("System.Runtime.CompilerServices.DecimalConstantAttribute(0, 128, 0, 0, 7)", peModule.
GetCustomAttributesForToken
(field.Handle).Single().ToString());
1314
Assert.Equal("System.Runtime.CompilerServices.DecimalConstantAttribute(0, 128, 0, 0, 7)", peModule.
GetCustomAttributesForToken
(parameter.Handle).Single().ToString());