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

/external/clang/lib/AST/
H A DDeclCXX.cpp1835 SourceLocation IdentLoc,
1841 IdentLoc, Used, CommonAncestor);
1894 SourceLocation IdentLoc,
1899 QualifierLoc, IdentLoc, Namespace);
1831 Create(ASTContext &C, DeclContext *DC, SourceLocation L, SourceLocation NamespaceLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Used, DeclContext *CommonAncestor) argument
1889 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Namespace) argument
/external/clang/lib/Parse/
H A DParseDeclCXX.cpp67 SourceLocation IdentLoc; local
77 IdentLoc = ConsumeToken(); // eat the identifier.
104 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
170 IdentLoc, Ident, T.getOpenLocation(),
191 void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc, argument
216 NamespaceLoc[index], IdentLoc[index],
220 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
258 SourceLocation IdentLoc = ConsumeToken(); local
266 SS, IdentLoc, Ident);
403 SourceLocation IdentLoc local
[all...]
H A DParseDecl.cpp3734 SourceLocation IdentLoc = ConsumeToken(); local
3756 IdentLoc, Ident,
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1285 SMLoc IdentLoc = Tok.getLoc(); local
1287 if(!ParseRegister(TmpReg, IdentLoc, End)) {
/external/clang/include/clang/AST/
H A DDeclCXX.h2452 SourceLocation IdentLoc,
2455 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc),
2501 SourceLocation IdentLoc,
2535 SourceLocation IdentLoc; member in class:clang::NamespaceAliasDecl
2547 SourceLocation IdentLoc, NamedDecl *Namespace)
2549 NamespaceLoc(NamespaceLoc), IdentLoc(IdentLoc),
2585 SourceLocation getTargetNameLoc() const { return IdentLoc; }
2596 SourceLocation IdentLoc,
2602 return SourceRange(NamespaceLoc, IdentLoc);
2449 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, SourceLocation NamespcLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Nominated, DeclContext *CommonAncestor) argument
2544 NamespaceAliasDecl(DeclContext *DC, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Namespace) argument
[all...]
H A DStmt.h765 SourceLocation IdentLoc; member in class:clang::LabelStmt
768 : Stmt(LabelStmtClass), TheDecl(D), SubStmt(substmt), IdentLoc(IL) {
774 SourceLocation getIdentLoc() const { return IdentLoc; }
780 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
783 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp404 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl, argument
408 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
414 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
417 TheDecl->setLocStart(IdentLoc);
418 TheDecl->setLocation(IdentLoc);
H A DSemaDeclCXX.cpp6272 SourceLocation IdentLoc,
6278 SourceLocation Loc = II ? IdentLoc : LBrace;
6624 SourceLocation IdentLoc,
6636 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
6641 S.Diag(IdentLoc, diag::err_using_directive_suggest)
6643 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
6659 SourceLocation IdentLoc,
6664 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
6677 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
6688 Diag(IdentLoc, dia
6269 ActOnStartNamespaceDef(Scope *NamespcScope, SourceLocation InlineLoc, SourceLocation NamespaceLoc, SourceLocation IdentLoc, IdentifierInfo *II, SourceLocation LBrace, AttributeList *AttrList) argument
6622 TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident) argument
6655 ActOnUsingDirective(Scope *S, SourceLocation UsingLoc, SourceLocation NamespcLoc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *NamespcName, AttributeList *AttrList) argument
7093 SourceLocation IdentLoc = NameInfo.getLoc(); local
7635 ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident) argument
[all...]
H A DTreeTransform.h1074 StmtResult RebuildLabelStmt(SourceLocation IdentLoc, LabelDecl *L, argument
1076 return SemaRef.ActOnLabelStmt(IdentLoc, L, ColonLoc, SubStmt);
/external/clang/include/clang/Sema/
H A DDeclSpec.h1099 SourceLocation IdentLoc; member in struct:clang::DeclaratorChunk::ParamInfo
1113 : Ident(ident), IdentLoc(iloc), Param(param),

Completed in 314 milliseconds