HomeSort by: relevance | last modified time | path
    Searched defs:endLoc (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/
CodeRegion.h 73 llvm::SMLoc endLoc() const { return RangeEnd; }
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransformActions.cpp 68 SourceLocation beginLoc = range.getBegin(), endLoc = range.getEnd();
69 assert(beginLoc.isValid() && endLoc.isValid());
72 End = FullSourceLoc(getLocForEndOfToken(endLoc, srcMgr, PP), srcMgr);
75 End = FullSourceLoc(srcMgr.getExpansionLoc(endLoc), srcMgr);
  /src/external/apache2/llvm/dist/clang/lib/Parse/
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,
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPDirectives.cpp 459 SourceLocation endLoc;
566 endLoc = CheckEndOfDirective("endif");
593 endLoc = CheckEndOfDirective("else");
652 SourceRange(HashTokenLoc, endLoc.isValid()
653 ? endLoc
1721 SourceLocation EndLoc =
1725 EndLoc, LookupFrom, LookupFromFile);
1731 EnterAnnotationToken(SourceRange(HashLoc, EndLoc),
1735 EnterAnnotationToken(SourceRange(HashLoc, EndLoc),
1872 /// \param EndLoc The location at which any imported macros become visible
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 1160 SourceLocation endLoc =
1162 SourceRange ReadonlySourceRange(readonlyLoc, endLoc);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 299 inline LineColPair endLoc() const { return LineColPair(LineEnd, ColumnEnd); }
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 1078 SMLoc EndLoc);
1079 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc,
1116 SMLoc EndLoc, OperandVector &Operands);
1254 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
1256 SMLoc &EndLoc) override;
1258 bool parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) override;
1364 SMLoc StartLoc, SMLoc EndLoc) {
1391 SMRange(StartLoc, EndLoc));
1458 return Error(StartLoc, "invalid register name", SMRange(StartLoc, EndLoc));
1464 SMLoc &EndLoc, bool RestoreOnFailure)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 1595 // EndLoc is filled with the location of the last token of the simple-asm.
1596 ExprResult ParseSimpleAsm(bool ForAsmLabel, SourceLocation *EndLoc);
1664 SourceLocation &endLoc);
1935 // EndLoc is filled with the location of the last token of the specification.
2642 ParsedAttributes &Attrs, SourceLocation *EndLoc,
2705 SourceLocation endLoc;
2706 ParseGNUAttributes(attrs, &endLoc, LateAttrs, &D);
2707 D.takeAttributes(attrs, endLoc);
2717 SourceLocation *EndLoc = nullptr,
2721 ParseGNUAttributes(Attrs, EndLoc, LateAttrs)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 415 SourceLocation EndLoc=SourceLocation());
425 SourceLocation EndLoc=SourceLocation());
2058 SourceLocation endLoc = S->getEndLoc();
2059 const char *endBuf = SM->getCharacterData(endLoc);
2098 SourceLocation EndLoc) {
2115 VK_RValue, EndLoc, FPOptionsOverride());
2169 SourceLocation Loc, EndLoc;
2173 EndLoc = ECE->getRParenLoc();
2176 EndLoc = E->getEndLoc();
2179 if (Loc.isInvalid() || EndLoc.isInvalid()
    [all...]
RewriteObjC.cpp 352 SourceLocation EndLoc=SourceLocation());
361 SourceLocation EndLoc=SourceLocation());
1665 SourceLocation endLoc = S->getSynchBody()->getBeginLoc();
1666 const char *endBuf = SM->getCharacterData(endLoc);
1919 SourceLocation endLoc = body->getEndLoc();
1922 assert(*SM->getCharacterData(endLoc) == '}' &&
1927 endLoc = endLoc.getLocWithOffset(-1);
1928 InsertText(endLoc, " if (_rethrow) objc_exception_throw(_rethrow);\n");
2015 SourceLocation EndLoc) {
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/c-index-test/
c-index-test.c 4154 CXSourceLocation startLoc, endLoc;
4226 endLoc = clang_getLocation(TU, file, second_line, second_column);
4227 if (clang_equalLocations(clang_getNullLocation(), endLoc)) {
4234 range = clang_getRange(startLoc, endLoc);

Completed in 91 milliseconds