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

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h2899 SourceLocation IdentLoc,
2902 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc),
2963 SourceLocation IdentLoc,
2993 SourceLocation IdentLoc; member in class:clang::NamespaceAliasDecl
3005 SourceLocation IdentLoc, NamedDecl *Namespace)
3007 NamespaceLoc(NamespaceLoc), IdentLoc(IdentLoc),
3024 SourceLocation IdentLoc,
3075 SourceLocation getTargetNameLoc() const { return IdentLoc; }
3082 return SourceRange(NamespaceLoc, IdentLoc);
2896 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, SourceLocation NamespcLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Nominated, DeclContext *CommonAncestor) argument
3002 NamespaceAliasDecl(ASTContext &C, DeclContext *DC, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Namespace) argument
[all...]
H A DStmt.h141 SourceLocation IdentLoc; member in class:clang::LabelStmtBitfields
1813 SourceLocation getIdentLoc() const { return LabelStmtBits.IdentLoc; }
1814 void setIdentLoc(SourceLocation L) { LabelStmtBits.IdentLoc = L; }
/netbsd-current/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseDeclCXX.cpp71 SourceLocation IdentLoc; local
89 IdentLoc = ConsumeToken(); // eat the identifier.
105 Info.IdentLoc = ConsumeToken();
133 Decl *NSAlias = ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
178 ExtraNSs.back().IdentLoc);
196 ExtraNSs.back().IdentLoc),
216 getCurScope(), InlineLoc, NamespaceLoc, IdentLoc, Ident,
263 InnerNSs[index].IdentLoc, InnerNSs[index].Ident,
317 SourceLocation IdentLoc = ConsumeToken(); local
325 Alias, SS, IdentLoc, Iden
544 SourceLocation IdentLoc = SourceLocation(); local
[all...]
H A DParseDecl.cpp4819 SourceLocation IdentLoc = ConsumeToken(); local
4847 getCurScope(), EnumDecl, LastEnumConstDecl, IdentLoc, Ident, attrs,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1912 SMLoc IdentLoc = Tok.getLoc(); local
1950 if (!ParseRegister(Reg, IdentLoc, End, /*RestoreOnFailure=*/true)) {
1952 return Error(IdentLoc, ErrMsg);
1961 !MatchRegisterByName(Reg, ID, IdentLoc, IDEndLoc)) {
1963 return Error(IdentLoc, ErrMsg);
1972 return Error(IdentLoc, ErrMsg);
2011 return Error(IdentLoc, ErrMsg);
2020 return Error(IdentLoc, "expected identifier");
2025 return Error(IdentLoc, ErrMsg);
2034 return Error(IdentLoc, ErrMs
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclCXX.cpp10909 SourceLocation IdentLoc, IdentifierInfo *II, SourceLocation LBrace,
10913 SourceLocation Loc = II ? IdentLoc : LBrace;
10933 LookupResult R(*this, II, IdentLoc, LookupOrdinaryName,
11412 SourceLocation IdentLoc,
11440 SourceLocation IdentLoc,
11445 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
11458 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
11469 Diag(IdentLoc, diag::ext_using_undefined_std);
11474 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
11483 DiagnoseUseOfDecl(Named, IdentLoc);
[all...]
H A DSemaStmt.cpp536 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl, argument
540 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
547 !Context.getSourceManager().isInSystemHeader(IdentLoc))
548 Diag(IdentLoc, diag::warn_reserved_extern_symbol)
552 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
555 TheDecl->setLocStart(IdentLoc);
559 TheDecl->setLocation(IdentLoc);
H A DSemaDecl.cpp12928 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc, argument
12941 DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID,
12945 D.SetIdentifier(Ident, IdentLoc);
12948 D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/ false),
12949 IdentLoc);
12953 return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc,
12954 AttrEnd.isValid() ? AttrEnd : IdentLoc);
13917 Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared)
13927 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec,
13930 DS.SetRangeStart(FTI.Params[i].IdentLoc);
[all...]
H A DSemaType.cpp5193 S.Diag(FTI.Params[0].IdentLoc,
5235 S.Diag(FTI.Params[i].IdentLoc, diag::err_void_only_param);
5240 S.Diag(FTI.Params[i].IdentLoc, diag::err_param_with_void_type);
H A DTreeTransform.h1304 StmtResult RebuildLabelStmt(SourceLocation IdentLoc, LabelDecl *L, argument
1306 return SemaRef.ActOnLabelStmt(IdentLoc, L, ColonLoc, SubStmt);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DDeclSpec.h1253 SourceLocation IdentLoc; member in struct:clang::DeclaratorChunk::ParamInfo
1267 : Ident(ident), IdentLoc(iloc), Param(param),
H A DSema.h2769 StmtResult ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc,
4101 LabelDecl *LookupOrCreateLabel(IdentifierInfo *II, SourceLocation IdentLoc,
4653 StmtResult ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
5601 SourceLocation IdentLoc, IdentifierInfo *Ident,
5663 SourceLocation IdentLoc,
5674 SourceLocation IdentLoc,
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp2841 SourceLocation IdentLoc,
2847 IdentLoc, Used, CommonAncestor);
2936 SourceLocation IdentLoc,
2942 QualifierLoc, IdentLoc, Namespace);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h3024 SourceLocation IdentLoc; member in struct:clang::InnerNamespaceInfo
/netbsd-current/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp1636 D->IdentLoc = readSourceLocation();

Completed in 708 milliseconds