Searched refs:Iter1 (Results 1 – 6 of 6) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | SparseBitVector.h | 546 ElementListConstIter Iter1 = Elements.begin(); 549 for (; Iter1 != Elements.end() && Iter2 != RHS.Elements.end(); 550 ++Iter1, ++Iter2) { 551 if (*Iter1 != *Iter2) 554 return Iter1 == Elements.end() && Iter2 == RHS.Elements.end(); 563 ElementListIter Iter1 = Elements.begin(); 571 if (Iter1 == Elements.end() || Iter1->index() > Iter2->index()) { 572 Elements.insert(Iter1, *Iter2); 575 } else if (Iter1->index() == Iter2->index()) { 576 changed |= Iter1->unionWith(*Iter2); [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MismatchedIteratorChecker.cpp | 37 void verifyMatch(CheckerContext &C, const SVal &Iter1, 242 const SVal &Iter1, in verifyMatch() argument 246 const auto *Pos1 = getIteratorPosition(State, Iter1); in verifyMatch() 276 "same container is expected.", Iter1, Iter2, C, N); in verifyMatch()
|
| H A D | ContainerModeling.cpp | 50 void handleErase(CheckerContext &C, SVal Cont, SVal Iter1, SVal Iter2) const; 52 void handleEraseAfter(CheckerContext &C, SVal Cont, SVal Iter1, 624 void ContainerModeling::handleErase(CheckerContext &C, SVal Cont, SVal Iter1, in handleErase() argument 632 const auto *Pos1 = getIteratorPosition(State, Iter1); in handleErase() 682 SVal Iter1, SVal Iter2) const { in handleEraseAfter() argument 684 const auto *Pos1 = getIteratorPosition(State, Iter1); in handleEraseAfter()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 1792 auto Iter1 = BBAddrMapLabels.find(SectionAddr + Index); in disassembleObject() local 1793 if (Iter1 != BBAddrMapLabels.end()) { in disassembleObject() 1794 for (StringRef Label : Iter1->second) in disassembleObject()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroFrame.cpp | 687 sort(FrameData.Allocas, [&](const auto &Iter1, const auto &Iter2) { in addFieldForAllocas() argument 688 return GetAllocaSize(Iter1) > GetAllocaSize(Iter2); in addFieldForAllocas()
|
| /openbsd-src/gnu/usr.bin/perl/lib/ |
| H A D | overload.t | 2234 package Iter1; 2237 my $a = bless [], 'Iter1'; 2240 is ($a[0], 10, 'Iter1: a[0]'); 2241 is ($a[1], 11, 'Iter1: a[1]'); 2242 is ($a[2], 12, 'Iter1: a[2]'); 2244 is ($a[0], 10, 'Iter1: a[0] concat'); 2245 is ($a[1], 1111, 'Iter1: a[1] concat'); 2246 is ($a[2], 12, 'Iter1: a[2] concat');
|