/external/skia/include/core/ |
H A D | SkDeque.h | 77 Iter(const SkDeque& d, IterStart startLoc); 81 void reset(const SkDeque& d, IterStart startLoc);
|
H A D | SkClipStack.h | 374 Iter(const SkClipStack& stack, IterStart startLoc); 392 void reset(const SkClipStack& stack, IterStart startLoc);
|
/external/llvm/lib/MC/MCParser/ |
H A D | COFFAsmParser.cpp | 622 SMLoc startLoc = getLexer().getLoc(); local 627 return Error(startLoc, "offset is not a multiple of 16"); 639 SMLoc startLoc = getLexer().getLoc(); local 644 return Error(startLoc, "size is not a multiple of 8"); 663 SMLoc startLoc = getLexer().getLoc(); local 668 return Error(startLoc, "size is not a multiple of 8"); 690 SMLoc startLoc = getLexer().getLoc(); local 698 return Error(startLoc, "offset is not a multiple of 16"); 710 SMLoc startLoc = getLexer().getLoc(); local 714 return Error(startLoc, "expecte 751 SMLoc startLoc = getLexer().getLoc(); local [all...] |
/external/clang/lib/Frontend/Rewrite/ |
H A D | RewriteObjC.cpp | 771 SourceLocation startLoc = PID->getLocStart(); local 772 InsertText(startLoc, "// "); 773 const char *startBuf = SM->getCharacterData(startLoc); 778 startLoc.getLocWithOffset(semiBuf-startBuf+1); 903 SourceLocation startLoc = ClassDecl->getLocStart(); local 904 const char *startBuf = SM->getCharacterData(startLoc); 907 ReplaceText(startLoc, semiPtr-startBuf+1, typedefString); 1413 SourceLocation startLoc = S->getLocStart(); local 1416 ReplaceText(startLoc, strlen("break"), buf); 1430 SourceLocation startLoc local 1478 SourceLocation startLoc = S->getLocStart(); local 1642 SourceLocation startLoc = S->getLocStart(); local 1745 SourceLocation startLoc = S->getLocStart(); local 1768 SourceLocation startLoc = S->getLocStart(); local 1788 SourceLocation startLoc = S->getLocStart(); local 1913 SourceLocation startLoc = body->getLocStart(); local 1956 SourceLocation startLoc = S->getLocStart(); local 2206 SourceLocation startLoc; local 4289 SourceLocation startLoc; local [all...] |
H A D | RewriteModernObjC.cpp | 934 SourceLocation startLoc = PID->getLocStart(); local 935 InsertText(startLoc, "// "); 936 const char *startBuf = SM->getCharacterData(startLoc); 940 startGetterSetterLoc = startLoc.getLocWithOffset(semiBuf-startBuf+1); 1071 SourceLocation startLoc = ClassDecl->getLocStart(); local 1072 const char *startBuf = SM->getCharacterData(startLoc); 1075 ReplaceText(startLoc, semiPtr-startBuf+1, typedefString); 1633 SourceLocation startLoc = S->getLocStart(); local 1636 ReplaceText(startLoc, strlen("break"), buf); 1663 SourceLocation startLoc local 1711 SourceLocation startLoc = S->getLocStart(); local 1885 SourceLocation startLoc = S->getLocStart(); local 1947 SourceLocation startLoc = S->getAtLoc(); local 1970 SourceLocation startLoc = S->getLocStart(); local 2061 SourceLocation startLoc = S->getLocStart(); local 2318 SourceLocation startLoc; local 5225 SourceLocation startLoc; local [all...] |
/external/llvm/lib/ProfileData/ |
H A D | CoverageMapping.cpp | 263 auto &Functions = InstantiatedFunctions[I->startLoc()]; 326 ActiveRegions.back()->endLoc() <= Region.startLoc()) 328 if (PrevRegion && PrevRegion->startLoc() == Region.startLoc() && 397 if (LHS.startLoc() == RHS.startLoc()) 400 return LHS.startLoc() < RHS.startLoc();
|
/external/llvm/tools/llvm-cov/ |
H A D | SourceCoverageView.h | 47 return LHS.Region.startLoc() < RHS.Region.startLoc();
|
/external/skia/src/core/ |
H A D | SkDeque.cpp | 243 SkDeque::Iter::Iter(const SkDeque& d, IterStart startLoc) { argument 244 this->reset(d, startLoc); 290 void SkDeque::Iter::reset(const SkDeque& d, IterStart startLoc) { argument 293 if (kFront_IterStart == startLoc) {
|
H A D | SkTInternalLList.h | 188 T* init(const SkTInternalLList& list, IterStart startLoc) { argument 189 if (kHead_IterStart == startLoc) { 192 SkASSERT(kTail_IterStart == startLoc);
|
H A D | SkClipStack.cpp | 756 SkClipStack::Iter::Iter(const SkClipStack& stack, IterStart startLoc) argument 758 this->reset(stack, startLoc); 808 void SkClipStack::Iter::reset(const SkClipStack& stack, IterStart startLoc) { argument 810 fIter.reset(stack.fDeque, static_cast<SkDeque::Iter::IterStart>(startLoc));
|
/external/llvm/include/llvm/ProfileData/ |
H A D | CoverageMapping.h | 198 inline std::pair<unsigned, unsigned> startLoc() const { function in struct:llvm::coverage::CounterMappingRegion 209 return startLoc() < Other.startLoc(); 215 if (startLoc() > Other.startLoc())
|
/external/clang/tools/libclang/ |
H A D | CXLoadedDiagnostic.cpp | 305 CXSourceLocation startLoc = makeLocation(Start); 307 SR = clang_getRange(startLoc, endLoc);
|
/external/llvm/unittests/ProfileData/ |
H A D | CoverageMappingTest.cpp | 171 ASSERT_EQ(InputCMRs[I].startLoc(), OutputCMRs[I].startLoc());
|
/external/llvm/lib/Target/X86/Disassembler/ |
H A D | X86DisassemblerDecoder.cpp | 1869 * @param startLoc - The address (in the reader's address space) of the first 1879 uint64_t startLoc, DisassemblerMode mode) { 1886 insn->startLocation = startLoc; 1887 insn->readerCursor = startLoc; 1903 startLoc, insn->readerCursor, insn->length); 1876 decodeInstruction( struct InternalInstruction *insn, byteReader_t reader, const void *readerArg, dlog_t logger, void *loggerArg, const void *miiArg, uint64_t startLoc, DisassemblerMode mode) argument
|
H A D | X86DisassemblerDecoder.h | 651 /// \param startLoc The address (in the reader's address space) of the first 661 uint64_t startLoc,
|
/external/clang/lib/AST/ |
H A D | DeclObjC.cpp | 1298 SourceLocation startLoc = VarianceLoc; local 1299 if (startLoc.isInvalid()) 1300 startLoc = getLocation(); 1303 return SourceRange(startLoc, 1307 return SourceRange(startLoc);
|
/external/llvm/lib/Target/SystemZ/AsmParser/ |
H A D | SystemZAsmParser.cpp | 131 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) argument 132 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {}
|
/external/clang/tools/c-index-test/ |
H A D | c-index-test.c | 3436 CXSourceLocation startLoc, endLoc; local 3500 startLoc = clang_getLocation(TU, file, line, column); 3501 if (clang_equalLocations(clang_getNullLocation(), startLoc)) { 3516 range = clang_getRange(startLoc, endLoc);
|
/external/clang/include/clang/AST/ |
H A D | Stmt.h | 436 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, argument 438 StartLoc(startLoc), EndLoc(endLoc) {}
|
/external/clang/lib/Sema/ |
H A D | SemaObjCProperty.cpp | 1963 SourceLocation startLoc = local 1967 << FixItHint::CreateInsertion(startLoc, "(nonatomic) ");
|