Lines Matching refs:Low
260 std::set<ArgPromotion::IndicesVector>::iterator Low;
261 Low = Set.upper_bound(Indices);
262 if (Low != Set.begin())
263 Low--;
264 // Low is now the last element smaller than or equal to Indices. This means
269 return Low != Set.end() && IsPrefix(*Low, Indices);
279 std::set<ArgPromotion::IndicesVector>::iterator Low;
280 Low = Safe.upper_bound(ToMark);
282 if (Low != Safe.begin())
283 Low--;
284 // Low is now the last element smaller than or equal to Indices. This
287 if (Low != Safe.end()) {
288 if (IsPrefix(*Low, ToMark))
293 // Increment Low, so we can use it as a "insert before" hint
294 ++Low;
297 Low = Safe.insert(Low, ToMark);
298 ++Low;
301 while (Low != End && IsPrefix(ToMark, *Low)) {
302 std::set<ArgPromotion::IndicesVector>::iterator Remove = Low;
303 ++Low;