/external/clang/lib/Parse/ |
ParseExpr.cpp | 149 LHS = Actions.ActOnUnaryOp(getCurScope(), ExtLoc, tok::kw___extension__, 158 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Expression); 308 Actions.CodeCompleteAssignmentRHS(getCurScope(), LHS.get()); 396 LHS = Actions.ActOnBinOp(getCurScope(), OpToken.getLocation(), 673 Res = Actions.ActOnNumericConstant(Tok, /*UDLScope*/getCurScope()); 778 (Actions.getTypeName(II, ILoc, getCurScope()) || 780 (&II == Ident_super && getCurScope()->isInObjcMethodScope()))) { 802 getCurScope()->isInObjcMethodScope() && [all...] |
ParseCXXInlineMethods.cpp | 51 FnD = Actions.ActOnFriendFunctionDecl(getCurScope(), D, 54 FnD = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, D, 58 Actions.ProcessDeclAttributeList(getCurScope(), FnD, AccessAttrs, false, 144 LM->TemplateScope = getCurScope()->isTemplateParamScope(); 282 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate); 292 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(), Class.TagOrTemplate); 299 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(), Class.TagOrTemplate); 307 Actions.ActOnReenterTemplateScope(getCurScope(), LM.Method); 311 Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(), LM.Method); 319 Actions.ActOnDelayedCXXMethodParameter(getCurScope(), [all...] |
ParseObjc.cpp | 50 Actions.CodeCompleteObjCAtDirective(getCurScope()); 143 Actions.ActOnAtEnd(getCurScope(), AtLoc); 190 Actions.CodeCompleteObjCInterfaceDecl(getCurScope()); 214 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc); 271 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc); 357 P.Actions.ActOnProperty(P.getCurScope(), AtLoc, LParenLoc, 428 Actions.CodeCompleteOrdinaryName(getCurScope(), 449 Actions.CodeCompleteObjCAtDirective(getCurScope()); 525 Actions.CodeCompleteObjCAtDirective(getCurScope()); 540 Actions.ActOnAtEnd(getCurScope(), AtEnd, allMethods, allTUVariables) [all...] |
ParseDeclCXX.cpp | 62 Actions.CodeCompleteNamespaceDecl(getCurScope()); 119 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() || 120 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() || 121 getCurScope()->getFnParent()) { 169 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc, 215 Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(), 240 Actions.CodeCompleteNamespaceAliasDecl(getCurScope()); 265 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias [all...] |
Parser.cpp | 368 N->Init(getCurScope(), ScopeFlags); 371 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags); 377 assert(getCurScope() && "Scope imbalance!"); 381 if (!getCurScope()->decl_empty()) 382 Actions.ActOnPopScope(Tok.getLocation(), getCurScope()); 384 Scope *OldScope = getCurScope(); 397 : CurScope(ManageFlags ? Self->getCurScope() : 0) { 418 delete getCurScope(); 477 assert(getCurScope() == 0 && "A scope is already active?"); 479 Actions.ActOnTranslationUnitScope(getCurScope()); [all...] |
ParseExprCXX.cpp | 90 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false, 217 if (Actions.ActOnCXXGlobalScopeSpecifier(getCurScope(), ConsumeToken(), SS)) 264 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext); 327 = Actions.ActOnDependentTemplateName(getCurScope(), 368 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), 404 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II, 422 !Actions.isNonTypeNestedNameSpecifier(getCurScope(), SS, Tok.getLocation(), 441 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), II, IdLoc, CCLoc, 457 if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS, 492 = Actions.ActOnDependentTemplateName(getCurScope(), [all...] |
ParseTemplate.cpp | 199 getCurScope(), AS, DS, 520 return Actions.ActOnTypeParameter(getCurScope(), TypenameKeyword, Ellipsis, 618 return Actions.ActOnTemplateTemplateParameter(getCurScope(), TemplateLoc, 668 return Actions.ActOnNonTypeTemplateParameter(getCurScope(), ParamDecl, [all...] |
ParseDecl.cpp | 65 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo); [all...] |
ParseStmt.cpp | 136 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement); 345 if (Tok.is(tok::colon) && getCurScope()->isSwitchScope() && 541 Actions.CodeCompleteCase(getCurScope()); 683 SubStmt.get(), getCurScope()); 820 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); 926 = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprResult.get()); [all...] |
ParseInit.cpp | 235 getCurScope()->isInObjcMethodScope()) { 274 = Actions.getObjCMessageKind(getCurScope(), II, IILoc,
|
ParseOpenMP.cpp | 141 Actions.ActOnCapturedRegionStart(Loc, getCurScope(), CR_Default, 1); 223 ExprResult Res = Actions.ActOnOpenMPIdExpression(getCurScope(), SS,
|
ParsePragma.cpp | 30 Actions.ActOnPragmaUnused(Tok, getCurScope(), UnusedLoc); 140 Actions.ActOnCapturedRegionStart(Loc, getCurScope(), CR_Default,
|
/external/llvm/include/llvm/ADT/ |
ScopedHashTable.h | 202 ScopeTy *getCurScope() { return CurScope; } 203 const ScopeTy *getCurScope() const { return CurScope; }
|
/external/clang/lib/Sema/ |
SemaStmtAsm.cpp | 382 ExprResult Result = ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Id, 435 if (!LookupName(BaseResult, getCurScope()))
|
SemaOpenMP.cpp | 42 Actions.getCurScope());
|
SemaPseudoObject.cpp | [all...] |
Sema.cpp | [all...] |
SemaExprMember.cpp | [all...] |
SemaType.cpp | [all...] |
SemaStmt.cpp | [all...] |
SemaChecking.cpp | [all...] |
SemaDecl.cpp | [all...] |
SemaExpr.cpp | [all...] |
/external/clang/include/clang/Parse/ |
Parser.h | 230 Scope *getCurScope() const { return Actions.getCurScope(); } [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | [all...] |