43 overrides of IsExtern
Microsoft.CodeAnalysis.CSharp (43)
Lowering\IteratorRewriter\IteratorFinallyMethodSymbol.cs (1)
239public override bool IsExtern
Lowering\StateMachineRewriter\SynthesizedStateMachineProperty.cs (1)
149public override bool IsExtern
Symbols\AliasSymbol.cs (1)
136public sealed override bool IsExtern
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.PropertySymbol.cs (1)
191public override bool IsExtern
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.SynthesizedMethodBase.cs (1)
153public sealed override bool IsExtern
Symbols\AssemblySymbol.cs (1)
278public sealed override bool IsExtern
Symbols\DiscardSymbol.cs (1)
25public override bool IsExtern => false;
Symbols\ErrorMethodSymbol.cs (1)
44public override bool IsExtern
Symbols\ErrorPropertySymbol.cs (1)
78public override bool IsExtern { get { return false; } }
Symbols\FieldSymbol.cs (1)
223public sealed override bool IsExtern
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (1)
834public override bool IsExtern => false;
Symbols\LabelSymbol.cs (1)
21public override bool IsExtern
Symbols\LocalSymbol.cs (1)
113public sealed override bool IsExtern
Symbols\Metadata\PE\PEEventSymbol.cs (1)
278public override bool IsExtern
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
541public override bool IsExtern => HasFlag(MethodAttributes.PinvokeImpl);
Symbols\Metadata\PE\PEPropertySymbol.cs (1)
567public override bool IsExtern
Symbols\ModuleSymbol.cs (1)
180public sealed override bool IsExtern
Symbols\NamespaceOrTypeSymbol.cs (1)
98public sealed override bool IsExtern
Symbols\ParameterSymbol.cs (1)
374public override bool IsExtern
Symbols\RangeVariableSymbol.cs (1)
70public override bool IsExtern
Symbols\ReducedExtensionMethodSymbol.cs (1)
382public override bool IsExtern
Symbols\SignatureOnlyMethodSymbol.cs (1)
157public override bool IsExtern { get { throw ExceptionUtilities.Unreachable(); } }
Symbols\SignatureOnlyPropertySymbol.cs (1)
88public override bool IsExtern { get { throw ExceptionUtilities.Unreachable(); } }
Symbols\Source\LambdaSymbol.cs (1)
85public override bool IsExtern
Symbols\Source\LocalFunctionSymbol.cs (1)
401public override bool IsExtern => (_declarationModifiers & DeclarationModifiers.Extern) != 0;
Symbols\Source\SourceEventSymbol.cs (1)
439public sealed override bool IsExtern => PartialImplementationPart is { } implementation ? implementation.IsExtern : HasExternModifier;
Symbols\Source\SourceMemberMethodSymbol.cs (1)
623public override bool IsExtern
Symbols\Source\SourcePropertySymbolBase.cs (1)
579public override bool IsExtern
Symbols\Synthesized\ReadOnlyListType\SynthesizedReadOnlyListProperty.cs (1)
67public override bool IsExtern => false;
Symbols\Synthesized\SynthesizedDelegateSymbol.cs (1)
258public override bool IsExtern
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (1)
156public override bool IsExtern
Symbols\Synthesized\SynthesizedGlobalMethodSymbol.cs (1)
251public override bool IsExtern
Symbols\Synthesized\SynthesizedImplementationMethod.cs (1)
196public sealed override bool IsExtern
Symbols\Synthesized\SynthesizedInstanceConstructor.cs (1)
193public sealed override bool IsExtern
Symbols\Synthesized\SynthesizedInteractiveInitializerMethod.cs (1)
89public override bool IsExtern
Symbols\Synthesized\SynthesizedIntrinsicOperatorSymbol.cs (1)
393public override bool IsExtern
Symbols\Synthesized\SynthesizedPropertySymbol.cs (2)
43public override bool IsExtern => false; 104public override bool IsExtern => false;
Symbols\Synthesized\SynthesizedSealedPropertyAccessor.cs (1)
278public override bool IsExtern
Symbols\Synthesized\SynthesizedStaticConstructor.cs (1)
197public override bool IsExtern
Symbols\Wrapped\WrappedEventSymbol.cs (1)
136public override bool IsExtern
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
175public override bool IsExtern
Symbols\Wrapped\WrappedPropertySymbol.cs (1)
158public override bool IsExtern
464 references to IsExtern
Microsoft.CodeAnalysis.CSharp (24)
Binder\Binder_Statements.cs (1)
3886if (constructor.MethodKind != MethodKind.Constructor || constructor.IsExtern)
Compiler\MethodCompiler.cs (1)
2488if (method.MethodKind == MethodKind.Constructor && !method.IsExtern)
Emitter\Model\MethodSymbolAdapter.cs (1)
635return this.IsExtern || (object)ContainingType != null && ContainingType.TypeKind == TypeKind.Delegate;
FlowAnalysis\AbstractFlowPass_LocalFunctions.cs (1)
66if (localFunc.Symbol.IsExtern)
FlowAnalysis\DefiniteAssignment.cs (1)
2540if (refKind != RefKind.None && ((object)method == null || method.IsExtern) && arg.Type is TypeSymbol type)
Lowering\ClosureConversion\SynthesizedClosureMethod.cs (1)
170if (originalMethod.IsExtern)
Symbols\Extensions\SourceExtensionImplementationMethodSymbol.cs (1)
58public sealed override bool IsExtern => _originalMethod.IsExtern;
Symbols\PublicModel\Symbol.cs (1)
244bool ISymbol.IsExtern => UnderlyingSymbol.IsExtern;
Symbols\ReducedExtensionMethodSymbol.cs (1)
384get { return _reducedFrom.IsExtern; }
Symbols\Source\SourceConstructorSymbol.cs (1)
336public sealed override bool IsExtern => PartialImplementationPart is { } implementation ? implementation.IsExtern : HasExternModifier;
Symbols\Source\SourceEventAccessorSymbol.cs (1)
252public sealed override bool IsExtern => PartialImplementationPart is { } implementation ? implementation.IsExtern : base.IsExtern;
Symbols\Source\SourceEventSymbol.cs (1)
439public sealed override bool IsExtern => PartialImplementationPart is { } implementation ? implementation.IsExtern : HasExternModifier;
Symbols\Source\SourceMethodSymbol.cs (3)
112return HasRequiresUnsafeAttribute || IsExtern || AssociatedSymbol?.CallerUnsafeMode == CallerUnsafeMode.Explicit 128(IsExtern || AssociatedSymbol?.IsExtern == true);
Symbols\Source\SourceMethodSymbolWithAttributes.cs (3)
858if (!implementationPart.IsExtern || (!implementationPart.IsStatic && !implementationPart.IsExtensionBlockMember())) 1518if (!this.IsAbstract && !this.IsExtern) 1528if (IsExtern
Symbols\Source\SourcePropertyAccessorSymbol.cs (1)
861public sealed override bool IsExtern => PartialImplementationPart is { } implementation ? implementation.IsExtern : base.IsExtern;
Symbols\Source\SourcePropertySymbol.cs (1)
846public sealed override bool IsExtern => PartialImplementationPart is { } implementation ? implementation.IsExtern : HasExternModifier;
Symbols\Symbol.cs (1)
1816=> IsExtern;
Symbols\Wrapped\WrappedEventSymbol.cs (1)
140return _underlyingEvent.IsExtern;
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
179return UnderlyingMethod.IsExtern;
Symbols\Wrapped\WrappedPropertySymbol.cs (1)
162return _underlyingProperty.IsExtern;
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (2)
CodeGen\CodeGenLocalFunctionTests.cs (2)
5770Assert.True(localFunction.IsExtern); 5842Assert.True(localFunction.IsExtern);
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (6)
Attributes\AttributeTests_WellKnownAttributes.cs (2)
3693Assert.False(ctorA.IsExtern); 3696Assert.False(methodGoo.IsExtern);
PartialEventsAndConstructorsTests.cs (4)
1135Assert.False(e.IsExtern); 1151Assert.False(m.IsExtern); 1293Assert.False(e.IsExtern); 1309Assert.False(m.IsExtern);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\TopLevelStatementsTests.cs (1)
6286Assert.True(localFunction.IsExtern);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (427)
Symbols\CompilationCreationTests.cs (1)
2378Assert.False(foo2.IsExtern);
Symbols\DefaultInterfaceImplementationTests.cs (316)
208Assert.False(m1.IsExtern); 2699Assert.False(accessor.IsExtern); 2709Assert.False(p1.IsExtern); 6427Assert.False(accessor.IsExtern); 6437Assert.False(e1.IsExtern); 8451Assert.False(m01.IsExtern); 8463Assert.False(m02.IsExtern); 8475Assert.False(m03.IsExtern); 8487Assert.False(m04.IsExtern); 8499Assert.False(m05.IsExtern); 8511Assert.False(m06.IsExtern); 8523Assert.False(m07.IsExtern); 8535Assert.False(m08.IsExtern); 8547Assert.False(m09.IsExtern); 8559Assert.False(m10.IsExtern); 8571Assert.True(m11.IsExtern); 8583Assert.False(m12.IsExtern); 8595Assert.False(m13.IsExtern); 8804Assert.False(m1.IsExtern); 8843Assert.False(m1.IsExtern); 8906Assert.False(m1.IsExtern); 8991Assert.False(m1.IsExtern); 9004Assert.False(m2.IsExtern); 9017Assert.False(m3.IsExtern); 9073Assert.False(m1.IsExtern); 9131Assert.False(m1.IsExtern); 9144Assert.False(m2.IsExtern); 9157Assert.False(m3.IsExtern); 9382Assert.False(m1.IsExtern); 10110Assert.False(m1.IsExtern); 10160Assert.False(m1.IsExtern); 10241Assert.False(m1.IsExtern); 10255Assert.False(m2.IsExtern); 10269Assert.False(m3.IsExtern); 10283Assert.False(m4.IsExtern); 10349Assert.False(m2.IsExtern); 10403Assert.Equal(isSource, m1.IsExtern); 10417Assert.Equal(isSource, m2.IsExtern); 10431Assert.Equal(isSource, m3.IsExtern); 10445Assert.Equal(isSource, m4.IsExtern); 10459Assert.Equal(isSource, m5.IsExtern); 10629Assert.True(m1.IsExtern); 10643Assert.True(m2.IsExtern); 10749Assert.False(m1.IsExtern); 10763Assert.False(m2.IsExtern); 10777Assert.False(m3.IsExtern); 10791Assert.True(m4.IsExtern); 10805Assert.False(m5.IsExtern); 10857Assert.False(m1.IsExtern); 10920Assert.False(m1.IsExtern); 11084Assert.False(m1.IsExtern); 11098Assert.False(m2.IsExtern); 11115Assert.False(m2Impl.IsExtern); 11191Assert.False(m1.IsExtern); 11205Assert.False(m2.IsExtern); 11222Assert.False(m2Impl.IsExtern); 11821Assert.False(m1.IsExtern); 12677Assert.False(m1.IsExtern); 12765Assert.False(m1.IsExtern); 12853Assert.False(m1.IsExtern); 13134Assert.False(p01.IsExtern); 13147Assert.False(accessor.IsExtern); 13160Assert.False(p02.IsExtern); 13169Assert.False(p02get.IsExtern); 13181Assert.False(p03.IsExtern); 13190Assert.False(p03set.IsExtern); 13202Assert.False(p04.IsExtern); 13211Assert.False(p04get.IsExtern); 13223Assert.False(p05.IsExtern); 13232Assert.False(p05set.IsExtern); 13244Assert.False(p06.IsExtern); 13253Assert.False(p06get.IsExtern); 13265Assert.False(p07.IsExtern); 13274Assert.False(p07set.IsExtern); 13286Assert.False(p08.IsExtern); 13295Assert.False(p08get.IsExtern); 13307Assert.False(p09.IsExtern); 13316Assert.False(p09set.IsExtern); 13328Assert.False(p10.IsExtern); 13337Assert.False(p10get.IsExtern); 13348Assert.True(p11.IsExtern); 13361Assert.True(accessor.IsExtern); 13373Assert.False(p12.IsExtern); 13386Assert.False(accessor.IsExtern); 13398Assert.False(p13.IsExtern); 13411Assert.False(accessor.IsExtern); 13423Assert.False(p14.IsExtern); 13436Assert.False(accessor.IsExtern); 13448Assert.False(p15.IsExtern); 13461Assert.False(accessor.IsExtern); 13473Assert.False(p16.IsExtern); 13486Assert.False(accessor.IsExtern); 13499Assert.False(p17.IsExtern); 13508Assert.False(p17get.IsExtern); 13520Assert.False(p18.IsExtern); 13529Assert.False(p18get.IsExtern); 13540Assert.False(p19.IsExtern); 13934Assert.False(p1.IsExtern); 13943Assert.False(p1get.IsExtern); 14026Assert.False(p1.IsExtern); 14041Assert.False(accessor.IsExtern); 14100Assert.False(p1.IsExtern); 14114Assert.False(accessor.IsExtern); 14302Assert.False(p1.IsExtern); 14333Assert.False(accessor.IsExtern); 14413Assert.False(p1.IsExtern); 14423Assert.False(p1get.IsExtern); 14436Assert.False(p2.IsExtern); 14446Assert.False(p2set.IsExtern); 14459Assert.False(p3.IsExtern); 14469Assert.False(p3get.IsExtern); 14651Assert.False(p1.IsExtern); 14682Assert.False(accessor.IsExtern); 14755Assert.False(p1.IsExtern); 14765Assert.False(p1get.IsExtern); 14778Assert.False(p2.IsExtern); 14788Assert.False(p2get.IsExtern); 14800Assert.False(p3.IsExtern); 14814Assert.False(accessor.IsExtern); 14828Assert.False(p4.IsExtern); 14838Assert.False(p4get.IsExtern); 15029Assert.False(p1.IsExtern); 15041Assert.False(m1.IsExtern); 16203Assert.False(p1.IsExtern); 16234Assert.False(accessor.IsExtern); 16333Assert.False(p1.IsExtern); 16344Assert.False(p1get.IsExtern); 16359Assert.False(p2.IsExtern); 16370Assert.False(p2get.IsExtern); 16385Assert.False(p3.IsExtern); 16396Assert.False(p3set.IsExtern); 16609Assert.False(p2.IsExtern); 16642Assert.False(accessor.IsExtern); 16799Assert.Equal(isSource, p1.IsExtern); 16810Assert.Equal(isSource, p1get.IsExtern); 16825Assert.Equal(isSource, p2.IsExtern); 16836Assert.Equal(isSource, p2set.IsExtern); 16853Assert.Equal(isSource, p3.IsExtern); 16868Assert.Equal(isSource, accessor.IsExtern); 16884Assert.Equal(isSource, p4.IsExtern); 16895Assert.Equal(isSource, p4get.IsExtern); 16909Assert.Equal(isSource, p5.IsExtern); 16920Assert.Equal(isSource, p5set.IsExtern); 17042Assert.True(p1.IsExtern); 17053Assert.True(p1get.IsExtern); 17068Assert.True(p2.IsExtern); 17079Assert.True(p2get.IsExtern); 17093Assert.True(p3.IsExtern); 17108Assert.True(accessor.IsExtern); 17122Assert.True(p4.IsExtern); 17137Assert.True(accessor.IsExtern); 17152Assert.True(p5.IsExtern); 17163Assert.True(p5get.IsExtern); 17291Assert.False(p1.IsExtern); 17306Assert.False(accessor.IsExtern); 17322Assert.False(p2.IsExtern); 17333Assert.False(p2get.IsExtern); 17347Assert.True(p3.IsExtern); 17362Assert.True(accessor.IsExtern); 17377Assert.False(p4.IsExtern); 17392Assert.False(accessor.IsExtern); 17407Assert.False(p5.IsExtern); 17418Assert.False(p5get.IsExtern); 17503Assert.False(p1.IsExtern); 17515Assert.False(m1.IsExtern); 17770Assert.False(p1.IsExtern); 17799Assert.False(accessor.IsExtern); 18358Assert.False(p1.IsExtern); 18396Assert.False(m1.IsExtern); 19884Assert.False(p1.IsExtern); 19896Assert.False(m1.IsExtern); 20538Assert.False(p1.IsExtern); 20554Assert.False(accessor.IsExtern); 21611Assert.False(p01.IsExtern); 21624Assert.False(accessor.IsExtern); 21637Assert.False(p02.IsExtern); 21646Assert.False(p02get.IsExtern); 21658Assert.False(p03.IsExtern); 21667Assert.False(p03set.IsExtern); 21679Assert.False(p04.IsExtern); 21688Assert.False(p04get.IsExtern); 21700Assert.False(p05.IsExtern); 21709Assert.False(p05set.IsExtern); 21721Assert.False(p06.IsExtern); 21730Assert.False(p06get.IsExtern); 21742Assert.False(p07.IsExtern); 21751Assert.False(p07set.IsExtern); 21763Assert.False(p08.IsExtern); 21772Assert.False(p08get.IsExtern); 21784Assert.False(p09.IsExtern); 21793Assert.False(p09set.IsExtern); 21805Assert.False(p10.IsExtern); 21814Assert.False(p10get.IsExtern); 21825Assert.True(p11.IsExtern); 21838Assert.True(accessor.IsExtern); 21850Assert.False(p12.IsExtern); 21863Assert.False(accessor.IsExtern); 21875Assert.False(p13.IsExtern); 21888Assert.False(accessor.IsExtern); 21900Assert.False(p14.IsExtern); 21913Assert.False(accessor.IsExtern); 21925Assert.False(p15.IsExtern); 21938Assert.False(accessor.IsExtern); 21950Assert.False(p16.IsExtern); 21963Assert.False(accessor.IsExtern); 21976Assert.False(p17.IsExtern); 21985Assert.False(p17get.IsExtern); 21997Assert.False(p18.IsExtern); 22006Assert.False(p18get.IsExtern); 22017Assert.False(p19.IsExtern); 26856Assert.False(p01.IsExtern); 26869Assert.False(accessor.IsExtern); 26882Assert.False(p02.IsExtern); 26891Assert.False(p02get.IsExtern); 26903Assert.False(p03.IsExtern); 26912Assert.False(p03set.IsExtern); 26924Assert.False(p04.IsExtern); 26933Assert.False(p04get.IsExtern); 26945Assert.False(p05.IsExtern); 26954Assert.False(p05set.IsExtern); 26966Assert.False(p06.IsExtern); 26975Assert.False(p06get.IsExtern); 26987Assert.False(p07.IsExtern); 26996Assert.False(p07set.IsExtern); 27008Assert.False(p08.IsExtern); 27017Assert.False(p08get.IsExtern); 27029Assert.False(p09.IsExtern); 27038Assert.False(p09set.IsExtern); 27050Assert.False(p10.IsExtern); 27059Assert.False(p10get.IsExtern); 27072Assert.True(p11.IsExtern); 27085Assert.True(accessor.IsExtern); 27098Assert.False(p14.IsExtern); 27111Assert.False(accessor.IsExtern); 27654Assert.False(p1.IsExtern); 27669Assert.False(accessor.IsExtern); 27728Assert.False(p1.IsExtern); 27742Assert.False(accessor.IsExtern); 27828Assert.False(p1.IsExtern); 27843Assert.False(accessor.IsExtern); 27996Assert.False(p1.IsExtern); 28010Assert.False(accessor.IsExtern); 28023Assert.False(p2.IsExtern); 28037Assert.False(accessor.IsExtern); 28050Assert.False(p3.IsExtern); 28064Assert.False(accessor.IsExtern); 28157Assert.False(p1.IsExtern); 28172Assert.False(accessor.IsExtern); 28253Assert.False(p1.IsExtern); 28267Assert.False(accessor.IsExtern); 28280Assert.False(p2.IsExtern); 28294Assert.False(accessor.IsExtern); 28307Assert.False(p3.IsExtern); 28321Assert.False(accessor.IsExtern); 28334Assert.False(p4.IsExtern); 28348Assert.False(accessor.IsExtern); 28471Assert.False(p1.IsExtern); 28483Assert.False(m1.IsExtern); 29606Assert.False(p1.IsExtern); 29621Assert.False(accessor.IsExtern); 29721Assert.False(p1.IsExtern); 29736Assert.False(accessor.IsExtern); 29751Assert.False(p2.IsExtern); 29766Assert.False(accessor.IsExtern); 29781Assert.False(p3.IsExtern); 29796Assert.False(accessor.IsExtern); 30022Assert.False(p2.IsExtern); 30055Assert.False(accessor.IsExtern); 30134Assert.Equal(isSource, p1.IsExtern); 30149Assert.Equal(isSource, accessor.IsExtern); 30164Assert.Equal(isSource, p2.IsExtern); 30179Assert.Equal(isSource, accessor.IsExtern); 30194Assert.Equal(isSource, p3.IsExtern); 30209Assert.Equal(isSource, accessor.IsExtern); 30223Assert.Equal(isSource, p4.IsExtern); 30238Assert.Equal(isSource, accessor.IsExtern); 30252Assert.Equal(isSource, p5.IsExtern); 30267Assert.Equal(isSource, accessor.IsExtern); 30464Assert.True(p1.IsExtern); 30479Assert.True(accessor.IsExtern); 30494Assert.True(p2.IsExtern); 30509Assert.True(accessor.IsExtern); 30524Assert.True(p3.IsExtern); 30539Assert.True(accessor.IsExtern); 30553Assert.True(p4.IsExtern); 30568Assert.True(accessor.IsExtern); 30685Assert.False(p1.IsExtern); 30700Assert.False(accessor.IsExtern); 30715Assert.False(p2.IsExtern); 30730Assert.False(accessor.IsExtern); 30745Assert.True(p3.IsExtern); 30760Assert.True(accessor.IsExtern); 30775Assert.False(p4.IsExtern); 30790Assert.False(accessor.IsExtern); 30804Assert.False(p5.IsExtern); 30819Assert.False(accessor.IsExtern); 30908Assert.False(p1.IsExtern); 30920Assert.False(m1.IsExtern); 31247Assert.False(p1.IsExtern); 31262Assert.False(accessor.IsExtern); 33080Assert.False(m1.IsExtern); 33917Assert.NotEqual(m1.OriginalDefinition is PEMethodSymbol, m1.IsExtern); 34033Assert.False(m1.IsExtern); 37136Assert.False(m1.IsExtern); 38028Assert.NotEqual(m1.OriginalDefinition is PEPropertySymbol, m1.IsExtern); 40169Assert.False(m1.IsExtern); 44668Assert.False(cctor.IsExtern); 44766Assert.True(cctor.IsExtern); 51121Assert.False(m.IsExtern); 52044Assert.True(i2m1.IsExtern); 52167Assert.False(i2m1.IsExtern); 52563Assert.False(reabstracting.IsExtern); 53745Assert.True(i2p1.IsExtern); 53760Assert.True(i2p1Get.IsExtern); 53777Assert.True(i2p1Set.IsExtern); 57527Assert.False(reabstracting.IsExtern);
Symbols\ExtendedPartialMethodsTests.cs (6)
1159Assert.True(method.IsExtern); 1163Assert.True(implementation.IsExtern); 1236Assert.Equal(isSource, method.IsExtern); 1240Assert.Equal(isSource, implementation.IsExtern); 2109Assert.False(m.IsExtern); 2252Assert.False(m.IsExtern);
Symbols\Metadata\PE\LoadingEvents.cs (2)
113Assert.Equal(@event.IsExtern, @accessor.IsExtern);
Symbols\Metadata\PE\LoadingIndexers.cs (2)
1101Assert.Equal(property.IsExtern, @accessor.IsExtern);
Symbols\Metadata\PE\LoadingMethods.cs (2)
165Assert.False(basicC1_M12.IsExtern); 169Assert.True(loadLibrary.IsExtern);
Symbols\PartialPropertiesTests.cs (4)
2703Assert.False(p.IsExtern); 2719Assert.False(m.IsExtern); 2843Assert.False(p.IsExtern); 2859Assert.False(m.IsExtern);
Symbols\Source\ModifierTests.cs (2)
70Assert.True(m7.IsExtern); 126Assert.True(m7.IsExtern);
Symbols\StaticAbstractMembersInInterfacesTests.cs (92)
157Assert.False(m01.IsExtern); 169Assert.False(m02.IsExtern); 181Assert.False(m03.IsExtern); 193Assert.False(m04.IsExtern); 205Assert.False(m05.IsExtern); 217Assert.False(m06.IsExtern); 229Assert.False(m07.IsExtern); 241Assert.False(m08.IsExtern); 253Assert.False(m09.IsExtern); 265Assert.False(m10.IsExtern); 868Assert.False(m01.IsExtern); 978Assert.False(m01.IsExtern); 1008Assert.False(m01.IsExtern); 1050Assert.False(m01.IsExtern); 1065Assert.False(m01.IsExtern); 1143Assert.False(m01.IsExtern); 1180Assert.False(m01.IsExtern); 1217Assert.False(m01.IsExtern); 1264Assert.False(m01.IsExtern); 1279Assert.False(m01.IsExtern); 1315Assert.False(m01.IsExtern); 1330Assert.False(m01.IsExtern); 1370Assert.False(m01.IsExtern); 1385Assert.False(m01.IsExtern); 1428Assert.False(m01.IsExtern); 1443Assert.False(m01.IsExtern); 1483Assert.False(m01.IsExtern); 1498Assert.False(m01.IsExtern); 1541Assert.False(m01.IsExtern); 1556Assert.False(m01.IsExtern); 1722Assert.False(m01.IsExtern); 1732Assert.False(m02.IsExtern); 1742Assert.False(m03.IsExtern); 1752Assert.False(m04.IsExtern); 1762Assert.False(m05.IsExtern); 1772Assert.False(m06.IsExtern); 1782Assert.False(m07.IsExtern); 1792Assert.False(m08.IsExtern); 1802Assert.False(m09.IsExtern); 1812Assert.False(m10.IsExtern); 1824Assert.False(m01.IsExtern); 1836Assert.False(m02.IsExtern); 1848Assert.False(m03.IsExtern); 1860Assert.False(m04.IsExtern); 1872Assert.False(m05.IsExtern); 1884Assert.False(m06.IsExtern); 1896Assert.False(m07.IsExtern); 1908Assert.False(m08.IsExtern); 1920Assert.False(m09.IsExtern); 1932Assert.False(m10.IsExtern); 2528Assert.False(m01.IsExtern); 2538Assert.False(m02.IsExtern); 2548Assert.False(m03.IsExtern); 2558Assert.False(m04.IsExtern); 2568Assert.False(m05.IsExtern); 2578Assert.False(m06.IsExtern); 2588Assert.False(m07.IsExtern); 2598Assert.False(m08.IsExtern); 2608Assert.False(m09.IsExtern); 2618Assert.False(m10.IsExtern); 2632Assert.False(m01.IsExtern); 2644Assert.False(m02.IsExtern); 2656Assert.False(m03.IsExtern); 2668Assert.False(m04.IsExtern); 2680Assert.False(m05.IsExtern); 2692Assert.False(m06.IsExtern); 2704Assert.False(m07.IsExtern); 2716Assert.False(m08.IsExtern); 2728Assert.False(m09.IsExtern); 2740Assert.False(m10.IsExtern); 3360Assert.False(m01.IsExtern); 3372Assert.False(m02.IsExtern); 3384Assert.False(m03.IsExtern); 3396Assert.False(m04.IsExtern); 3408Assert.False(m05.IsExtern); 3420Assert.False(m06.IsExtern); 3432Assert.False(m07.IsExtern); 3444Assert.False(m08.IsExtern); 3456Assert.False(m09.IsExtern); 3468Assert.False(m10.IsExtern); 4127Assert.False(m01.IsExtern); 4140Assert.False(m01.IsExtern); 4153Assert.False(m01.IsExtern); 4373Assert.False(m01.IsExtern); 4386Assert.False(m01.IsExtern); 4399Assert.False(m01.IsExtern); 4559Assert.False(m01.IsExtern); 4572Assert.False(m01.IsExtern); 4585Assert.False(m01.IsExtern); 4799Assert.False(m01.IsExtern); 4812Assert.False(m01.IsExtern); 4825Assert.False(m01.IsExtern);
Microsoft.CodeAnalysis.CSharp.Test.Utilities (4)
Extensions.cs (2)
631Assert.Equal(propertyOrEvent.IsExtern, accessor.IsExtern);
FunctionPointerUtilities.cs (2)
73Assert.False(symbol.IsExtern); 76Assert.False(symbol.IsExtern);