Searched refs:IdentLoc (Results 1 - 15 of 15) sorted by relevance

/external/clang/include/clang/AST/
H A DDeclCXX.h2644 SourceLocation IdentLoc,
2647 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc),
2693 SourceLocation IdentLoc,
2728 SourceLocation IdentLoc; member in class:clang::NamespaceAliasDecl
2740 SourceLocation IdentLoc, NamedDecl *Namespace)
2742 NamespaceLoc(NamespaceLoc), IdentLoc(IdentLoc),
2758 SourceLocation IdentLoc,
2808 SourceLocation getTargetNameLoc() const { return IdentLoc; }
2815 return SourceRange(NamespaceLoc, IdentLoc);
2641 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, SourceLocation NamespcLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Nominated, DeclContext *CommonAncestor) argument
2737 NamespaceAliasDecl(ASTContext &C, DeclContext *DC, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Namespace) argument
[all...]
H A DStmt.h790 SourceLocation IdentLoc; member in class:clang::LabelStmt
796 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
805 SourceLocation getIdentLoc() const { return IdentLoc; }
811 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
814 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
/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.cpp4192 SourceLocation IdentLoc = ConsumeToken(); local
4218 IdentLoc, Ident,
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp7334 SourceLocation IdentLoc,
7341 SourceLocation Loc = II ? IdentLoc : LBrace;
7361 LookupResult R(*this, II, IdentLoc, LookupOrdinaryName, ForRedeclaration);
7677 SourceLocation IdentLoc,
7707 SourceLocation IdentLoc,
7712 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
7725 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
7736 Diag(IdentLoc, diag::ext_using_undefined_std);
7741 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
7750 DiagnoseUseOfDecl(Named, IdentLoc);
7331 ActOnStartNamespaceDef(Scope *NamespcScope, SourceLocation InlineLoc, SourceLocation NamespaceLoc, SourceLocation IdentLoc, IdentifierInfo *II, SourceLocation LBrace, AttributeList *AttrList, UsingDirectiveDecl *&UD) argument
7675 TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident) argument
7703 ActOnUsingDirective(Scope *S, SourceLocation UsingLoc, SourceLocation NamespcLoc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *NamespcName, AttributeList *AttrList) argument
8241 SourceLocation IdentLoc = NameInfo.getLoc(); local
8895 ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident) argument
[all...]
H A DSemaStmt.cpp461 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl, argument
465 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
471 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
474 TheDecl->setLocStart(IdentLoc);
478 TheDecl->setLocation(IdentLoc);
H A DSemaDecl.cpp10262 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc, argument
10275 DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID,
10279 D.SetIdentifier(Ident, IdentLoc);
10283 D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/false),
10284 EmptyAttrs, IdentLoc);
10288 return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc,
10289 AttrEnd.isValid() ? AttrEnd : IdentLoc);
11048 Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared)
11058 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec,
11061 DS.SetRangeStart(FTI.Params[i].IdentLoc);
[all...]
H A DSemaType.cpp4183 S.Diag(FTI.Params[0].IdentLoc,
4227 S.Diag(FTI.Params[i].IdentLoc, diag::err_param_with_void_type);
H A DTreeTransform.h1157 StmtResult RebuildLabelStmt(SourceLocation IdentLoc, LabelDecl *L, argument
1159 return SemaRef.ActOnLabelStmt(IdentLoc, L, ColonLoc, SubStmt);
/external/clang/lib/AST/
H A DDeclCXX.cpp2035 SourceLocation IdentLoc,
2041 IdentLoc, Used, CommonAncestor);
2127 SourceLocation IdentLoc,
2133 QualifierLoc, IdentLoc, Namespace);
/external/clang/include/clang/Sema/
H A DDeclSpec.h1181 SourceLocation IdentLoc; member in struct:clang::DeclaratorChunk::ParamInfo
1195 : Ident(ident), IdentLoc(iloc), Param(param),
H A DSema.h1767 StmtResult ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc,
2869 LabelDecl *LookupOrCreateLabel(IdentifierInfo *II, SourceLocation IdentLoc,
3391 StmtResult ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
4190 SourceLocation IdentLoc,
4220 SourceLocation IdentLoc,
4231 SourceLocation IdentLoc,
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1299 SMLoc IdentLoc = Tok.getLoc(); local
1301 if (TK != AsmToken::String && !ParseRegister(TmpReg, IdentLoc, End)) {
/external/clang/include/clang/Parse/
H A DParser.h2392 void ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp1396 D->IdentLoc = ReadSourceLocation(Record, Idx);

Completed in 1147 milliseconds