HomeSort by relevance Sort by last modified time
    Searched refs:startLoc (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
COFFAsmParser.cpp 307 SMLoc startLoc = getLexer().getLoc();
312 return Error(startLoc, "offset is not a multiple of 16");
324 SMLoc startLoc = getLexer().getLoc();
329 return Error(startLoc, "size is not a multiple of 8");
348 SMLoc startLoc = getLexer().getLoc();
353 return Error(startLoc, "size is not a multiple of 8");
375 SMLoc startLoc = getLexer().getLoc();
383 return Error(startLoc, "offset is not a multiple of 16");
395 SMLoc startLoc = getLexer().getLoc();
399 return Error(startLoc, "expected @code")
    [all...]
  /external/skia/include/core/
SkDeque.h 77 Iter(const SkDeque& d, IterStart startLoc);
81 void reset(const SkDeque& d, IterStart startLoc);
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 622 SMLoc startLoc = getLexer().getLoc();
627 return Error(startLoc, "offset is not a multiple of 16");
639 SMLoc startLoc = getLexer().getLoc();
644 return Error(startLoc, "size is not a multiple of 8");
663 SMLoc startLoc = getLexer().getLoc();
668 return Error(startLoc, "size is not a multiple of 8");
690 SMLoc startLoc = getLexer().getLoc();
698 return Error(startLoc, "offset is not a multiple of 16");
710 SMLoc startLoc = getLexer().getLoc();
714 return Error(startLoc, "expected @code")
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 351 SourceLocation StartLoc=SourceLocation(),
360 SourceLocation StartLoc=SourceLocation(),
682 SourceLocation StartLoc = IFace->getLocStart();
686 StartLoc == (*DI)->getLocStart())
701 SourceLocation StartLoc = Proto->getLocStart();
705 StartLoc == (*DI)->getLocStart())
771 SourceLocation startLoc = PID->getLocStart();
772 InsertText(startLoc, "// ");
773 const char *startBuf = SM->getCharacterData(startLoc);
778 startLoc.getLocWithOffset(semiBuf-startBuf+1)
    [all...]
RewriteModernObjC.cpp 414 SourceLocation StartLoc=SourceLocation(),
424 SourceLocation StartLoc=SourceLocation(),
747 SourceLocation StartLoc = IFace->getLocStart();
751 StartLoc == (*DI)->getLocStart())
772 SourceLocation StartLoc = Proto->getLocStart();
776 StartLoc == (*DI)->getLocStart())
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/preprocessor/
PpContext.h 442 TokenizableIncludeFile(const TSourceLoc& startLoc,
463 scanner.setLine(startLoc.line);
464 scanner.setString(startLoc.string);
466 scanner.setFile(startLoc.name, 0);
467 scanner.setFile(startLoc.name, 1);
468 scanner.setFile(startLoc.name, 2);
  /external/llvm/lib/ProfileData/Coverage/
CoverageMapping.cpp 270 auto &Functions = InstantiatedFunctions[I->startLoc()];
329 ActiveRegions.back()->endLoc() <= Region.startLoc())
344 if (LHS.startLoc() != RHS.startLoc())
345 return LHS.startLoc() < RHS.startLoc();
371 if (Active->startLoc() != I->startLoc() ||
  /external/skia/src/core/
SkDeque.cpp 242 SkDeque::Iter::Iter(const SkDeque& d, IterStart startLoc) {
243 this->reset(d, startLoc);
289 void SkDeque::Iter::reset(const SkDeque& d, IterStart startLoc) {
292 if (kFront_IterStart == startLoc) {
SkTInternalLList.h 214 T* init(const SkTInternalLList& list, IterStart startLoc) {
215 if (kHead_IterStart == startLoc) {
218 SkASSERT(kTail_IterStart == startLoc);
SkClipStack.h 462 Iter(const SkClipStack& stack, IterStart startLoc);
480 void reset(const SkClipStack& stack, IterStart startLoc);
SkClipStack.cpp 797 SkClipStack::Iter::Iter(const SkClipStack& stack, IterStart startLoc)
799 this->reset(stack, startLoc);
849 void SkClipStack::Iter::reset(const SkClipStack& stack, IterStart startLoc) {
851 fIter.reset(stack.fDeque, static_cast<SkDeque::Iter::IterStart>(startLoc));
    [all...]
  /external/llvm/tools/llvm-cov/
SourceCoverageView.h 47 return LHS.Region.startLoc() < RHS.Region.startLoc();
  /external/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 240 inline std::pair<unsigned, unsigned> startLoc() const {
251 return startLoc() < Other.startLoc();
257 if (startLoc() > Other.startLoc())
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 305 CXSourceLocation startLoc = makeLocation(Start);
307 SR = clang_getRange(startLoc, endLoc);
  /external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.c     [all...]
X86DisassemblerDecoder.h 547 * @param startLoc - The address (in the reader's address space) of the first
557 uint64_t startLoc,
  /external/llvm/unittests/ProfileData/
CoverageMappingTest.cpp 236 ASSERT_EQ(Input.Regions[I].startLoc(), Output.Regions[I].startLoc());
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.cpp     [all...]
X86DisassemblerDecoder.h 658 /// \param startLoc The address (in the reader's address space) of the first
668 uint64_t startLoc,
  /external/clang/lib/AST/
DeclObjC.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 69 SMLoc StartLoc, EndLoc;
131 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc)
132 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {}
135 static std::unique_ptr<SystemZOperand> createInvalid(SMLoc StartLoc,
137 return make_unique<SystemZOperand>(KindInvalid, StartLoc, EndLoc);
146 createReg(RegisterKind Kind, unsigned Num, SMLoc StartLoc, SMLoc EndLoc) {
147 auto Op = make_unique<SystemZOperand>(KindReg, StartLoc, EndLoc);
153 createAccessReg(unsigned Num, SMLoc StartLoc, SMLoc EndLoc) {
154 auto Op = make_unique<SystemZOperand>(KindAccessReg, StartLoc, EndLoc)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 246 inline std::pair<unsigned, unsigned> startLoc() const {
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 246 inline std::pair<unsigned, unsigned> startLoc() const {
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 246 inline std::pair<unsigned, unsigned> startLoc() const {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 246 inline std::pair<unsigned, unsigned> startLoc() const {

Completed in 612 milliseconds

1 2 3