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

/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclCXX.h2496 SourceLocation IdentLoc,
2499 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc),
2545 SourceLocation IdentLoc,
2579 SourceLocation IdentLoc; member in class:clang::NamespaceAliasDecl
2591 SourceLocation IdentLoc, NamedDecl *Namespace)
2593 NamespaceLoc(NamespaceLoc), IdentLoc(IdentLoc),
2629 SourceLocation getTargetNameLoc() const { return IdentLoc; }
2640 SourceLocation IdentLoc,
2646 return SourceRange(NamespaceLoc, IdentLoc);
2493 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, SourceLocation NamespcLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Nominated, DeclContext *CommonAncestor) argument
2588 NamespaceAliasDecl(DeclContext *DC, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Namespace) argument
[all...]
H A DStmt.h767 SourceLocation IdentLoc; member in class:clang::LabelStmt
770 : Stmt(LabelStmtClass), TheDecl(D), SubStmt(substmt), IdentLoc(IL) {
776 SourceLocation getIdentLoc() const { return IdentLoc; }
782 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
785 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
/freebsd-10-stable/contrib/llvm/tools/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.cpp3839 SourceLocation IdentLoc = ConsumeToken(); local
3861 IdentLoc, Ident,
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
H A DDeclCXX.cpp1901 SourceLocation IdentLoc,
1907 IdentLoc, Used, CommonAncestor);
1960 SourceLocation IdentLoc,
1965 QualifierLoc, IdentLoc, Namespace);
1897 Create(ASTContext &C, DeclContext *DC, SourceLocation L, SourceLocation NamespaceLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Used, DeclContext *CommonAncestor) argument
1955 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Namespace) argument
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclCXX.cpp6492 SourceLocation IdentLoc,
6498 SourceLocation Loc = II ? IdentLoc : LBrace;
6844 SourceLocation IdentLoc,
6874 SourceLocation IdentLoc,
6879 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
6892 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
6903 Diag(IdentLoc, diag::ext_using_undefined_std);
6908 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
6934 IdentLoc, Named, CommonAncestor);
6937 !SourceMgr.isInMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
6489 ActOnStartNamespaceDef(Scope *NamespcScope, SourceLocation InlineLoc, SourceLocation NamespaceLoc, SourceLocation IdentLoc, IdentifierInfo *II, SourceLocation LBrace, AttributeList *AttrList) argument
6842 TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident) argument
6870 ActOnUsingDirective(Scope *S, SourceLocation UsingLoc, SourceLocation NamespcLoc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *NamespcName, AttributeList *AttrList) argument
7319 SourceLocation IdentLoc = NameInfo.getLoc(); local
7857 ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident) argument
[all...]
H A DSemaStmt.cpp401 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl, argument
405 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
411 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
414 TheDecl->setLocStart(IdentLoc);
415 TheDecl->setLocation(IdentLoc);
H A DSemaType.cpp2909 S.Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
2952 S.Diag(FTI.ArgInfo[i].IdentLoc,
H A DSemaDecl.cpp9343 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
9353 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
9356 DS.SetRangeStart(FTI.ArgInfo[i].IdentLoc);
9357 DS.SetRangeEnd(FTI.ArgInfo[i].IdentLoc);
9359 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
H A DTreeTransform.h1090 StmtResult RebuildLabelStmt(SourceLocation IdentLoc, LabelDecl *L, argument
1092 return SemaRef.ActOnLabelStmt(IdentLoc, L, ColonLoc, SubStmt);
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h1122 SourceLocation IdentLoc; member in struct:clang::DeclaratorChunk::ParamInfo
1136 : Ident(ident), IdentLoc(iloc), Param(param),
H A DSema.h2472 LabelDecl *LookupOrCreateLabel(IdentifierInfo *II, SourceLocation IdentLoc,
2887 StmtResult ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
3627 SourceLocation IdentLoc,
3656 SourceLocation IdentLoc,
3667 SourceLocation IdentLoc,
/freebsd-10-stable/contrib/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1311 SMLoc IdentLoc = Tok.getLoc(); local
1313 if(!ParseRegister(TmpReg, IdentLoc, End)) {
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h2115 void ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderDecl.cpp1122 D->IdentLoc = ReadSourceLocation(Record, Idx);

Completed in 381 milliseconds