Lines Matching refs:pos_

1035       : dex_file_(dex_file), size_(0), pos_(0) {  in DexFileParameterIterator()
1041 bool HasNext() const { return pos_ < size_; } in HasNext()
1042 void Next() { ++pos_; } in Next()
1044 return type_list_->GetTypeItem(pos_).type_idx_; in GetTypeIdx()
1053 uint32_t pos_; variable
1091 : dex_file_(dex_file), pos_(0), ptr_pos_(raw_class_data_item), last_idx_(0) { in ClassDataItemIterator()
1112 return pos_ < EndOfStaticFieldsPos(); in HasNextStaticField()
1115 return pos_ >= EndOfStaticFieldsPos() && pos_ < EndOfInstanceFieldsPos(); in HasNextInstanceField()
1118 return pos_ >= EndOfInstanceFieldsPos() && pos_ < EndOfDirectMethodsPos(); in HasNextDirectMethod()
1121 return pos_ >= EndOfDirectMethodsPos() && pos_ < EndOfVirtualMethodsPos(); in HasNextVirtualMethod()
1124 return pos_ < EndOfVirtualMethodsPos(); in HasNext()
1127 pos_++; in Next()
1128 if (pos_ < EndOfStaticFieldsPos()) { in Next()
1131 } else if (pos_ == EndOfStaticFieldsPos() && NumInstanceFields() > 0) { in Next()
1134 } else if (pos_ < EndOfInstanceFieldsPos()) { in Next()
1137 } else if (pos_ == EndOfInstanceFieldsPos() && NumDirectMethods() > 0) { in Next()
1140 } else if (pos_ < EndOfDirectMethodsPos()) { in Next()
1143 } else if (pos_ == EndOfDirectMethodsPos() && NumVirtualMethods() > 0) { in Next()
1146 } else if (pos_ < EndOfVirtualMethodsPos()) { in Next()
1154 if (pos_ < EndOfInstanceFieldsPos()) { in GetMemberIndex()
1157 DCHECK_LT(pos_, EndOfVirtualMethodsPos()); in GetMemberIndex()
1162 if (pos_ < EndOfInstanceFieldsPos()) { in GetRawMemberAccessFlags()
1165 DCHECK_LT(pos_, EndOfVirtualMethodsPos()); in GetRawMemberAccessFlags()
1266 size_t pos_; // integral number of items passed variable
1282 bool HasNext() { return pos_ < array_size_; } in HasNext()
1314 size_t pos_; // Current position. variable