Searched defs:IdentLoc (Results 1 - 10 of 10) sorted by relevance

/external/clang/lib/Parse/
H A DParseDeclCXX.cpp71 SourceLocation IdentLoc; local
89 IdentLoc = ConsumeToken(); // eat the identifier.
119 Decl *NSAlias = ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
187 IdentLoc, Ident, T.getOpenLocation(),
209 void Parser::ParseInnerNamespace(std::vector<SourceLocation> &IdentLoc, argument
238 NamespaceLoc[index], IdentLoc[index],
244 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
281 SourceLocation IdentLoc = ConsumeToken(); local
289 Alias, SS, IdentLoc, Ident);
448 SourceLocation IdentLoc local
[all...]
H A DParseDecl.cpp4103 SourceLocation IdentLoc = ConsumeToken(); local
4129 IdentLoc, Ident,
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1206 SMLoc IdentLoc = Tok.getLoc(); local
1208 if (TK != AsmToken::String && !ParseRegister(TmpReg, IdentLoc, End)) {
/external/clang/include/clang/AST/
H A DDeclCXX.h2578 SourceLocation IdentLoc,
2581 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc),
2627 SourceLocation IdentLoc,
2662 SourceLocation IdentLoc; member in class:clang::NamespaceAliasDecl
2674 SourceLocation IdentLoc, NamedDecl *Namespace)
2676 NamespaceLoc(NamespaceLoc), IdentLoc(IdentLoc),
2692 SourceLocation IdentLoc,
2742 SourceLocation getTargetNameLoc() const { return IdentLoc; }
2749 return SourceRange(NamespaceLoc, IdentLoc);
2575 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, SourceLocation NamespcLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Nominated, DeclContext *CommonAncestor) argument
2671 NamespaceAliasDecl(ASTContext &C, DeclContext *DC, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Namespace) argument
[all...]
H A DStmt.h778 SourceLocation IdentLoc; member in class:clang::LabelStmt
784 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
793 SourceLocation getIdentLoc() const { return IdentLoc; }
799 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
802 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
/external/clang/include/clang/Sema/
H A DDeclSpec.h1158 SourceLocation IdentLoc; member in struct:clang::DeclaratorChunk::ParamInfo
1172 : Ident(ident), IdentLoc(iloc), Param(param),
/external/clang/lib/Sema/
H A DSemaStmt.cpp460 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl, argument
464 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
470 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
473 TheDecl->setLocStart(IdentLoc);
477 TheDecl->setLocation(IdentLoc);
H A DSemaDecl.cpp9912 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc, argument
9925 DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID,
9929 D.SetIdentifier(Ident, IdentLoc);
9933 D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/false),
9934 EmptyAttrs, IdentLoc);
9938 return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc,
9939 AttrEnd.isValid() ? AttrEnd : IdentLoc);
10638 Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared)
10648 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec,
10651 DS.SetRangeStart(FTI.Params[i].IdentLoc);
[all...]
H A DSemaDeclCXX.cpp7170 SourceLocation IdentLoc,
7177 SourceLocation Loc = II ? IdentLoc : LBrace;
7197 LookupResult R(*this, II, IdentLoc, LookupOrdinaryName, ForRedeclaration);
7512 SourceLocation IdentLoc,
7542 SourceLocation IdentLoc,
7547 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
7560 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
7571 Diag(IdentLoc, diag::ext_using_undefined_std);
7576 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
7585 DiagnoseUseOfDecl(Named, IdentLoc);
7167 ActOnStartNamespaceDef(Scope *NamespcScope, SourceLocation InlineLoc, SourceLocation NamespaceLoc, SourceLocation IdentLoc, IdentifierInfo *II, SourceLocation LBrace, AttributeList *AttrList, UsingDirectiveDecl *&UD) argument
7510 TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident) argument
7538 ActOnUsingDirective(Scope *S, SourceLocation UsingLoc, SourceLocation NamespcLoc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *NamespcName, AttributeList *AttrList) argument
8043 SourceLocation IdentLoc = NameInfo.getLoc(); local
8650 ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident) argument
[all...]
H A DTreeTransform.h1145 StmtResult RebuildLabelStmt(SourceLocation IdentLoc, LabelDecl *L, argument
1147 return SemaRef.ActOnLabelStmt(IdentLoc, L, ColonLoc, SubStmt);

Completed in 273 milliseconds