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

/external/clang/lib/AST/
H A DDeclCXX.cpp1833 SourceLocation IdentLoc,
1839 IdentLoc, Used, CommonAncestor);
1892 SourceLocation IdentLoc,
1897 QualifierLoc, IdentLoc, Namespace);
1829 Create(ASTContext &C, DeclContext *DC, SourceLocation L, SourceLocation NamespaceLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Used, DeclContext *CommonAncestor) argument
1887 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.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...]
H A DParseDecl.cpp3396 SourceLocation IdentLoc = ConsumeToken(); local
3418 IdentLoc, Ident,
/external/clang/include/clang/AST/
H A DDeclCXX.h2400 SourceLocation IdentLoc,
2403 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc),
2449 SourceLocation IdentLoc,
2481 /// IdentLoc - Location of namespace identifier. Accessed by TargetNameLoc.
2482 SourceLocation IdentLoc; member in class:clang::NamespaceAliasDecl
2494 SourceLocation IdentLoc, NamedDecl *Namespace)
2496 NamespaceLoc(NamespaceLoc), IdentLoc(IdentLoc),
2532 SourceLocation getTargetNameLoc() const { return IdentLoc; }
2543 SourceLocation IdentLoc,
2397 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, SourceLocation NamespcLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Nominated, DeclContext *CommonAncestor) argument
2491 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; }
784 return SourceRange(IdentLoc, SubStmt->getLocEnd());
/external/clang/include/clang/Sema/
H A DDeclSpec.h1075 SourceLocation IdentLoc; member in struct:clang::DeclaratorChunk::ParamInfo
1089 : Ident(ident), IdentLoc(iloc), Param(param),
/external/clang/lib/Sema/
H A DSemaStmt.cpp362 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl, argument
366 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
372 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
375 TheDecl->setLocation(IdentLoc);
H A DSemaDeclCXX.cpp5335 SourceLocation IdentLoc,
5341 SourceLocation Loc = II ? IdentLoc : LBrace;
5706 SourceLocation IdentLoc,
5716 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5718 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
5720 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5722 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
5737 SourceLocation IdentLoc,
5742 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
5755 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceNam
5332 ActOnStartNamespaceDef(Scope *NamespcScope, SourceLocation InlineLoc, SourceLocation NamespaceLoc, SourceLocation IdentLoc, IdentifierInfo *II, SourceLocation LBrace, AttributeList *AttrList) argument
5704 TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident) argument
5733 ActOnUsingDirective(Scope *S, SourceLocation UsingLoc, SourceLocation NamespcLoc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *NamespcName, AttributeList *AttrList) argument
6144 SourceLocation IdentLoc = NameInfo.getLoc(); local
6661 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 175 milliseconds