Home
last modified time | relevance | path

Searched refs:PushOnScopeChains (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DSema.cpp263 PushOnScopeChains(Context.buildImplicitTypedef(T, Name), TUScope); in addImplicitTypedef()
290 PushOnScopeChains(Context.getInt128Decl(), TUScope); in Initialize()
294 PushOnScopeChains(Context.getUInt128Decl(), TUScope); in Initialize()
304 PushOnScopeChains(Context.getObjCSelDecl(), TUScope); in Initialize()
310 PushOnScopeChains(Context.getObjCIdDecl(), TUScope); in Initialize()
315 PushOnScopeChains(Context.getObjCClassDecl(), TUScope); in Initialize()
320 PushOnScopeChains(Context.getObjCProtocolDecl(), TUScope); in Initialize()
326 PushOnScopeChains(Context.getCFConstantStringDecl(), TUScope); in Initialize()
332 PushOnScopeChains(Context.buildImplicitRecord("type_info", TTK_Class), in Initialize()
449 PushOnScopeChains(Context.getBuiltinMSVaListDecl(), TUScope); in Initialize()
[all …]
H A DSemaDeclObjC.cpp391 PushOnScopeChains(MDecl->getCmdDecl(), FnBodyScope); in ActOnStartOfObjCMethodDef()
406 PushOnScopeChains(Param, FnBodyScope); in ActOnStartOfObjCMethodDef()
1074 PushOnScopeChains(IDecl, TUScope); in ActOnStartClassInterface()
1180 PushOnScopeChains(AliasDecl, TUScope); in ActOnCompatibilityAlias()
1239 PushOnScopeChains(PDecl, TUScope); in ActOnStartProtocolInterface()
1256 PushOnScopeChains(PDecl, TUScope); in ActOnStartProtocolInterface()
1789 PushOnScopeChains(PDecl, TUScope); in ActOnForwardProtocolDeclaration()
2052 PushOnScopeChains(IDecl, TUScope); in ActOnStartClassImplementation()
2082 PushOnScopeChains(IMPDecl, TUScope); in ActOnStartClassImplementation()
3142 PushOnScopeChains(IDecl, TUScope); in ActOnForwardClassDeclaration()
[all …]
H A DSemaDeclCXX.cpp877 PushOnScopeChains(BD, S, true); in ActOnDecompositionDeclarator()
11205 PushOnScopeChains(Namespc, DeclRegionScope); in ActOnStartNamespaceDef()
12101 PushOnScopeChains(Shadow, S); in BuildUsingShadowDecl()
13100 PushOnScopeChains(NewND, S); in ActOnAliasDeclaration()
13178 PushOnScopeChains(AliasDecl, S); in ActOnNamespaceAliasDef()
13468 PushOnScopeChains(DefaultCon, S, false); in DeclareImplicitDefaultConstructor()
13755 PushOnScopeChains(Destructor, S, false); in DeclareImplicitDestructor()
14398 PushOnScopeChains(CopyAssignment, S, false); in DeclareImplicitCopyAssignment()
14732 PushOnScopeChains(MoveAssignment, S, false); in DeclareImplicitMoveAssignment()
16540 PushOnScopeChains(ExDecl, S); in ActOnExceptionDeclarator()
[all …]
H A DSemaLambda.cpp565 PushOnScopeChains(Param, CurScope); in addLambdaParameters()
1131 PushOnScopeChains(Var, CurScope, false); in ActOnStartOfLambdaDefinition()
H A DSemaDecl.cpp1509 void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) { in PushOnScopeChains() function in Sema
2397 PushOnScopeChains(New, TUScope); in LazilyCreateBuiltin()
5327 SemaRef.PushOnScopeChains(IndirectField, S); in InjectAnonymousStructOrUnionMembers()
6351 PushOnScopeChains(New, S); in HandleDeclarator()
14828 PushOnScopeChains(EI, FnBodyScope, /*AddToContext=*/false); in ActOnStartOfFunctionDef()
14841 PushOnScopeChains(Param, FnBodyScope); in ActOnStartOfFunctionDef()
15452 PushOnScopeChains(ExternCPrev, BlockScope, /*AddToContext*/false); in ImplicitlyDefineFunction()
17062 PushOnScopeChains(New, S, true); in ActOnTag()
17167 PushOnScopeChains(InjectedClassName, S); in ActOnStartCXXMemberDeclarations()
17452 PushOnScopeChains(NewFD, S); in HandleField()
[all …]
H A DSemaLookup.cpp4411 PushOnScopeChains(Res, S, true); in LookupOrCreateLabel()
4426 PushOnScopeChains(Res, S, true); in LookupOrCreateLabel()
H A DSemaTemplate.cpp2047 PushOnScopeChains(NewTemplate, Outer); in CheckClassTemplate()
2061 PushOnScopeChains(NewTemplate, EnclosingScope, in CheckClassTemplate()
8720 PushOnScopeChains(NewDecl, S); in ActOnConceptDefinition()
H A DSemaOpenMP.cpp21906 PushOnScopeChains(OmpInParm, S); in ActOnOpenMPDeclareReductionCombinerStart()
21907 PushOnScopeChains(OmpOutParm, S); in ActOnOpenMPDeclareReductionCombinerStart()
21966 PushOnScopeChains(OmpPrivParm, S); in ActOnOpenMPDeclareReductionInitializerStart()
21967 PushOnScopeChains(OmpOrigParm, S); in ActOnOpenMPDeclareReductionInitializerStart()
22006 PushOnScopeChains(cast<OMPDeclareReductionDecl>(D), S, in ActOnOpenMPDeclareReductionDirectiveEnd()
22117 PushOnScopeChains(DMD, S); in ActOnOpenMPDeclareMapperDirective()
22143 PushOnScopeChains(VD, S, /*AddToContext=*/false); in ActOnOpenMPDeclareMapperDirectiveVarDecl()
H A DSemaExprCXX.cpp9091 PushOnScopeChains(Param, BodyScope); in ActOnStartRequiresExpr()
H A DSemaExpr.cpp5413 PushOnScopeChains(VD, S); in ActOnOMPIteratorExpr()
16302 PushOnScopeChains(AI, CurBlock->TheScope); in ActOnBlockArguments()
H A DSemaDeclAttr.cpp9300 PushOnScopeChains(NewD, S); in DeclApplyPragmaWeak()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h3467 void PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext = true);