| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ |
| D | DeclCXX.h | 2496 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()
|
| D | Stmt.h | 767 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/ |
| D | ParseDeclCXX.cpp | 67 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 …]
|
| D | ParseDecl.cpp | 3839 SourceLocation IdentLoc = ConsumeToken(); in ParseEnumBody() local 3861 IdentLoc, Ident, in ParseEnumBody()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/ |
| D | SemaDeclCXX.cpp | 6492 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 …]
|
| D | SemaStmt.cpp | 401 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()
|
| D | SemaDecl.cpp | 9343 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()
|
| D | SemaType.cpp | 2909 S.Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration); in GetFullTypeForDeclarator() 2952 S.Diag(FTI.ArgInfo[i].IdentLoc, in GetFullTypeForDeclarator()
|
| D | TreeTransform.h | 1090 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/ |
| D | DeclCXX.cpp | 1901 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/ |
| D | DeclSpec.h | 1122 SourceLocation IdentLoc; member 1136 : Ident(ident), IdentLoc(iloc), Param(param), in Ident()
|
| D | Sema.h | 2472 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/ |
| D | X86AsmParser.cpp | 1311 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/ |
| D | Parser.h | 2115 void ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ |
| D | ASTReaderDecl.cpp | 1122 D->IdentLoc = ReadSourceLocation(Record, Idx); in VisitNamespaceAliasDecl()
|