HomeSort by: relevance | last modified time | path
    Searched defs:EndLoc (Results 1 - 25 of 61) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Availability.h 39 SourceLocation BeginLoc, EndLoc;
43 SourceLocation BeginLoc, SourceLocation EndLoc)
45 EndLoc(EndLoc) {}
49 : BeginLoc(StarLoc), EndLoc(StarLoc) {}
54 SourceLocation getEndLoc() const { return EndLoc; }
DeclarationName.h 737 SourceLocation EndLoc) {
738 return makeCXXOperatorNameLoc(SourceRange(BeginLoc, EndLoc));
868 SourceLocation EndLoc = getEndLocPrivate();
869 return EndLoc.isValid() ? EndLoc : getBeginLoc();
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
RangeSelector.cpp 101 SourceLocation EndLoc =
103 return findPreviousTokenKind(EndLoc, SM, LangOpts, tok::TokenKind::l_paren);
  /src/external/apache2/llvm/dist/clang/lib/Format/
NamespaceEndCommentsFixer.cpp 146 auto EndLoc = RBraceTok->Tok.getEndLoc();
147 auto Range = CharSourceRange::getCharRange(EndLoc, EndLoc);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRFinder.cpp 87 SourceLocation EndLoc = CurrDecl->getEndLoc();
88 if (StartLoc.isValid() && EndLoc.isValid() &&
90 SM.isBeforeInTranslationUnit(EndLoc, Point))
USRLocFinder.cpp 90 const SourceLocation EndLoc = Lexer::getLocForEndOfToken(
93 Lexer::getSourceText(CharSourceRange::getTokenRange(BeginLoc, EndLoc),
201 auto EndLoc = StartLoc;
204 EndLoc,
218 auto EndLoc = Expr->getMemberLoc();
220 RenameInfos.push_back({StartLoc, EndLoc,
235 auto EndLoc = D.getFieldLoc();
236 RenameInfos.push_back({StartLoc, EndLoc,
279 SourceLocation EndLoc = Expr->hasExplicitTemplateArgs()
288 RenameInfos.push_back({EndLoc, EndLoc
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGLoopInfo.h 91 const llvm::DebugLoc &StartLoc, const llvm::DebugLoc &EndLoc,
122 llvm::DebugLoc EndLoc;
207 const llvm::DebugLoc &EndLoc);
214 const llvm::DebugLoc &EndLoc, bool MustProgress = false);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PreprocessingRecord.cpp 494 SourceLocation EndLoc;
496 EndLoc = FilenameRange.getBegin();
498 EndLoc = FilenameRange.getEnd();
500 EndLoc = EndLoc.getLocWithOffset(-1); // the InclusionDirective expects
506 SourceRange(HashLoc, EndLoc));
PPMacroExpansion.cpp 1010 SourceLocation EndLoc = Tok.getLocation();
1013 Tok.setLocation(EndLoc);
TokenLexer.cpp 893 SourceLocation EndLoc = TokenStream[CurIdx - 1].getLocation();
903 if (EndLoc.isFileID())
904 EndLoc = getExpansionLocForMacroDefLoc(EndLoc);
908 while (SM.getFileID(EndLoc) != MacroFID)
909 EndLoc = SM.getImmediateExpansionRange(EndLoc).getEnd();
911 LHSTok.setLocation(SM.createExpansionLoc(LHSTok.getLocation(), StartLoc, EndLoc,
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExprCXX.cpp 216 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
223 AnnotateExistingDecltypeSpecifier(DS, DeclLoc, EndLoc);
2939 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
2942 Result.setDestructorName(TildeLoc, Type, EndLoc);
3734 SourceLocation EndLoc = Parens.getCloseLocation();
3737 Diag(EndLoc, diag::err_type_trait_arity)
3743 Diag(EndLoc, diag::err_type_trait_arity)
3748 return Actions.ActOnTypeTrait(TypeTraitFromTokKind(Kind), Loc, Args, EndLoc);
ParseCXXInlineMethods.cpp 645 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
646 if (!EndLoc.isValid())
647 EndLoc = Tok.getLocation();
649 Diag(EndLoc, diag::err_expected_semi_decl_list);
708 SourceLocation endLoc;
731 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
740 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc,
Parser.cpp 89 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
90 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
99 << FixItHint::CreateInsertion(EndLoc, ")");
137 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
139 if (EndLoc.isValid())
144 ? Diag(EndLoc, DiagID) << FixItHint::CreateInsertion(EndLoc, Spelling)
183 SourceLocation EndLoc = Tok.getLocation();
188 EndLoc = Tok.getLocation();
197 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/AsmParser/
BPFAsmParser.cpp 41 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
43 SMLoc &EndLoc) override;
97 SMLoc StartLoc, EndLoc;
110 EndLoc = o.EndLoc;
146 SMLoc getEndLoc() const override { return EndLoc; }
202 Op->EndLoc = S;
211 Op->EndLoc = E;
220 Op->EndLoc = E;
326 SMLoc &EndLoc) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
DiagnosticRenderer.cpp 478 SourceLocation BegLoc = Range.getBegin(), EndLoc = Range.getEnd();
479 while (BegLoc != EndLoc) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/AsmParser/
CSKYAsmParser.cpp 45 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
53 SMLoc &EndLoc) override;
98 SMLoc StartLoc, EndLoc;
111 EndLoc = o.EndLoc;
194 SMLoc getEndLoc() const override { return EndLoc; }
229 Op->EndLoc = S;
238 Op->EndLoc = E;
247 Op->EndLoc = E;
396 SMLoc &EndLoc) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/AsmParser/
MSP430AsmParser.cpp 47 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
49 SMLoc &EndLoc) override;
291 SMLoc &EndLoc) {
292 switch (tryParseRegister(RegNo, StartLoc, EndLoc)) {
306 SMLoc &EndLoc) {
318 EndLoc = T.getEndLoc();
457 SMLoc StartLoc, EndLoc;
458 if (!ParseRegister(RegNo, StartLoc, EndLoc)) {
459 Operands.push_back(MSP430Operand::CreateReg(RegNo, StartLoc, EndLoc));
472 SMLoc EndLoc = getParser().getTok().getLoc()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 781 SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo,
788 DeclEndLoc(endLoc) {
811 ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
818 beginLoc, endLoc, SelInfo, T, ReturnTInfo, contextDecl, isInstance,
2328 SourceLocation EndLoc = getLocation();
2330 EndLoc = IvarLoc;
2332 return SourceRange(AtLoc, EndLoc);
Stmt.cpp 714 // (BeginLoc, EndLoc) represents the range of the operand we are currently
719 SourceLocation EndLoc = getAsmString()->getLocationOfByte(
723 Pieces.emplace_back(N, std::move(Str), BeginLoc, EndLoc);
750 // (BeginLoc, EndLoc) represents the range of the operand we are currently
755 SourceLocation EndLoc = getAsmString()->getLocationOfByte(
759 Pieces.emplace_back(N, std::move(Str), BeginLoc, EndLoc);
865 SourceLocation endloc)
868 EndLoc(endloc), NumAsmToks(asmtoks.size()) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaInit.cpp 1092 SourceLocation EndLoc
1094 StructuredSubobjectInitList->setRBraceLoc(EndLoc);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/AsmParser/
LanaiAsmParser.cpp 69 bool ParseRegister(unsigned &RegNum, SMLoc &StartLoc, SMLoc &EndLoc) override;
71 SMLoc &EndLoc) override;
115 SMLoc StartLoc, EndLoc;
154 SMLoc getEndLoc() const override { return EndLoc; }
590 Op->EndLoc = Start;
599 Op->EndLoc = End;
608 Op->EndLoc = End;
720 SMLoc &EndLoc) {
723 EndLoc = Tok.getEndLoc();
732 SMLoc &EndLoc) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/AsmParser/
RISCVAsmParser.cpp 86 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
88 SMLoc &EndLoc) override;
289 SMLoc StartLoc, EndLoc;
305 EndLoc = o.EndLoc;
702 SMLoc getEndLoc() const override { return EndLoc; }
765 Op->EndLoc = S;
775 Op->EndLoc = E;
785 Op->EndLoc = E;
1201 SMLoc &EndLoc) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 70 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
72 SMLoc &EndLoc) override;
106 bool matchSparcAsmModifiers(const MCExpr *&EVal, SMLoc &EndLoc);
230 SMLoc StartLoc, EndLoc;
353 return EndLoc;
434 Op->EndLoc = S;
444 Op->EndLoc = E;
453 Op->EndLoc = E;
540 Op->EndLoc = E;
683 SMLoc &EndLoc) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 49 SMLoc StartLoc, EndLoc;
80 : Kind(K), StartLoc(Start), EndLoc(End), Tok(T) {}
82 : Kind(K), StartLoc(Start), EndLoc(End), Int(I) {}
84 : Kind(K), StartLoc(Start), EndLoc(End), Flt(F) {}
86 : Kind(K), StartLoc(Start), EndLoc(End), Sym(S) {}
88 : Kind(K), StartLoc(Start), EndLoc(End), BrL() {}
113 SMLoc getEndLoc() const override { return EndLoc; }
255 SMLoc & /*EndLoc*/) override {
260 SMLoc & /*EndLoc*/) override {
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
X86Operand.h 32 SMLoc StartLoc, EndLoc;
81 : Kind(K), StartLoc(Start), EndLoc(End), CallOperand(false) {}
90 SMLoc getEndLoc() const override { return EndLoc; }
94 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
616 SMLoc EndLoc = SMLoc::getFromPointer(Loc.getPointer() + Str.size());
617 auto Res = std::make_unique<X86Operand>(Token, Loc, EndLoc);
624 CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc,
627 auto Res = std::make_unique<X86Operand>(Register, StartLoc, EndLoc);
637 CreateDXReg(SMLoc StartLoc, SMLoc EndLoc) {
638 return std::make_unique<X86Operand>(DXRegister, StartLoc, EndLoc);
    [all...]

Completed in 104 milliseconds

1 2 3