Home
last modified time | relevance | path

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

/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()
1413 SourceLocation startLoc = S->getLocStart(); in RewriteBreakStmt() local
1416 ReplaceText(startLoc, strlen("break"), buf); in RewriteBreakStmt()
1430 SourceLocation startLoc = S->getLocStart(); in RewriteContinueStmt() local
[all …]
DRewriteModernObjC.cpp934 SourceLocation startLoc = PID->getLocStart(); in RewritePropertyImplDecl() local
935 InsertText(startLoc, "// "); in RewritePropertyImplDecl()
936 const char *startBuf = SM->getCharacterData(startLoc); in RewritePropertyImplDecl()
940 startGetterSetterLoc = startLoc.getLocWithOffset(semiBuf-startBuf+1); in RewritePropertyImplDecl()
1071 SourceLocation startLoc = ClassDecl->getLocStart(); in RewriteForwardClassEpilogue() local
1072 const char *startBuf = SM->getCharacterData(startLoc); in RewriteForwardClassEpilogue()
1075 ReplaceText(startLoc, semiPtr-startBuf+1, typedefString); in RewriteForwardClassEpilogue()
1633 SourceLocation startLoc = S->getLocStart(); in RewriteBreakStmt() local
1636 ReplaceText(startLoc, strlen("break"), buf); in RewriteBreakStmt()
1663 SourceLocation startLoc = S->getLocStart(); in RewriteContinueStmt() local
[all …]
/external/llvm/lib/ProfileData/
DCoverageMapping.cpp263 auto &Functions = InstantiatedFunctions[I->startLoc()]; in insert()
326 ActiveRegions.back()->endLoc() <= Region.startLoc()) in buildSegments()
328 if (PrevRegion && PrevRegion->startLoc() == Region.startLoc() && in buildSegments()
397 if (LHS.startLoc() == RHS.startLoc()) in sortNestedRegions()
400 return LHS.startLoc() < RHS.startLoc(); in sortNestedRegions()
/external/skia/include/core/
DSkDeque.h77 Iter(const SkDeque& d, IterStart startLoc);
81 void reset(const SkDeque& d, IterStart startLoc);
DSkClipStack.h374 Iter(const SkClipStack& stack, IterStart startLoc);
392 void reset(const SkClipStack& stack, IterStart startLoc);
/external/skia/src/core/
DSkDeque.cpp243 SkDeque::Iter::Iter(const SkDeque& d, IterStart startLoc) { in Iter() argument
244 this->reset(d, startLoc); in Iter()
290 void SkDeque::Iter::reset(const SkDeque& d, IterStart startLoc) { in reset() argument
293 if (kFront_IterStart == startLoc) { in reset()
DSkTInternalLList.h188 T* init(const SkTInternalLList& list, IterStart startLoc) { in init() argument
189 if (kHead_IterStart == startLoc) { in init()
192 SkASSERT(kTail_IterStart == startLoc); in init()
DSkClipStack.cpp756 SkClipStack::Iter::Iter(const SkClipStack& stack, IterStart startLoc) in Iter() argument
758 this->reset(stack, startLoc); in Iter()
808 void SkClipStack::Iter::reset(const SkClipStack& stack, IterStart startLoc) { in reset() argument
810 fIter.reset(stack.fDeque, static_cast<SkDeque::Iter::IterStart>(startLoc)); in reset()
/external/llvm/include/llvm/ProfileData/
DCoverageMapping.h198 inline std::pair<unsigned, unsigned> startLoc() const { in startLoc() function
209 return startLoc() < Other.startLoc();
215 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/llvm/unittests/ProfileData/
DCoverageMappingTest.cpp171 ASSERT_EQ(InputCMRs[I].startLoc(), OutputCMRs[I].startLoc()); in TEST_F()
/external/llvm/lib/Target/X86/Disassembler/
DX86DisassemblerDecoder.cpp1879 uint64_t startLoc, DisassemblerMode mode) { in decodeInstruction() argument
1886 insn->startLocation = startLoc; in decodeInstruction()
1887 insn->readerCursor = startLoc; in decodeInstruction()
1903 startLoc, insn->readerCursor, insn->length); in decodeInstruction()
DX86DisassemblerDecoder.h661 uint64_t startLoc,
/external/clang/lib/AST/
DDeclObjC.cpp1298 SourceLocation startLoc = VarianceLoc; in getSourceRange() local
1299 if (startLoc.isInvalid()) in getSourceRange()
1300 startLoc = getLocation(); in getSourceRange()
1303 return SourceRange(startLoc, in getSourceRange()
1307 return SourceRange(startLoc); in getSourceRange()
/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()
/external/clang/tools/c-index-test/
Dc-index-test.c3436 CXSourceLocation startLoc, endLoc; in perform_token_annotation() local
3500 startLoc = clang_getLocation(TU, file, line, column); in perform_token_annotation()
3501 if (clang_equalLocations(clang_getNullLocation(), startLoc)) { in perform_token_annotation()
3516 range = clang_getRange(startLoc, endLoc); in perform_token_annotation()
/external/clang/include/clang/AST/
DStmt.h436 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, in DeclStmt() argument
438 StartLoc(startLoc), EndLoc(endLoc) {} in DeclStmt()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp1963 SourceLocation startLoc = in AtomicPropertySetterGetterRules() local
1967 << FixItHint::CreateInsertion(startLoc, "(nonatomic) "); in AtomicPropertySetterGetterRules()