| /llvm-project/clang/lib/Tooling/Refactoring/ |
| H A D | AtomicChange.cpp | 91 auto StartPos = Code.rfind('\n', Start); in violatesColumnLimit() local 92 StartPos = (StartPos == llvm::StringRef::npos) ? 0 : StartPos + 1; in violatesColumnLimit() 99 Code.substr(StartPos, EndPos - StartPos).split(Lines, '\n'); in violatesColumnLimit()
|
| /llvm-project/llvm/lib/CodeGen/ |
| H A D | LiveInterval.cpp | 390 const_iterator StartPos) const { in overlapsFrom() 394 const_iterator j = StartPos; in overlapsFrom() 397 assert((StartPos->start <= i->start || StartPos == other.begin()) && in overlapsFrom() 398 StartPos != other.end() && "Bogus start position hint!"); in overlapsFrom() 404 ++StartPos; in overlapsFrom() 405 if (StartPos != other.end() && StartPos->start <= i->start) { in overlapsFrom() 406 assert(StartPos < other.end() && i < end()); in overlapsFrom()
|
| /llvm-project/llvm/lib/Transforms/ObjCARC/ |
| H A D | DependencyAnalysis.cpp | 202 /// Walk up the CFG from StartPos (which is in StartBB) and find local and 210 BasicBlock::iterator StartPos = StartInst->getIterator(); in findDependencies() local 214 Worklist.push_back(std::make_pair(StartBB, StartPos)); in findDependencies()
|
| /llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerDriver.cpp | 560 auto StartPos = std::search(Data.begin(), Data.end(), in AnalyzeDictionary() local 563 if (StartPos == Data.end()) in AnalyzeDictionary() 567 while (StartPos != Data.end()) { in AnalyzeDictionary() 569 auto EndPos = StartPos + Dict[i].size(); in AnalyzeDictionary() 570 for (auto It = StartPos; It != EndPos; ++It) in AnalyzeDictionary() 573 StartPos = std::search(EndPos, Data.end(), in AnalyzeDictionary()
|
| /llvm-project/clang-tools-extra/clang-tidy/ |
| H A D | NoLintDirectiveHandler.cpp | 277 size_t StartPos = Buffer.find_last_of('\n', From) + 1; in getLineStartAndEnd() local 279 return std::make_pair(StartPos, EndPos); in getLineStartAndEnd()
|
| /llvm-project/clang-tools-extra/clang-tidy/readability/ |
| H A D | IdentifierNamingCheck.cpp | 606 size_t StartPos = 0; in getDataTypePrefix() local 607 while ((StartPos = Str.find(From.data(), StartPos)) != in getDataTypePrefix() 609 Str.replace(StartPos, From.size(), To.data()); in getDataTypePrefix() 610 StartPos += To.size(); in getDataTypePrefix()
|
| /llvm-project/llvm/tools/dsymutil/ |
| H A D | DwarfLinkerForBinary.cpp | 1002 const std::vector<ValidReloc> &Relocs, uint64_t StartPos, uint64_t EndPos) { in getRelocations() argument 1005 auto CurReloc = partition_point(Relocs, [StartPos](const ValidReloc &Reloc) { in getRelocations() 1006 return (uint64_t)Reloc.Offset < StartPos; in getRelocations() 1009 while (CurReloc != Relocs.end() && CurReloc->Offset >= StartPos && in getRelocations()
|
| H A D | DwarfLinkerForBinary.h | 129 getRelocations(const std::vector<ValidReloc> &Relocs, uint64_t StartPos,
|
| /llvm-project/llvm/lib/Support/ |
| H A D | CommandLine.cpp | 1126 StringRef::size_type StartPos = 0; in ExpandBasePaths() 1129 TokenPos = ArgString.find(Token, StartPos)) { in ExpandBasePaths() 1132 const StringRef LHS = ArgString.substr(StartPos, TokenPos - StartPos); in ExpandBasePaths() 1138 StartPos = TokenPos + Token.size(); in expandResponseFile() 1143 const StringRef Remaining = ArgString.substr(StartPos); in expandResponseFile() 1110 StringRef::size_type StartPos = 0; ExpandBasePaths() local
|
| /llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheck.cpp | 2337 size_t StartPos = 0; in CheckDag() 2366 size_t MatchLen = 0, MatchPos = StartPos; in CheckDag() 2451 Buffer.slice(StartPos, MatchRanges.begin()->Pos); in CheckDag() 2459 StartPos = MatchRanges.rbegin()->End; in CheckDag() 2465 return StartPos; in CheckDag() 2338 size_t StartPos = 0; CheckDag() local
|
| /llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugLine.cpp | 1397 SequenceIter StartPos = SeqPos; in lookupAddressRangeImpl() 1407 if (SeqPos == StartPos) 1375 SequenceIter StartPos = SeqPos; lookupAddressRangeImpl() local
|
| /llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | LiveInterval.h | 469 bool overlapsFrom(const LiveRange &Other, const_iterator StartPos) const;
|
| /llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | AttributorAttributes.cpp | 253 uint64_t StartPos = 0; in isDenselyPacked() local 258 if (StartPos != Layout->getElementOffsetInBits(I)) in isDenselyPacked() 260 StartPos += DL.getTypeAllocSizeInBits(ElTy); in isDenselyPacked()
|