/external/llvm-project/clang/lib/Parse/ |
D | ParseObjc.cpp | 53 Actions.CodeCompleteObjCAtDirective(getCurScope()); in ParseObjCAtDirectives() 176 Actions.ActOnAtEnd(getCurScope(), AtLoc); in CheckNestedObjCContexts() 222 Actions.CodeCompleteObjCInterfaceDecl(getCurScope()); in ParseObjCAtInterfaceDeclaration() 242 ObjCTypeParamListScope typeParamScope(Actions, getCurScope()); in ParseObjCAtInterfaceDeclaration() 256 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc); in ParseObjCAtInterfaceDeclaration() 311 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc); in ParseObjCAtInterfaceDeclaration() 357 getCurScope(), AtLoc, nameId, nameLoc, typeParameterList, superClassId, in ParseObjCAtInterfaceDeclaration() 437 getCurScope(), ObjCTypeParamVariance::Invariant, SourceLocation(), in parseObjCTypeParamListOrProtocolRefs() 515 getCurScope(), variance, varianceLoc, typeParams.size(), paramName, in parseObjCTypeParamListOrProtocolRefs() 556 getCurScope(), in parseObjCTypeParamListOrProtocolRefs() [all …]
|
D | ParseExpr.cpp | 153 LHS = Actions.ActOnUnaryOp(getCurScope(), ExtLoc, tok::kw___extension__, in ParseExpressionWithLeadingExtension() 162 Actions.CodeCompleteExpression(getCurScope(), in ParseAssignmentExpression() 326 ExprResult Op = Actions.ActOnBinOp(getCurScope(), LogicalAndLoc, in ParseConstraintLogicalAndExpression() 361 ExprResult Op = Actions.ActOnBinOp(getCurScope(), LogicalOrLoc, in ParseConstraintLogicalOrExpression() 629 Actions.ActOnBinOp(getCurScope(), OpToken.getLocation(), in ParseRHSOfBinaryExpression() 991 Res = Actions.ActOnNumericConstant(Tok, /*UDLScope*/getCurScope()); in ParseCastExpression() 1014 Res = Actions.ActOnNameClassifiedAsOverloadSet(getCurScope(), Res.get()); in ParseCastExpression() 1153 (Actions.getTypeName(II, ILoc, getCurScope()) || in ParseCastExpression() 1155 (&II == Ident_super && getCurScope()->isInObjcMethodScope()))) { in ParseCastExpression() 1160 getCurScope(), II, ILoc, ExprStatementTokLoc == ILoc); in ParseCastExpression() [all …]
|
D | ParseExprCXX.cpp | 96 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false, in CheckForTemplateAndDigraph() 240 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext, in ParseOptionalCXXScopeSpecifier() 321 getCurScope(), SS, TemplateKWLoc, TemplateName, ObjectType, in ParseOptionalCXXScopeSpecifier() 359 Actions.ActOnCXXNestedNameSpecifier(getCurScope(), in ParseOptionalCXXScopeSpecifier() 396 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, IdInfo, in ParseOptionalCXXScopeSpecifier() 456 getCurScope(), IdInfo, EnteringContext, SS, false, in ParseOptionalCXXScopeSpecifier() 483 if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS, in ParseOptionalCXXScopeSpecifier() 533 getCurScope(), SS, TemplateNameLoc, TemplateName, ObjectType, in ParseOptionalCXXScopeSpecifier() 567 E = Actions.ActOnNameClassifiedAsNonType(getCurScope(), SS, ND, Loc, Tok); in tryParseCXXIdExpression() 611 getCurScope(), SS, TemplateKWLoc, Name, Tok.is(tok::l_paren), in tryParseCXXIdExpression() [all …]
|
D | Parser.cpp | 406 N->Init(getCurScope(), ScopeFlags); in EnterScope() 409 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags); in EnterScope() 415 assert(getCurScope() && "Scope imbalance!"); in ExitScope() 419 Actions.ActOnPopScope(Tok.getLocation(), getCurScope()); in ExitScope() 421 Scope *OldScope = getCurScope(); in ExitScope() 434 : CurScope(ManageFlags ? Self->getCurScope() : nullptr) { in ParseScopeFlags() 455 delete getCurScope(); in ~Parser() 475 assert(getCurScope() == nullptr && "A scope is already active?"); in Initialize() 477 Actions.ActOnTranslationUnitScope(getCurScope()); in Initialize() 820 Actions.ActOnEmptyDeclaration(getCurScope(), attrs, Tok.getLocation()); in ParseExternalDeclaration() [all …]
|
D | ParseDeclCXX.cpp | 66 Actions.CodeCompleteNamespaceDecl(getCurScope()); in ParseNamespace() 146 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() || in ParseNamespace() 147 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() || in ParseNamespace() 148 getCurScope()->getFnParent()) { in ParseNamespace() 216 getCurScope(), InlineLoc, NamespaceLoc, IdentLoc, Ident, in ParseNamespace() 262 getCurScope(), InnerNSs[index].InlineLoc, InnerNSs[index].NamespaceLoc, in ParseInnerNamespace() 286 Actions.CodeCompleteNamespaceAliasDecl(getCurScope()); in ParseNamespaceAlias() 324 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, in ParseNamespaceAlias() 344 getCurScope(), DS.getSourceRange().getBegin(), Lang.get(), in ParseLinkage() 359 getCurScope(), LinkageSpec, SourceLocation()) in ParseLinkage() [all …]
|
D | ParseStmt.cpp | 174 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement); in ParseStatementOrDeclarationAfterAttributes() 457 if (Tok.is(tok::colon) && getCurScope()->isSwitchScope() && in ParseExprStatement() 540 ParseScopeFlags FilterScope(this, getCurScope()->getFlags() | in ParseSEHExceptBlock() 600 return Actions.ActOnSEHLeaveStmt(LeaveLoc, getCurScope()); in ParseSEHLeaveStatement() 718 Actions.CodeCompleteCase(getCurScope()); in ParseCaseStatement() 870 SubStmt.get(), getCurScope()); in ParseDefaultStatement() 1075 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseCompoundStatementBody() 1197 Cond = Actions.ActOnCondition(getCurScope(), Loc, CondExpr.get(), CK); in ParseParenExprOrCondition() 1464 Actions.CodeCompleteAfterIf(getCurScope(), IsBracedThen); in ParseIfStatement() 1562 getCurScope()->AddFlags(Scope::BreakScope); in ParseSwitchStatement() [all …]
|
D | ParseTemplate.cpp | 31 return Actions.getCurScope(); in ReenterTemplateScopes() 230 getCurScope(), AS, DS, in ParseSingleDeclarationAfterTemplate() 424 return Actions.ActOnConceptDefinition(getCurScope(), in ParseConceptDefinition() 652 getCurScope(), D, Depth, Position, /*EqualLoc=*/SourceLocation(), in ParseTemplateParameter() 719 auto TNK = Actions.isTemplateName(getCurScope(), SS, in TryAnnotateTypeConstraint() 827 NamedDecl *NewDecl = Actions.ActOnTypeParameter(getCurScope(), in ParseTypeParameter() 947 return Actions.ActOnTemplateTemplateParameter(getCurScope(), TemplateLoc, in ParseTemplateTemplateParameter() 1002 return Actions.ActOnNonTypeTemplateParameter(getCurScope(), ParamDecl, in ParseNonTypeTemplateParameter() 1329 getCurScope(), SS, TemplateKWLoc, Template, in AnnotateTemplateIdToken() 1404 getCurScope(), SS, TemplateId->TemplateKWLoc, in AnnotateTemplateIdTokenAsType() [all …]
|
D | ParseDecl.cpp | 69 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo); in ParseTypeName() 481 Actions.ActOnReenterCXXMethodParameter(getCurScope(), Param); in ParseGNUAttributeArgs() 1740 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none, in ParseSimpleDeclaration() 2024 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D); in ParseDeclGroup() 2034 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl); in ParseDeclGroup() 2110 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseDeclGroup() 2177 S = P.getCurScope(); in ParseDeclarationAfterDeclaratorAndAttributes() 2187 S = P.getCurScope(); in ParseDeclarationAfterDeclaratorAndAttributes() 2216 ThisDecl = Actions.ActOnDeclarator(getCurScope(), D); in ParseDeclarationAfterDeclaratorAndAttributes() 2221 ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(), in ParseDeclarationAfterDeclaratorAndAttributes() [all …]
|
D | ParseCXXInlineMethods.cpp | 39 FnD = Actions.ActOnFriendFunctionDecl(getCurScope(), D, in ParseCXXInlineMethodDef() 42 FnD = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, D, in ParseCXXInlineMethodDef() 46 Actions.ProcessDeclAttributeList(getCurScope(), FnD, AccessAttrs); in ParseCXXInlineMethodDef() 305 P.Actions.ActOnStartDelayedMemberDeclarations(P.getCurScope(), in ReenterClassScopeRAII() 312 P.Actions.ActOnFinishDelayedMemberDeclarations(P.getCurScope(), in ~ReenterClassScopeRAII() 333 Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(), LM.Method); in ParseLexedMethodDeclaration() 344 Actions.ActOnDelayedCXXMethodParameter(getCurScope(), Param); in ParseLexedMethodDeclaration() 503 Actions.ActOnFinishDelayedCXXMethodDeclaration(getCurScope(), LM.Method); in ParseLexedMethodDeclaration() 544 Actions.ActOnStartOfFunctionDef(getCurScope(), LM.D); in ParseLexedMethodDef() 754 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs); in ParseLexedAttribute()
|
D | ParseOpenMP.cpp | 81 P->getCurScope(), SS, NameInfo, Kind); in operator ()() 344 getCurScope(), Actions.getCurLexicalContext(), Name, ReductionTypes, AS); in ParseOpenMPDeclareReductionDirective() 355 Actions.ActOnOpenMPDeclareReductionCombinerStart(getCurScope(), D); in ParseOpenMPDeclareReductionDirective() 391 Actions.ActOnOpenMPDeclareReductionInitializerStart(getCurScope(), in ParseOpenMPDeclareReductionDirective() 424 return Actions.ActOnOpenMPDeclareReductionDirectiveEnd(getCurScope(), DRD, in ParseOpenMPDeclareReductionDirective() 435 Actions.CodeCompleteInitializer(getCurScope(), OmpPrivParm); in ParseOpenMPReductionInitializerForDecl() 462 getCurScope(), OmpPrivParm->getType()->getCanonicalTypeInternal(), in ParseOpenMPReductionInitializerForDecl() 575 Actions.StartOpenMPDSABlock(OMPD_declare_mapper, DirName, getCurScope(), Loc); in ParseOpenMPDeclareMapperDirective() 579 getCurScope(), MapperType, Range.getBegin(), VName); in ParseOpenMPDeclareMapperDirective() 609 getCurScope(), Actions.getCurLexicalContext(), MapperId, MapperType, in ParseOpenMPDeclareMapperDirective() [all …]
|
D | ParseInit.cpp | 253 getCurScope()->isInObjcMethodScope()) { in ParseInitializerWithPotentialDesignator() 290 getCurScope(), II, IILoc, II == Ident_super, in ParseInitializerWithPotentialDesignator()
|
/external/clang/lib/Parse/ |
D | ParseObjc.cpp | 52 Actions.CodeCompleteObjCAtDirective(getCurScope()); in ParseObjCAtDirectives() 178 Actions.ActOnAtEnd(getCurScope(), AtLoc); in CheckNestedObjCContexts() 225 Actions.CodeCompleteObjCInterfaceDecl(getCurScope()); in ParseObjCAtInterfaceDeclaration() 248 ObjCTypeParamListScope typeParamScope(Actions, getCurScope()); in ParseObjCAtInterfaceDeclaration() 262 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc); in ParseObjCAtInterfaceDeclaration() 327 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc); in ParseObjCAtInterfaceDeclaration() 373 Actions.ActOnStartClassInterface(getCurScope(), AtLoc, nameId, nameLoc, in ParseObjCAtInterfaceDeclaration() 462 getCurScope(), ObjCTypeParamVariance::Invariant, SourceLocation(), in parseObjCTypeParamListOrProtocolRefs() 540 getCurScope(), variance, varianceLoc, typeParams.size(), paramName, in parseObjCTypeParamListOrProtocolRefs() 582 getCurScope(), in parseObjCTypeParamListOrProtocolRefs() [all …]
|
D | ParseExpr.cpp | 150 LHS = Actions.ActOnUnaryOp(getCurScope(), ExtLoc, tok::kw___extension__, in ParseExpressionWithLeadingExtension() 159 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Expression); in ParseAssignmentExpression() 347 Actions.CodeCompleteAssignmentRHS(getCurScope(), LHS.get()); in ParseRHSOfBinaryExpression() 447 LHS = Actions.ActOnBinOp(getCurScope(), OpToken.getLocation(), in ParseRHSOfBinaryExpression() 746 Res = Actions.ActOnNumericConstant(Tok, /*UDLScope*/getCurScope()); in ParseCastExpression() 884 (Actions.getTypeName(II, ILoc, getCurScope()) || in ParseCastExpression() 886 (&II == Ident_super && getCurScope()->isInObjcMethodScope()))) { in ParseCastExpression() 908 getCurScope()->isInObjcMethodScope() && in ParseCastExpression() 928 if (ParsedType Typ = Actions.getTypeName(II, ILoc, getCurScope())) in ParseCastExpression() 940 TypeResult Ty = Actions.ActOnTypeName(getCurScope(), in ParseCastExpression() [all …]
|
D | ParseExprCXX.cpp | 94 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false, in CheckForTemplateAndDigraph() 291 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext); in ParseOptionalCXXScopeSpecifier() 358 = Actions.ActOnDependentTemplateName(getCurScope(), in ParseOptionalCXXScopeSpecifier() 399 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), in ParseOptionalCXXScopeSpecifier() 434 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II, in ParseOptionalCXXScopeSpecifier() 463 getCurScope(), SS, Tok.getLocation(), II, ObjectType)) { in ParseOptionalCXXScopeSpecifier() 499 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), II, IdLoc, CCLoc, in ParseOptionalCXXScopeSpecifier() 526 if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS, in ParseOptionalCXXScopeSpecifier() 561 = Actions.ActOnDependentTemplateName(getCurScope(), in ParseOptionalCXXScopeSpecifier() 608 return Actions.ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Name, in tryParseCXXIdExpression() [all …]
|
D | Parser.cpp | 376 N->Init(getCurScope(), ScopeFlags); in EnterScope() 379 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags); in EnterScope() 385 assert(getCurScope() && "Scope imbalance!"); in ExitScope() 389 Actions.ActOnPopScope(Tok.getLocation(), getCurScope()); in ExitScope() 391 Scope *OldScope = getCurScope(); in ExitScope() 404 : CurScope(ManageFlags ? Self->getCurScope() : nullptr) { in ParseScopeFlags() 425 delete getCurScope(); in ~Parser() 454 assert(getCurScope() == nullptr && "A scope is already active?"); in Initialize() 456 Actions.ActOnTranslationUnitScope(getCurScope()); in Initialize() 680 SingleDecl = Actions.ActOnEmptyDeclaration(getCurScope(), in ParseExternalDeclaration() [all …]
|
D | ParseCXXInlineMethods.cpp | 42 FnD = Actions.ActOnFriendFunctionDecl(getCurScope(), D, in ParseCXXInlineMethodDef() 45 FnD = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, D, in ParseCXXInlineMethodDef() 49 Actions.ProcessDeclAttributeList(getCurScope(), FnD, AccessAttrs); in ParseCXXInlineMethodDef() 139 LM->TemplateScope = getCurScope()->isTemplateParamScope(); in ParseCXXInlineMethodDef() 280 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate); in ParseLexedMethodDeclarations() 290 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(), in ParseLexedMethodDeclarations() 298 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(), in ParseLexedMethodDeclarations() 307 Actions.ActOnReenterTemplateScope(getCurScope(), LM.Method); in ParseLexedMethodDeclaration() 311 Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(), LM.Method); in ParseLexedMethodDeclaration() 321 Actions.ActOnDelayedCXXMethodParameter(getCurScope(), Param); in ParseLexedMethodDeclaration() [all …]
|
D | ParseDeclCXX.cpp | 66 Actions.CodeCompleteNamespaceDecl(getCurScope()); in ParseNamespace() 132 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() || in ParseNamespace() 133 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() || in ParseNamespace() 134 getCurScope()->getFnParent()) { in ParseNamespace() 186 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc, in ParseNamespace() 237 Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(), in ParseInnerNamespace() 263 Actions.CodeCompleteNamespaceAliasDecl(getCurScope()); in ParseNamespaceAlias() 288 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, in ParseNamespaceAlias() 308 getCurScope(), DS.getSourceRange().getBegin(), Lang.get(), in ParseLinkage() 324 getCurScope(), LinkageSpec, SourceLocation()) in ParseLinkage() [all …]
|
D | ParseStmt.cpp | 176 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement); in ParseStatementOrDeclarationAfterAttributes() 413 if (Tok.is(tok::colon) && getCurScope()->isSwitchScope() && in ParseExprStatement() 495 ParseScopeFlags FilterScope(this, getCurScope()->getFlags() | in ParseSEHExceptBlock() 555 return Actions.ActOnSEHLeaveStmt(LeaveLoc, getCurScope()); in ParseSEHLeaveStatement() 666 Actions.CodeCompleteCase(getCurScope()); in ParseCaseStatement() 828 SubStmt.get(), getCurScope()); in ParseDefaultStatement() 970 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseCompoundStatementBody() 1072 Cond = Actions.ActOnCondition(getCurScope(), Loc, CondExpr.get(), CK); in ParseParenExprOrCondition() 1222 Actions.CodeCompleteAfterIf(getCurScope()); in ParseIfStatement() 1318 getCurScope()->AddFlags(Scope::BreakScope); in ParseSwitchStatement() [all …]
|
D | ParseDecl.cpp | 70 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo); in ParseTypeName() 378 Actions.ActOnReenterCXXMethodParameter(getCurScope(), Param); in ParseGNUAttributeArgs() 1165 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate); in ParseLexedAttributes() 1175 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(), in ParseLexedAttributes() 1184 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(), in ParseLexedAttributes() 1279 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs); in ParseLexedAttribute() 1565 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none, in ParseSimpleDeclaration() 1835 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D); in ParseDeclGroup() 1840 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl); in ParseDeclGroup() 1910 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseDeclGroup() [all …]
|
D | ParseTemplate.cpp | 149 unsigned NewFlags = getCurScope()->getFlags() & ~Scope::TemplateParamScope; in ParseTemplateDeclarationOrSpecialization() 216 getCurScope(), AS, DS, in ParseSingleDeclarationAfterTemplate() 548 return Actions.ActOnTypeParameter(getCurScope(), TypenameKeyword, EllipsisLoc, in ParseTypeParameter() 657 return Actions.ActOnTemplateTemplateParameter(getCurScope(), TemplateLoc, in ParseTemplateTemplateParameter() 711 return Actions.ActOnNonTypeTemplateParameter(getCurScope(), ParamDecl, in ParseNonTypeTemplateParameter() 1143 getCurScope(), SS, TemplateKWLoc, Name, in ParseTemplateTemplateArgument() 1160 getCurScope(), SS, in ParseTemplateTemplateArgument() 1361 Actions.ActOnReenterTemplateScope(getCurScope(), cast<Decl>(*II)); in ParseLateTemplatedFuncDef() 1365 Actions.PushDeclContext(Actions.getCurScope(), *II); in ParseLateTemplatedFuncDef() 1389 Actions.ActOnStartOfFunctionDef(getCurScope(), FunD); in ParseLateTemplatedFuncDef()
|
D | ParseOpenMP.cpp | 54 P->getActions().ActOnOpenMPIdExpression(P->getCurScope(), SS, NameInfo); in operator ()() 283 getCurScope(), Actions.getCurLexicalContext(), Name, ReductionTypes, AS); in ParseOpenMPDeclareReductionDirective() 293 Actions.ActOnOpenMPDeclareReductionCombinerStart(getCurScope(), D); in ParseOpenMPDeclareReductionDirective() 328 Actions.ActOnOpenMPDeclareReductionInitializerStart(getCurScope(), D); in ParseOpenMPDeclareReductionDirective() 353 return Actions.ActOnOpenMPDeclareReductionDirectiveEnd(getCurScope(), DRD, in ParseOpenMPDeclareReductionDirective() 390 Actions.ActOnReenterTemplateScope(Actions.getCurScope(), D); in FNContextRAII() 397 Actions.ActOnReenterFunctionContext(Actions.getCurScope(), D); in FNContextRAII() 648 Actions.ActOnOpenMPDeclareTargetName(getCurScope(), SS, NameInfo, MT, in ParseOpenMPDeclarativeDirectiveWithExtDecl() 912 Actions.StartOpenMPDSABlock(DKind, DirName, Actions.getCurScope(), Loc); in ParseOpenMPDeclarativeOrExecutableDirective() 956 Actions.ActOnOpenMPRegionStart(DKind, getCurScope()); in ParseOpenMPDeclarativeOrExecutableDirective()
|
D | ParseInit.cpp | 217 getCurScope()->isInObjcMethodScope()) { in ParseInitializerWithPotentialDesignator() 254 getCurScope(), II, IILoc, II == Ident_super, in ParseInitializerWithPotentialDesignator()
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | ScopedHashTable.h | 209 ScopeTy *getCurScope() { return CurScope; } in getCurScope() function 210 const ScopeTy *getCurScope() const { return CurScope; } in getCurScope() function
|
/external/llvm/include/llvm/ADT/ |
D | ScopedHashTable.h | 202 ScopeTy *getCurScope() { return CurScope; } in getCurScope() function 203 const ScopeTy *getCurScope() const { return CurScope; } in getCurScope() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | ScopedHashTable.h | 209 ScopeTy *getCurScope() { return CurScope; } in getCurScope() function 210 const ScopeTy *getCurScope() const { return CurScope; } in getCurScope() function
|