Searched defs:IdxI (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/IR/
H A DAttributes.cpp868 auto IdxI = Indices.begin(), IdxE = Indices.end(); local
871 while (I != E && IdxI != IdxE) {
872 if (getSlotIndex(I) < *IdxI)
874 else if (getSlotIndex(I) > *IdxI)
875 AttrSet.emplace_back(AttributeSet::get(C, std::make_pair(*IdxI++, A)));
877 AttrBuilder B(getSlotAttributes(I), *IdxI); local
879 AttrSet.emplace_back(AttributeSet::get(C, *IdxI, B));
881 ++IdxI;
888 while (IdxI != IdxE)
889 AttrSet.emplace_back(AttributeSet::get(C, std::make_pair(*IdxI
[all...]

Completed in 141 milliseconds