Home
last modified time | relevance | path

Searched refs:startLoc (Results 1 – 25 of 30) sorted by relevance

12

/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
DCOFFAsmParser.cpp307 SMLoc startLoc = getLexer().getLoc(); in ParseSEHDirectiveSetFrame() local
312 return Error(startLoc, "offset is not a multiple of 16"); in ParseSEHDirectiveSetFrame()
324 SMLoc startLoc = getLexer().getLoc(); in ParseSEHDirectiveAllocStack() local
329 return Error(startLoc, "size is not a multiple of 8"); in ParseSEHDirectiveAllocStack()
348 SMLoc startLoc = getLexer().getLoc(); in ParseSEHDirectiveSaveReg() local
353 return Error(startLoc, "size is not a multiple of 8"); in ParseSEHDirectiveSaveReg()
375 SMLoc startLoc = getLexer().getLoc(); in ParseSEHDirectiveSaveXMM() local
383 return Error(startLoc, "offset is not a multiple of 16"); in ParseSEHDirectiveSaveXMM()
395 SMLoc startLoc = getLexer().getLoc(); in ParseSEHDirectivePushFrame() local
399 return Error(startLoc, "expected @code"); in ParseSEHDirectivePushFrame()
[all …]
/external/llvm/lib/MC/MCParser/
DCOFFAsmParser.cpp622 SMLoc startLoc = getLexer().getLoc(); in ParseSEHDirectiveSetFrame() local
627 return Error(startLoc, "offset is not a multiple of 16"); in ParseSEHDirectiveSetFrame()
639 SMLoc startLoc = getLexer().getLoc(); in ParseSEHDirectiveAllocStack() local
644 return Error(startLoc, "size is not a multiple of 8"); in ParseSEHDirectiveAllocStack()
663 SMLoc startLoc = getLexer().getLoc(); in ParseSEHDirectiveSaveReg() local
668 return Error(startLoc, "size is not a multiple of 8"); in ParseSEHDirectiveSaveReg()
690 SMLoc startLoc = getLexer().getLoc(); in ParseSEHDirectiveSaveXMM() local
698 return Error(startLoc, "offset is not a multiple of 16"); in ParseSEHDirectiveSaveXMM()
710 SMLoc startLoc = getLexer().getLoc(); in ParseSEHDirectivePushFrame() local
714 return Error(startLoc, "expected @code"); in ParseSEHDirectivePushFrame()
[all …]
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp771 SourceLocation startLoc = PID->getLocStart(); in RewritePropertyImplDecl() local
772 InsertText(startLoc, "// "); in RewritePropertyImplDecl()
773 const char *startBuf = SM->getCharacterData(startLoc); in RewritePropertyImplDecl()
778 startLoc.getLocWithOffset(semiBuf-startBuf+1); in RewritePropertyImplDecl()
903 SourceLocation startLoc = ClassDecl->getLocStart(); in RewriteForwardClassEpilogue() local
904 const char *startBuf = SM->getCharacterData(startLoc); in RewriteForwardClassEpilogue()
907 ReplaceText(startLoc, semiPtr-startBuf+1, typedefString); in RewriteForwardClassEpilogue()
1414 SourceLocation startLoc = S->getLocStart(); in RewriteBreakStmt() local
1417 ReplaceText(startLoc, strlen("break"), buf); in RewriteBreakStmt()
1431 SourceLocation startLoc = S->getLocStart(); in RewriteContinueStmt() local
[all …]
DRewriteModernObjC.cpp923 SourceLocation startLoc = PID->getLocStart(); in RewritePropertyImplDecl() local
924 InsertText(startLoc, "// "); in RewritePropertyImplDecl()
925 const char *startBuf = SM->getCharacterData(startLoc); in RewritePropertyImplDecl()
929 startGetterSetterLoc = startLoc.getLocWithOffset(semiBuf-startBuf+1); in RewritePropertyImplDecl()
1060 SourceLocation startLoc = ClassDecl->getLocStart(); in RewriteForwardClassEpilogue() local
1061 const char *startBuf = SM->getCharacterData(startLoc); in RewriteForwardClassEpilogue()
1064 ReplaceText(startLoc, semiPtr-startBuf+1, typedefString); in RewriteForwardClassEpilogue()
1607 SourceLocation startLoc = S->getLocStart(); in RewriteBreakStmt() local
1610 ReplaceText(startLoc, strlen("break"), buf); in RewriteBreakStmt()
1637 SourceLocation startLoc = S->getLocStart(); in RewriteContinueStmt() local
[all …]
/external/llvm/lib/ProfileData/Coverage/
DCoverageMapping.cpp270 auto &Functions = InstantiatedFunctions[I->startLoc()]; in insert()
329 ActiveRegions.back()->endLoc() <= Region.startLoc()) in buildSegmentsImpl()
344 if (LHS.startLoc() != RHS.startLoc()) in sortNestedRegions()
345 return LHS.startLoc() < RHS.startLoc(); in sortNestedRegions()
371 if (Active->startLoc() != I->startLoc() || in combineRegions()
/external/skqp/src/core/
DSkDeque.cpp242 SkDeque::Iter::Iter(const SkDeque& d, IterStart startLoc) { in Iter() argument
243 this->reset(d, startLoc); in Iter()
289 void SkDeque::Iter::reset(const SkDeque& d, IterStart startLoc) { in reset() argument
292 if (kFront_IterStart == startLoc) { in reset()
DSkTInternalLList.h219 T* init(const SkTInternalLList& list, IterStart startLoc) { in init() argument
220 if (kHead_IterStart == startLoc) { in init()
223 SkASSERT(kTail_IterStart == startLoc); in init()
DSkClipStack.h410 Iter(const SkClipStack& stack, IterStart startLoc);
428 void reset(const SkClipStack& stack, IterStart startLoc);
DSkClipStack.cpp879 SkClipStack::Iter::Iter(const SkClipStack& stack, IterStart startLoc) in Iter() argument
881 this->reset(stack, startLoc); in Iter()
931 void SkClipStack::Iter::reset(const SkClipStack& stack, IterStart startLoc) { in reset() argument
933 fIter.reset(stack.fDeque, static_cast<SkDeque::Iter::IterStart>(startLoc)); in reset()
/external/skia/src/core/
DSkDeque.cpp242 SkDeque::Iter::Iter(const SkDeque& d, IterStart startLoc) { in Iter() argument
243 this->reset(d, startLoc); in Iter()
289 void SkDeque::Iter::reset(const SkDeque& d, IterStart startLoc) { in reset() argument
292 if (kFront_IterStart == startLoc) { in reset()
DSkTInternalLList.h219 T* init(const SkTInternalLList& list, IterStart startLoc) { in init() argument
220 if (kHead_IterStart == startLoc) { in init()
223 SkASSERT(kTail_IterStart == startLoc); in init()
DSkClipStack.h410 Iter(const SkClipStack& stack, IterStart startLoc);
428 void reset(const SkClipStack& stack, IterStart startLoc);
DSkClipStack.cpp879 SkClipStack::Iter::Iter(const SkClipStack& stack, IterStart startLoc) in Iter() argument
881 this->reset(stack, startLoc); in Iter()
931 void SkClipStack::Iter::reset(const SkClipStack& stack, IterStart startLoc) { in reset() argument
933 fIter.reset(stack.fDeque, static_cast<SkDeque::Iter::IterStart>(startLoc)); in reset()
/external/skqp/include/core/
DSkDeque.h77 Iter(const SkDeque& d, IterStart startLoc);
81 void reset(const SkDeque& d, IterStart startLoc);
/external/skia/include/core/
DSkDeque.h77 Iter(const SkDeque& d, IterStart startLoc);
81 void reset(const SkDeque& d, IterStart startLoc);
/external/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h240 inline std::pair<unsigned, unsigned> startLoc() const { in startLoc() function
251 return startLoc() < Other.startLoc();
257 if (startLoc() > Other.startLoc()) in contains()
/external/llvm/tools/llvm-cov/
DSourceCoverageView.h47 return LHS.Region.startLoc() < RHS.Region.startLoc();
/external/clang/tools/libclang/
DCXLoadedDiagnostic.cpp305 CXSourceLocation startLoc = makeLocation(Start); in readRange() local
307 SR = clang_getRange(startLoc, endLoc); in readRange()
/external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/
DX86DisassemblerDecoder.c1596 uint64_t startLoc, in decodeInstruction() argument
1604 insn->startLocation = startLoc; in decodeInstruction()
1605 insn->readerCursor = startLoc; in decodeInstruction()
1619 startLoc, insn->readerCursor, insn->length); in decodeInstruction()
DX86DisassemblerDecoder.h557 uint64_t startLoc,
/external/llvm/lib/Target/X86/Disassembler/
DX86DisassemblerDecoder.cpp1871 uint64_t startLoc, DisassemblerMode mode) { in decodeInstruction() argument
1878 insn->startLocation = startLoc; in decodeInstruction()
1879 insn->readerCursor = startLoc; in decodeInstruction()
1895 startLoc, insn->readerCursor, insn->length); in decodeInstruction()
/external/clang/lib/AST/
DDeclObjC.cpp1336 SourceLocation startLoc = VarianceLoc; in getSourceRange() local
1337 if (startLoc.isInvalid()) in getSourceRange()
1338 startLoc = getLocation(); in getSourceRange()
1341 return SourceRange(startLoc, in getSourceRange()
1345 return SourceRange(startLoc); in getSourceRange()
/external/llvm/unittests/ProfileData/
DCoverageMappingTest.cpp236 ASSERT_EQ(Input.Regions[I].startLoc(), Output.Regions[I].startLoc()); in TEST_P()
/external/capstone/arch/X86/
DX86DisassemblerDecoder.c2339 uint64_t startLoc, in decodeInstruction() argument
2344 insn->startLocation = startLoc; in decodeInstruction()
2345 insn->readerCursor = startLoc; in decodeInstruction()
/external/llvm/lib/Target/SystemZ/AsmParser/
DSystemZAsmParser.cpp131 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) in SystemZOperand() argument
132 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {} in SystemZOperand()

12