| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| Designator.h | 49 SourceLocation NameLoc; 87 return FieldInfo.NameLoc; 128 SourceLocation NameLoc) { 134 D.FieldInfo.NameLoc = NameLoc;
|
| Lookup.h | 159 SourceLocation NameLoc, Sema::LookupNameKind LookupKind, 161 : SemaPtr(&SemaRef), NameInfo(Name, NameLoc), LookupKind(LookupKind),
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| DeclarationName.h | 764 SourceLocation NameLoc; 773 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc) 774 : Name(Name), NameLoc(NameLoc), LocInfo(Name) {} 776 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc, 778 : Name(Name), NameLoc(NameLoc), LocInfo(LocInfo) {} 787 SourceLocation getLoc() const { return NameLoc; } 790 void setLoc(SourceLocation L) { NameLoc = L; } 860 SourceLocation getBeginLoc() const { return NameLoc; } [all...] |
| TypeLoc.h | 508 SourceLocation NameLoc; 524 return this->getLocalData()->NameLoc; 528 this->getLocalData()->NameLoc = Loc; 743 SourceLocation NameLoc; 761 return this->getLocalData()->NameLoc; 765 this->getLocalData()->NameLoc = Loc; 1035 SourceLocation NameLoc; 1050 return getLocalData()->NameLoc; 1054 getLocalData()->NameLoc = Loc; 1565 SourceLocation NameLoc; [all...] |
| ExprCXX.h | 935 NestedNameSpecifierLoc qualifierLoc, SourceLocation nameLoc) 937 TheDecl(decl), MemberLoc(nameLoc), IsArrow(isArrow), 4267 SubstNonTypeTemplateParmExprBits.NameLoc = Loc; 4272 return SubstNonTypeTemplateParmExprBits.NameLoc; 4327 SourceLocation NameLoc; 4336 SourceLocation NameLoc, 4343 SourceLocation getParameterPackLocation() const { return NameLoc; } 4349 SourceLocation getBeginLoc() const LLVM_READONLY { return NameLoc; } 4350 SourceLocation getEndLoc() const LLVM_READONLY { return NameLoc; } 4391 SourceLocation NameLoc; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/AsmParser/ |
| LanaiAsmParser.cpp | 59 StringRef splitMnemonic(StringRef Name, SMLoc NameLoc, 67 SMLoc NameLoc, OperandVector &Operands) override; 1059 StringRef LanaiAsmParser::splitMnemonic(StringRef Name, SMLoc NameLoc, 1081 Operands->push_back(LanaiOperand::CreateToken(Mnemonic, NameLoc)); 1083 MCConstantExpr::create(CondCode, getContext()), NameLoc, NameLoc)); 1085 Operands->push_back(LanaiOperand::CreateToken(".r", NameLoc)); 1110 Operands->push_back(LanaiOperand::CreateToken(Mnemonic, NameLoc)); 1112 MCConstantExpr::create(CondCode, getContext()), NameLoc, NameLoc)); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/VE/AsmParser/ |
| VEAsmParser.cpp | 62 SMLoc NameLoc, OperandVector &Operands) override; 84 StringRef splitMnemonic(StringRef Name, SMLoc NameLoc, 851 bool IntegerCC, bool OmitCC, SMLoc NameLoc, 865 Operands->push_back(VEOperand::CreateToken(Name, NameLoc)); 867 SMLoc CondLoc = SMLoc::getFromPointer(NameLoc.getPointer() + Prefix); 868 SMLoc SuffixLoc = SMLoc::getFromPointer(NameLoc.getPointer() + Suffix); 874 Operands->push_back(VEOperand::CreateToken(Name, NameLoc)); 879 static StringRef parseRD(StringRef Name, unsigned Prefix, SMLoc NameLoc, 889 Operands->push_back(VEOperand::CreateToken(Name, NameLoc)); 891 SMLoc::getFromPointer(NameLoc.getPointer() + (RD.data() - Name.data())) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/AsmParser/ |
| MSP430AsmParser.cpp | 52 SMLoc NameLoc, OperandVector &Operands) override; 61 SMLoc NameLoc, OperandVector &Operands); 328 StringRef Name, SMLoc NameLoc, 352 return Error(NameLoc, "unknown instruction"); 355 Operands.push_back(MSP430Operand::CreateToken("jmp", NameLoc)); 357 Operands.push_back(MSP430Operand::CreateToken("j", NameLoc)); 390 StringRef Name, SMLoc NameLoc, 396 if (!parseJccInstruction(Info, Name, NameLoc, Operands)) 400 Operands.push_back(MSP430Operand::CreateToken(Name, NameLoc));
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/AsmParser/ |
| BPFAsmParser.cpp | 46 SMLoc NameLoc, OperandVector &Operands) override; 463 SMLoc NameLoc, OperandVector &Operands) { 468 SMLoc E = SMLoc::getFromPointer(NameLoc.getPointer() - 1); 469 Operands.push_back(BPFOperand::createReg(RegNo, NameLoc, E)); 471 Operands.push_back(BPFOperand::createToken(Name, NameLoc)); 473 return Error(NameLoc, "invalid register/token name");
|
| /src/external/apache2/llvm/dist/clang/lib/Parse/ |
| ParseInit.cpp | 174 SourceLocation NameLoc = ConsumeToken(); // Eat the identifier. 179 Diag(NameLoc, diag::ext_gnu_old_style_field_designator) 180 << FixItHint::CreateReplacement(SourceRange(NameLoc, ColonLoc), 184 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
|
| ParseOpenMP.cpp | 848 SourceLocation NameLoc, 851 auto Res = Seen.try_emplace(Name, NameLoc); 857 P.Diag(NameLoc, diag::warn_omp_declare_variant_ctx_mutiple_use) 871 SourceLocation NameLoc = Tok.getLocation(); 882 if (checkForDuplicates(*this, Name, NameLoc, Seen, CONTEXT_TRAIT_LVL)) 889 Diag(NameLoc, diag::warn_omp_declare_variant_ctx_not_a_property) 895 Diag(NameLoc, diag::note_omp_declare_variant_ctx_is_a) 897 Diag(NameLoc, diag::note_omp_declare_variant_ctx_try) 904 Diag(NameLoc, diag::note_omp_declare_variant_ctx_is_a) 911 Diag(NameLoc, diag::note_omp_declare_variant_ctx_try [all...] |
| ParseTemplate.cpp | 798 SourceLocation NameLoc = Tok.getLocation(); 815 DiagnoseMisplacedEllipsis(EllipsisLoc, NameLoc, AlreadyHasEllipsis, true); 829 KeyLoc, ParamName, NameLoc, 907 SourceLocation NameLoc = Tok.getLocation(); 924 DiagnoseMisplacedEllipsis(EllipsisLoc, NameLoc, AlreadyHasEllipsis, true); 949 ParamName, NameLoc, Depth,
|
| Parser.cpp | 1644 SourceLocation NameLoc = Tok.getLocation(); 1663 getCurScope(), SS, Name, NameLoc, Next, SS.isEmpty() ? CCC : nullptr); 1675 Actions.ClassifyName(getCurScope(), SS, Name, NameLoc, FakeNext, 1703 SourceLocation BeginLoc = NameLoc; 1737 Tok.setAnnotationEndLoc(NameLoc); 1751 Tok.setLocation(NameLoc); 1752 Tok.setAnnotationEndLoc(NameLoc); 1764 Tok.setLocation(NameLoc); 1765 Tok.setAnnotationEndLoc(NameLoc); 1785 Id.setIdentifier(Name, NameLoc); [all...] |
| ParseDeclCXX.cpp | 1591 SourceLocation NameLoc, 1594 Diag(NameLoc, diag::err_explicit_spec_non_template) 1622 SourceLocation NameLoc; 1626 NameLoc = ConsumeToken(); 1641 Name, NameLoc, SourceRange(LAngleLoc, RAngleLoc), false); 1645 NameLoc = ConsumeAnnotationToken(); 1650 getCurScope(), TemplateId->Template, TemplateId->Kind, NameLoc, Name); 1653 Name, NameLoc, 1663 SourceRange Range(NameLoc); 1925 TagType, StartLoc, SS, Name, NameLoc, attrs) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/ |
| WebAssemblyAsmParser.cpp | 447 void addBlockTypeOperand(OperandVector &Operands, SMLoc NameLoc, 450 WebAssemblyOperand::Integer, NameLoc, NameLoc, 513 SMLoc NameLoc, OperandVector &Operands) override { 515 // use NameLoc instead. 516 Name = StringRef(NameLoc.getPointer(), Name.size()); 540 WebAssemblyOperand::Token, NameLoc, SMLoc::getFromPointer(Name.end()), 641 addBlockTypeOperand(Operands, NameLoc, BT); 716 addBlockTypeOperand(Operands, NameLoc, WebAssembly::BlockType::Void);
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| DeclarationName.cpp | 508 return NameLoc; 522 return NameLoc; 529 return NameLoc;
|
| ExprCXX.cpp | 1583 SourceLocation NameLoc, const TemplateArgument &ArgPack) 1586 NumArguments(ArgPack.pack_size()), NameLoc(NameLoc) { 1596 SourceLocation NameLoc, 1600 ParamPack(ParamPack), NameLoc(NameLoc), NumParameters(NumParams) { 1610 VarDecl *ParamPack, SourceLocation NameLoc, 1613 FunctionParmPackExpr(T, ParamPack, NameLoc, Params.size(), Params.data());
|
| /src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| PPCallbacks.h | 245 virtual void PragmaOpenCLExtension(SourceLocation NameLoc, 496 void PragmaOpenCLExtension(SourceLocation NameLoc, const IdentifierInfo *Name, 498 First->PragmaOpenCLExtension(NameLoc, Name, StateLoc, State); 499 Second->PragmaOpenCLExtension(NameLoc, Name, StateLoc, State);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/ |
| X86AsmParser.cpp | 1261 SMLoc NameLoc, OperandVector &Operands) override; 3022 SMLoc NameLoc, OperandVector &Operands) { 3054 return Error(NameLoc, "unknown prefix"); 3056 NameLoc = Parser.getTok().getLoc(); 3085 NameLoc = Parser.getTok().getLoc(); 3110 NameLoc.getFromPointer(NameLoc.getPointer() + Name.size()); 3318 return Error(NameLoc, "redundant data16 prefix"); 3322 return Error(NameLoc, "redundant data32 prefix"); 3324 return Error(NameLoc, "'data32' is not supported in 64-bit mode") [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaDecl.cpp | 182 SourceLocation NameLoc, 220 switch (lookupUnqualifiedTypeNameInBase(S, II, NameLoc, BaseRD)) { 238 SourceLocation NameLoc) { 250 FoundTypeDecl = lookupUnqualifiedTypeNameInBase(S, II, NameLoc, RD); 258 S.Diag(NameLoc, diag::ext_found_in_dependent_base) << &II; 266 SS.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 270 DepTL.setNameLoc(NameLoc); 284 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc, 323 return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get(); 327 II, NameLoc); [all...] |
| SemaTemplateVariadic.cpp | 1002 /// \param NameLoc The source location of the name of the parameter pack. 1007 SourceLocation NameLoc, 1011 LookupResult R(*this, &Name, NameLoc, LookupOrdinaryName); 1043 Diag(NameLoc, diag::err_sizeof_pack_no_pack_name) 1050 return SizeOfPackExpr::Create(Context, OpLoc, ParameterPack, NameLoc,
|
| SemaTemplate.cpp | 313 SourceLocation NameLoc, 321 LookupResult R(*this, DeclarationName(&Name), NameLoc, LookupOrdinaryName); 1612 SourceLocation NameLoc, 1624 NameLoc.isInvalid()? TmpLoc : NameLoc, 1636 maybeDiagnoseTemplateParameterShadow(*this, S, NameLoc, Name); 1715 CXXScopeSpec &SS, IdentifierInfo *Name, SourceLocation NameLoc, 1742 LookupResult Previous(*this, Name, NameLoc, 1752 Diag(NameLoc, TUK == TUK_Friend 1770 diagnoseQualifiedDeclaration(SS, SemanticContext, Name, NameLoc, false) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/AsmParser/ |
| CSKYAsmParser.cpp | 48 SMLoc NameLoc, OperandVector &Operands) override; 600 SMLoc NameLoc, OperandVector &Operands) { 602 Operands.push_back(CSKYOperand::createToken(Name, NameLoc));
|
| /src/external/apache2/llvm/dist/llvm/lib/AsmParser/ |
| LLParser.cpp | 516 LocTy NameLoc = Lex.getLoc(); 524 if (parseStructDefinition(NameLoc, Name, NamedTypes[Name], Result)) 530 return error(NameLoc, "non-struct types may not be recursive"); 612 LocTy NameLoc = Lex.getLoc(); 636 return parseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility, 639 return parseIndirectSymbol(Name, NameLoc, Linkage, Visibility, 650 LocTy NameLoc = Lex.getLoc(); 666 return parseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility, 669 return parseIndirectSymbol(Name, NameLoc, Linkage, Visibility, 676 LocTy NameLoc = Lex.getLoc() [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/ |
| MCTargetAsmParser.h | 395 /// \param NameLoc - The source location of the name. 400 SMLoc NameLoc, OperandVector &Operands) = 0;
|