/external/clang/include/clang/Sema/ |
Designator.h | 48 unsigned NameLoc; 86 return SourceLocation::getFromRawEncoding(FieldInfo.NameLoc); 127 SourceLocation NameLoc) { 132 D.FieldInfo.NameLoc = NameLoc.getRawEncoding();
|
Lookup.h | 151 SourceLocation NameLoc, Sema::LookupNameKind LookupKind, 157 NameInfo(Name, NameLoc),
|
/external/clang/include/clang/AST/ |
DeclarationName.h | 433 SourceLocation NameLoc; 441 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc) 442 : Name(Name), NameLoc(NameLoc), LocInfo(Name) {} 444 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc, 446 : Name(Name), NameLoc(NameLoc), LocInfo(LocInfo) {} 454 SourceLocation getLoc() const { return NameLoc; } 456 void setLoc(SourceLocation L) { NameLoc = L; } 526 SourceLocation getBeginLoc() const { return NameLoc; } [all...] |
TypeLoc.h | 444 SourceLocation NameLoc; 458 return this->getLocalData()->NameLoc; 461 this->getLocalData()->NameLoc = Loc; 891 SourceLocation NameLoc; 906 return getLocalData()->NameLoc; 910 getLocalData()->NameLoc = Loc; [all...] |
ExprCXX.h | 625 SourceLocation nameLoc) 631 MemberLoc(nameLoc), IsArrow(isArrow), [all...] |
/external/clang/lib/Parse/ |
ParseInit.cpp | 162 SourceLocation NameLoc = ConsumeToken(); // Eat the identifier. 167 Diag(NameLoc, diag::ext_gnu_old_style_field_designator) 168 << FixItHint::CreateReplacement(SourceRange(NameLoc, ColonLoc), 172 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
|
ParseTemplate.cpp | 495 SourceLocation NameLoc; 499 NameLoc = ConsumeToken(); 521 EllipsisLoc, KeyLoc, ParamName, NameLoc, 582 SourceLocation NameLoc; 586 NameLoc = ConsumeToken(); 620 ParamName, NameLoc, Depth, [all...] |
ParseDeclCXX.cpp | [all...] |
ParsePragma.cpp | 164 SourceLocation NameLoc = Tok.getLocation(); 178 PP.Diag(NameLoc, diag::warn_pragma_unknown_extension) << ename; 707 SourceLocation NameLoc = Tok.getLocation(); 746 Toks[0].setLocation(NameLoc);
|
ParseExprCXX.cpp | [all...] |
ParseExpr.cpp | [all...] |
Parser.cpp | [all...] |
/external/llvm/include/llvm/MC/ |
MCTargetAsmParser.h | 124 /// \param NameLoc - The source location of the name. 129 SMLoc NameLoc,
|
/external/clang/lib/AST/ |
DeclarationName.cpp | 551 return NameLoc; 569 return NameLoc; 576 return NameLoc;
|
ExprCXX.cpp | [all...] |
/external/clang/lib/Sema/ |
SemaLambda.cpp | 832 DeclarationNameLoc NameLoc; 833 NameLoc.NamedType.TInfo = S.Context.getTrivialTypeSourceInfo(FunctionPtrTy, 837 DeclarationNameInfo(Name, Loc, NameLoc), [all...] |
SemaTemplateVariadic.cpp | 798 /// \param NameLoc The source location of the name of the parameter pack. 803 SourceLocation NameLoc, 807 LookupResult R(*this, &Name, NameLoc, LookupOrdinaryName); 824 Diag(NameLoc, diag::err_sizeof_pack_no_pack_name_suggest) 827 NameLoc, Corrected.getAsString(getLangOpts())); 842 Diag(NameLoc, diag::err_sizeof_pack_no_pack_name) 850 ParameterPack, NameLoc, RParenLoc); [all...] |
SemaDecl.cpp | 132 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc, 165 return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get(); 170 II, NameLoc); 187 LookupResult Result(*this, &II, NameLoc, Kind); 221 TemplateName.setIdentifier(NewII, NameLoc); 225 NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 235 ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr, 243 Diag(NameLoc, diag::err_unknown_type_or_class_name_suggest) 245 << FixItHint::CreateReplacement(SourceRange(NameLoc), 252 SS->MakeTrivial(Context, NNS, SourceRange(NameLoc)); [all...] |
SemaTemplate.cpp | 757 SourceLocation NameLoc, 769 NameLoc.isInvalid()? TmpLoc : NameLoc, 777 maybeDiagnoseTemplateParameterShadow(*this, S, NameLoc, Name); [all...] |
/external/llvm/lib/AsmParser/ |
LLParser.cpp | 383 LocTy NameLoc = Lex.getLoc(); 391 if (ParseStructDefinition(NameLoc, Name, 397 return Error(NameLoc, "non-struct types may not be recursive"); 451 LocTy NameLoc = Lex.getLoc(); 471 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility); 472 return ParseAlias(Name, NameLoc, Visibility); 480 LocTy NameLoc = Lex.getLoc(); 492 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility); 493 return ParseAlias(Name, NameLoc, Visibility); 622 bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc, [all...] |
/external/llvm/lib/TableGen/ |
TGParser.h | 167 Init *ParseIDValue(Record *CurRec, const std::string &Name, SMLoc NameLoc,
|
TGParser.cpp | 743 const std::string &Name, SMLoc NameLoc, 789 Error(NameLoc, "Variable not defined: '" + Name + "'"); [all...] |
/external/llvm/lib/Target/SystemZ/AsmParser/ |
SystemZAsmParser.cpp | 343 StringRef Name, SMLoc NameLoc, 615 ParseInstruction(ParseInstructionInfo &Info, StringRef Name, SMLoc NameLoc, 617 Operands.push_back(SystemZOperand::createToken(Name, NameLoc));
|
/external/llvm/lib/Target/PowerPC/AsmParser/ |
PPCAsmParser.cpp | 232 StringRef Name, SMLoc NameLoc, [all...] |
/external/llvm/lib/Target/X86/AsmParser/ |
X86AsmParser.cpp | 567 SMLoc NameLoc, [all...] |