Lines Matching refs:Iter
40 auto Iter = Pos - 1; in insert() local
41 if (Iter->intersects(R)) in insert()
42 return Iter; in insert()
53 auto Iter = Children.begin(); in insert() local
54 while (Iter != End) { in insert()
55 if (Iter->intersects(RI)) in insert()
56 return Iter; in insert()
57 ++Iter; in insert()
72 auto Iter = findRange(RHS.Ranges.front()); in contains() local
77 while (Iter != End) { in contains()
78 if (Iter->contains(R)) in contains()
80 ++Iter; in contains()
82 if (Iter == End) in contains()
93 auto Iter = findRange(RHS.Ranges.front()); in intersects() local
95 if (Iter == End) in intersects()
97 if (R.HighPC <= Iter->LowPC) in intersects()
99 while (Iter != End) { in intersects()
100 if (Iter->intersects(R)) in intersects()
102 ++Iter; in intersects()
708 auto Iter = StmtListToDie.find(LineTableOffset); in verifyDebugLineStmtOffsets() local
709 if (Iter != StmtListToDie.end()) { in verifyDebugLineStmtOffsets()
712 << format("0x%08" PRIx32, Iter->second.getOffset()) << " and " in verifyDebugLineStmtOffsets()
715 dump(Iter->second); in verifyDebugLineStmtOffsets()
955 auto Iter = CUMap.find(Offset); in verifyDebugNamesCULists() local
957 if (Iter == CUMap.end()) { in verifyDebugNamesCULists()
965 if (Iter->second != NotIndexed) { in verifyDebugNamesCULists()
968 NI.getUnitOffset(), Offset, Iter->second); in verifyDebugNamesCULists()
971 Iter->second = NI.getUnitOffset(); in verifyDebugNamesCULists()
1133 auto Iter = find_if(TableRef, [AttrEnc](const FormClassTable &T) { in verifyNameIndexAttribute() local
1136 if (Iter == TableRef.end()) { in verifyNameIndexAttribute()
1143 if (!DWARFFormValue(AttrEnc.Form).isFormClass(Iter->Class)) { in verifyNameIndexAttribute()
1147 AttrEnc.Form, Iter->ClassName); in verifyNameIndexAttribute()