HomeSort by relevance Sort by last modified time
    Searched refs:getCurScope (Results 1 - 17 of 17) sorted by null

  /external/clang/lib/Parse/
ParseExpr.cpp 208 LHS = Actions.ActOnUnaryOp(getCurScope(), ExtLoc, tok::kw___extension__,
217 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Expression);
344 Actions.CodeCompleteAssignmentRHS(getCurScope(), LHS.get());
432 LHS = Actions.ActOnBinOp(getCurScope(), OpToken.getLocation(),
703 Res = Actions.ActOnNumericConstant(Tok, /*UDLScope*/getCurScope());
755 (Actions.getTypeName(II, ILoc, getCurScope()) ||
757 (&II == Ident_super && getCurScope()->isInObjcMethodScope()))) {
779 getCurScope()->isInObjcMethodScope() &&
799 if (ParsedType Typ = Actions.getTypeName(II, ILoc, getCurScope())
    [all...]
ParseCXXInlineMethods.cpp 43 FnD = Actions.ActOnFriendFunctionDecl(getCurScope(), D,
46 FnD = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, D,
50 Actions.ProcessDeclAttributeList(getCurScope(), FnD, AccessAttrs,
140 LM->TemplateScope = getCurScope()->isTemplateParamScope();
265 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
273 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(), Class.TagOrTemplate);
280 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(), Class.TagOrTemplate);
287 Actions.ActOnReenterTemplateScope(getCurScope(), LM.Method);
290 Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(), LM.Method);
298 Actions.ActOnDelayedCXXMethodParameter(getCurScope(),
    [all...]
ParseObjc.cpp 36 Actions.CodeCompleteObjCAtDirective(getCurScope());
128 Actions.ActOnAtEnd(getCurScope(), AtLoc);
175 Actions.CodeCompleteObjCInterfaceDecl(getCurScope());
197 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc);
254 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc);
339 P.Actions.ActOnProperty(P.getCurScope(), AtLoc, LParenLoc,
410 Actions.CodeCompleteOrdinaryName(getCurScope(),
431 Actions.CodeCompleteObjCAtDirective(getCurScope());
507 Actions.CodeCompleteObjCAtDirective(getCurScope());
522 Actions.ActOnAtEnd(getCurScope(), AtEnd
    [all...]
Parser.cpp 311 N->Init(getCurScope(), ScopeFlags);
314 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
320 assert(getCurScope() && "Scope imbalance!");
324 if (!getCurScope()->decl_empty())
325 Actions.ActOnPopScope(Tok.getLocation(), getCurScope());
327 Scope *OldScope = getCurScope();
340 : CurScope(ManageFlags ? Self->getCurScope() : 0) {
361 delete getCurScope();
408 assert(getCurScope() == 0 && "A scope is already active?");
410 Actions.ActOnTranslationUnitScope(getCurScope());
    [all...]
ParseDeclCXX.cpp 59 Actions.CodeCompleteNamespaceDecl(getCurScope());
110 if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() ||
111 getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() ||
112 getCurScope()->getFnParent()) {
160 Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc,
206 Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(),
231 Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
256 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias
    [all...]
ParseExprCXX.cpp 90 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false,
161 if (Actions.ActOnCXXGlobalScopeSpecifier(getCurScope(), ConsumeToken(), SS))
206 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext);
269 = Actions.ActOnDependentTemplateName(getCurScope(),
308 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(),
344 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II,
362 !Actions.isNonTypeNestedNameSpecifier(getCurScope(), SS, Tok.getLocation(),
376 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), II, IdLoc, CCLoc,
392 if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS,
427 = Actions.ActOnDependentTemplateName(getCurScope(),
    [all...]
ParseTemplate.cpp 227 Decl *Decl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
515 return Actions.ActOnTypeParameter(getCurScope(), TypenameKeyword, Ellipsis,
613 return Actions.ActOnTemplateTemplateParameter(getCurScope(), TemplateLoc,
662 return Actions.ActOnNonTypeTemplateParameter(getCurScope(), ParamDecl,
    [all...]
ParseDecl.cpp 56 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
730 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate);
740 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(),
753 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(),
828 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs);
    [all...]
ParseStmt.cpp 121 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement);
142 = Actions.ClassifyName(getCurScope(), SS, Name, NameLoc, Next);
346 if (Tok.is(tok::colon) && getCurScope()->isSwitchScope() &&
542 Actions.CodeCompleteCase(getCurScope());
684 SubStmt.get(), getCurScope());
770 DeclGroupPtrTy Res = Actions.FinalizeDeclaratorGroup(getCurScope(), DS,
882 = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprResult.get());
    [all...]
ParseInit.cpp 235 getCurScope()->isInObjcMethodScope()) {
274 = Actions.getObjCMessageKind(getCurScope(), II, IILoc,
ParsePragma.cpp 28 Actions.ActOnPragmaUnused(Tok, getCurScope(), UnusedLoc);
  /external/llvm/include/llvm/ADT/
ScopedHashTable.h 202 ScopeTy *getCurScope() { return CurScope; }
203 const ScopeTy *getCurScope() const { return CurScope; }
  /external/clang/include/clang/Parse/
Parser.h 212 Scope *getCurScope() const { return Actions.getCurScope(); }
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 807 for (Scope *S = getCurScope(); S; S = S->getParent()) {
    [all...]
SemaStmt.cpp     [all...]
SemaType.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 1429 milliseconds