Lines Matching refs:Index
57 IndexType(unsigned Idx) : Index(Idx) {} in IndexType()
59 static bool isInstr(IndexType X) { return X.Index >= First; } in isInstr()
75 unsigned Index = None; member
178 assert(Index >= First);
179 return Index;
183 return Index == x;
187 return Index == Idx.Index;
191 return Index != x;
195 return Index != Idx.Index;
200 assert(Index != None);
201 assert(Index != Exit);
202 if (Index == Entry)
203 Index = First;
205 ++Index;
215 if (Index == Idx.Index)
219 if (Index == None || Idx.Index == None)
223 if (Index == Exit || Idx.Index == Entry)
227 if (Index == Entry || Idx.Index == Exit)
230 return Index < Idx.Index;