Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
DDeclCXX.h2496 SourceLocation IdentLoc, in UsingDirectiveDecl() argument
2499 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc), in UsingDirectiveDecl()
2545 SourceLocation IdentLoc,
2579 SourceLocation IdentLoc; variable
2591 SourceLocation IdentLoc, NamedDecl *Namespace) in NamespaceAliasDecl() argument
2593 NamespaceLoc(NamespaceLoc), IdentLoc(IdentLoc), in NamespaceAliasDecl()
2629 SourceLocation getTargetNameLoc() const { return IdentLoc; } in getTargetNameLoc()
2640 SourceLocation IdentLoc,
2646 return SourceRange(NamespaceLoc, IdentLoc); in getSourceRange()
DStmt.h767 SourceLocation IdentLoc; variable
770 : Stmt(LabelStmtClass), TheDecl(D), SubStmt(substmt), IdentLoc(IL) { in LabelStmt()
776 SourceLocation getIdentLoc() const { return IdentLoc; } in getIdentLoc()
782 void setIdentLoc(SourceLocation L) { IdentLoc = L; } in setIdentLoc()
785 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; } in getLocStart()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/
DParseDeclCXX.cpp67 SourceLocation IdentLoc; in ParseNamespace() local
77 IdentLoc = ConsumeToken(); // eat the identifier. in ParseNamespace()
104 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd); in ParseNamespace()
170 IdentLoc, Ident, T.getOpenLocation(), in ParseNamespace()
191 void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc, in ParseInnerNamespace() argument
216 NamespaceLoc[index], IdentLoc[index], in ParseInnerNamespace()
220 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc, in ParseInnerNamespace()
258 SourceLocation IdentLoc = ConsumeToken(); in ParseNamespaceAlias() local
266 SS, IdentLoc, Ident); in ParseNamespaceAlias()
403 SourceLocation IdentLoc = SourceLocation(); in ParseUsingDirective() local
[all …]
DParseDecl.cpp3839 SourceLocation IdentLoc = ConsumeToken(); in ParseEnumBody() local
3861 IdentLoc, Ident, in ParseEnumBody()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaDeclCXX.cpp6492 SourceLocation IdentLoc, in ActOnStartNamespaceDef() argument
6498 SourceLocation Loc = II ? IdentLoc : LBrace; in ActOnStartNamespaceDef()
6844 SourceLocation IdentLoc, in TryNamespaceTypoCorrection() argument
6874 SourceLocation IdentLoc, in ActOnUsingDirective() argument
6879 assert(IdentLoc.isValid() && "Invalid NamespceName location."); in ActOnUsingDirective()
6892 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName); in ActOnUsingDirective()
6903 Diag(IdentLoc, diag::ext_using_undefined_std); in ActOnUsingDirective()
6908 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName); in ActOnUsingDirective()
6934 IdentLoc, Named, CommonAncestor); in ActOnUsingDirective()
6937 !SourceMgr.isInMainFile(SourceMgr.getExpansionLoc(IdentLoc))) { in ActOnUsingDirective()
[all …]
DSemaStmt.cpp401 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl, in ActOnLabelStmt() argument
405 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName(); in ActOnLabelStmt()
411 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt); in ActOnLabelStmt()
414 TheDecl->setLocStart(IdentLoc); in ActOnLabelStmt()
415 TheDecl->setLocation(IdentLoc); in ActOnLabelStmt()
DSemaDecl.cpp9343 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared) in ActOnFinishKNRParamDeclarations()
9353 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc, in ActOnFinishKNRParamDeclarations()
9356 DS.SetRangeStart(FTI.ArgInfo[i].IdentLoc); in ActOnFinishKNRParamDeclarations()
9357 DS.SetRangeEnd(FTI.ArgInfo[i].IdentLoc); in ActOnFinishKNRParamDeclarations()
9359 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc); in ActOnFinishKNRParamDeclarations()
DSemaType.cpp2909 S.Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration); in GetFullTypeForDeclarator()
2952 S.Diag(FTI.ArgInfo[i].IdentLoc, in GetFullTypeForDeclarator()
DTreeTransform.h1090 StmtResult RebuildLabelStmt(SourceLocation IdentLoc, LabelDecl *L, in RebuildLabelStmt() argument
1092 return SemaRef.ActOnLabelStmt(IdentLoc, L, ColonLoc, SubStmt); in RebuildLabelStmt()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
DDeclCXX.cpp1901 SourceLocation IdentLoc, in Create() argument
1907 IdentLoc, Used, CommonAncestor); in Create()
1960 SourceLocation IdentLoc, in Create() argument
1965 QualifierLoc, IdentLoc, Namespace); in Create()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
DDeclSpec.h1122 SourceLocation IdentLoc; member
1136 : Ident(ident), IdentLoc(iloc), Param(param), in Ident()
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/
DX86AsmParser.cpp1311 SMLoc IdentLoc = Tok.getLoc(); in ParseIntelExpression() local
1313 if(!ParseRegister(TmpReg, IdentLoc, End)) { in ParseIntelExpression()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Parse/
DParser.h2115 void ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTReaderDecl.cpp1122 D->IdentLoc = ReadSourceLocation(Record, Idx); in VisitNamespaceAliasDecl()