| /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/ |
| CodeRegion.cpp | 36 if (Regions.size() == 1 && !Regions[0]->startLoc().isValid() && 49 SM.PrintMessage(R.startLoc(), SourceMgr::DK_Note, 57 SM.PrintMessage(R.startLoc(), SourceMgr::DK_Note, 83 !Regions[0]->startLoc().isValid() && !Regions[0]->endLoc().isValid()) {
|
| CodeRegion.h | 72 llvm::SMLoc startLoc() const { return RangeStart; }
|
| llvm-mca.cpp | 490 if (Region->startLoc().isValid() || Region->endLoc().isValid()) {
|
| /src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/ |
| CoverageMappingWriter.cpp | 159 return CMR.startLoc() <= CMR.endLoc(); 169 if (LHS.startLoc() != RHS.startLoc()) 170 return LHS.startLoc() < RHS.startLoc();
|
| CoverageMapping.cpp | 405 auto &Functions = InstantiatedFunctions[I->startLoc()]; 419 /// Emit a segment with the count from \p Region starting at \p StartLoc. 423 void startSegment(const CountedRegion &Region, LineColPair StartLoc, 437 Segments.emplace_back(StartLoc.first, StartLoc.second, 441 Segments.emplace_back(StartLoc.first, StartLoc.second, IsRegionEntry); 513 auto CurStartLoc = CR.value().startLoc(); 545 CurStartLoc != Regions[CR.index() + 1].startLoc()) { 563 if (LHS.startLoc() != RHS.startLoc() [all...] |
| CoverageMappingReader.cpp | 342 if (CMR.startLoc() > CMR.endLoc())
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
| RewriteObjC.cpp | 351 SourceLocation StartLoc=SourceLocation(), 360 SourceLocation StartLoc=SourceLocation(), 683 SourceLocation StartLoc = IFace->getBeginLoc(); 687 StartLoc == (*DI)->getBeginLoc()) 702 SourceLocation StartLoc = Proto->getBeginLoc(); 706 StartLoc == (*DI)->getBeginLoc()) 772 SourceLocation startLoc = PID->getBeginLoc(); 773 InsertText(startLoc, "// "); 774 const char *startBuf = SM->getCharacterData(startLoc); 779 startLoc.getLocWithOffset(semiBuf-startBuf+1) [all...] |
| RewriteModernObjC.cpp | 414 SourceLocation StartLoc=SourceLocation(), 424 SourceLocation StartLoc=SourceLocation(), 751 SourceLocation StartLoc = IFace->getBeginLoc(); 755 StartLoc == (*DI)->getBeginLoc()) 776 SourceLocation StartLoc = Proto->getBeginLoc(); 780 StartLoc == (*DI)->getBeginLoc()) 925 SourceLocation startLoc = PID->getBeginLoc(); 926 InsertText(startLoc, "// "); 927 const char *startBuf = SM->getCharacterData(startLoc); 931 startGetterSetterLoc = startLoc.getLocWithOffset(semiBuf-startBuf+1) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
| SourceCoverageView.h | 50 return LHS.Region.startLoc() < RHS.Region.startLoc();
|
| /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
| COFFAsmParser.cpp | 707 SMLoc startLoc = getLexer().getLoc(); 710 return Error(startLoc, "expected @unwind or @except"); 716 return Error(startLoc, "expected @unwind or @except");
|
| /src/external/apache2/llvm/dist/clang/tools/libclang/ |
| CXLoadedDiagnostic.cpp | 302 CXSourceLocation startLoc = makeLocation(Start); 304 SR = clang_getRange(startLoc, endLoc);
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| DeclObjC.cpp | 1447 SourceLocation startLoc = VarianceLoc; 1448 if (startLoc.isInvalid()) 1449 startLoc = getLocation(); 1452 return SourceRange(startLoc, 1456 return SourceRange(startLoc); 1784 SourceLocation StartLoc, 1815 return new (C, DC) ObjCIvarDecl(DC, StartLoc, IdLoc, Id, T, TInfo, ac, BW, 1862 SourceLocation StartLoc, SourceLocation IdLoc, 1864 return new (C, DC) ObjCAtDefsFieldDecl(DC, StartLoc, IdLoc, Id, T, BW);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/ |
| X86AsmParser.cpp | 1077 bool MatchRegisterByName(unsigned &RegNo, StringRef RegName, SMLoc StartLoc, 1079 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc, 1115 bool ParseMemOperand(unsigned SegReg, const MCExpr *Disp, SMLoc StartLoc, 1192 bool ParseZ(std::unique_ptr<X86Operand> &Z, const SMLoc &StartLoc); 1254 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override; 1255 OperandMatchResultTy tryParseRegister(unsigned &RegNo, SMLoc &StartLoc, 1364 SMLoc StartLoc, SMLoc EndLoc) { 1389 return Error(StartLoc, 1391 SMRange(StartLoc, EndLoc)); 1458 return Error(StartLoc, "invalid register name", SMRange(StartLoc, EndLoc)) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/AsmParser/ |
| SystemZAsmParser.cpp | 88 SMLoc StartLoc, EndLoc; 152 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) 153 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {} 156 static std::unique_ptr<SystemZOperand> createInvalid(SMLoc StartLoc, 158 return std::make_unique<SystemZOperand>(KindInvalid, StartLoc, EndLoc); 169 createReg(RegisterKind Kind, unsigned Num, SMLoc StartLoc, SMLoc EndLoc) { 170 auto Op = std::make_unique<SystemZOperand>(KindReg, StartLoc, EndLoc); 177 createImm(const MCExpr *Expr, SMLoc StartLoc, SMLoc EndLoc) { 178 auto Op = std::make_unique<SystemZOperand>(KindImm, StartLoc, EndLoc) [all...] |
| /src/external/apache2/llvm/dist/clang/tools/c-index-test/ |
| c-index-test.c | 4154 CXSourceLocation startLoc, endLoc; 4218 startLoc = clang_getLocation(TU, file, line, column); 4219 if (clang_equalLocations(clang_getNullLocation(), startLoc)) { 4234 range = clang_getRange(startLoc, endLoc);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/Coverage/ |
| CoverageMapping.h | 295 inline LineColPair startLoc() const {
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| lexer.d | 238 Loc startLoc; 572 startLoc = loc(); 616 t.loc = startLoc; 623 getDocComment(t, lastLine == startLoc.linnum, startLoc.linnum - lastDocLine > 1); 628 startLoc = loc(); 645 t.loc = startLoc; 651 getDocComment(t, lastLine == startLoc.linnum, startLoc.linnum - lastDocLine > 1); 677 t.loc = startLoc; [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| Stmt.h | 1293 SourceLocation StartLoc, EndLoc; 1296 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, SourceLocation endLoc) 1297 : Stmt(DeclStmtClass), DG(dg), StartLoc(startLoc), EndLoc(endLoc) {} 1313 void setStartLoc(SourceLocation L) { StartLoc = L; } 1317 SourceLocation getBeginLoc() const LLVM_READONLY { return StartLoc; }
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaObjCProperty.cpp | 2248 SourceLocation startLoc = 2252 << FixItHint::CreateInsertion(startLoc, "(nonatomic) ");
|