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

/external/clang/lib/AST/
H A DDeclCXX.cpp1809 SourceLocation IdentLoc,
1815 IdentLoc, Used, CommonAncestor);
1868 SourceLocation IdentLoc,
1873 QualifierLoc, IdentLoc, Namespace);
1805 Create(ASTContext &C, DeclContext *DC, SourceLocation L, SourceLocation NamespaceLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Used, DeclContext *CommonAncestor) argument
1863 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Namespace) argument
/external/clang/lib/Parse/
H A DParseDecl.cpp3051 SourceLocation IdentLoc = ConsumeToken(); local
3071 IdentLoc, Ident,
H A DParseDeclCXX.cpp64 SourceLocation IdentLoc; local
74 IdentLoc = ConsumeToken(); // eat the identifier.
95 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
161 IdentLoc, Ident, T.getOpenLocation(),
182 void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc, argument
207 NamespaceLoc[index], IdentLoc[index],
211 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
249 SourceLocation IdentLoc = ConsumeToken(); local
257 SS, IdentLoc, Ident);
394 SourceLocation IdentLoc local
[all...]
/external/clang/include/clang/AST/
H A DDeclCXX.h2403 SourceLocation IdentLoc,
2406 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc),
2452 SourceLocation IdentLoc,
2482 /// IdentLoc - Location of namespace identifier. Accessed by TargetNameLoc.
2483 SourceLocation IdentLoc; member in class:clang::NamespaceAliasDecl
2495 SourceLocation IdentLoc, NamedDecl *Namespace)
2497 NamespaceLoc(NamespaceLoc), IdentLoc(IdentLoc),
2533 SourceLocation getTargetNameLoc() const { return IdentLoc; }
2544 SourceLocation IdentLoc,
2400 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, SourceLocation NamespcLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Nominated, DeclContext *CommonAncestor) argument
2492 NamespaceAliasDecl(DeclContext *DC, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Namespace) argument
[all...]
H A DStmt.h768 SourceLocation IdentLoc; member in class:clang::LabelStmt
771 : Stmt(LabelStmtClass), TheDecl(D), SubStmt(substmt), IdentLoc(IL) {
777 SourceLocation getIdentLoc() const { return IdentLoc; }
783 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
787 return SourceRange(IdentLoc, SubStmt->getLocEnd());
/external/clang/include/clang/Sema/
H A DDeclSpec.h1057 SourceLocation IdentLoc; member in struct:clang::DeclaratorChunk::ParamInfo
1071 : Ident(ident), IdentLoc(iloc), Param(param),
/external/clang/lib/Sema/
H A DSemaStmt.cpp346 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl, argument
350 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
356 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
359 TheDecl->setLocation(IdentLoc);
H A DSemaDeclCXX.cpp5417 SourceLocation IdentLoc,
5423 SourceLocation Loc = II ? IdentLoc : LBrace;
5786 SourceLocation IdentLoc,
5796 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5798 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
5800 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5802 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
5817 SourceLocation IdentLoc,
5822 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
5835 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceNam
5414 ActOnStartNamespaceDef(Scope *NamespcScope, SourceLocation InlineLoc, SourceLocation NamespaceLoc, SourceLocation IdentLoc, IdentifierInfo *II, SourceLocation LBrace, AttributeList *AttrList) argument
5784 TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident) argument
5813 ActOnUsingDirective(Scope *S, SourceLocation UsingLoc, SourceLocation NamespcLoc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *NamespcName, AttributeList *AttrList) argument
6222 SourceLocation IdentLoc = NameInfo.getLoc(); local
6738 ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident) argument
[all...]
H A DTreeTransform.h1047 StmtResult RebuildLabelStmt(SourceLocation IdentLoc, LabelDecl *L, argument
1049 return SemaRef.ActOnLabelStmt(IdentLoc, L, ColonLoc, SubStmt);

Completed in 129 milliseconds