Home
last modified time | relevance | path

Searched refs:pos_ (Results 1 – 6 of 6) sorted by relevance

/art/compiler/dex/
Dinline_method_analyser.cc74 size_t pos_ = 0u; member in art::__anonab18f0a00111::Matcher
84 matcher->pos_ += 1u; // Advance to the next match function before marking. in Mark()
85 matcher->mark_ = matcher->pos_; in Mark()
94 matcher->pos_ += 1u; in Required()
103 matcher->pos_ += 1u; in Repeated()
106 matcher->pos_ = matcher->mark_; in Repeated()
131 while (matcher.pos_ != size) { in DoMatch()
132 if (!pattern[matcher.pos_](&matcher)) { in DoMatch()
/art/runtime/
Dhandle_scope-inl.h129 SetReference(pos_, object); in NewHandle()
130 MutableHandle<MirrorType> h(GetHandle<MirrorType>(pos_)); in NewHandle()
131 ++pos_; in NewHandle()
Dhandle_scope.h194 return kNumReferences - pos_; in RemainingSlots()
212 uint32_t pos_ = 0; variable
/art/libdexfile/dex/
Ddex_file.h903 bool HasNext() const { return pos_ < size_; } in HasNext()
905 void Next() { ++pos_; } in Next()
907 return type_list_->GetTypeItem(pos_).type_idx_; in GetTypeIdx()
916 uint32_t pos_ = 0; variable
924 bool HasNext() const { return pos_ < array_size_; } in HasNext()
958 size_t pos_; // Current position. variable
Ddex_file.cc599 pos_(-1), in EncodedArrayValueIterator()
609 pos_++; in Next()
610 if (pos_ >= array_size_) { in Next()
/art/runtime/verifier/
Dmethod_verifier.cc4237 res_method_(res_method), pos_(0), params_(res_method->GetParameterTypeList()), in MethodParamListDescriptorIterator()
4242 return pos_ < params_size_; in HasNext()
4246 ++pos_; in Next()
4250 return res_method_->GetTypeDescriptorFromTypeIdx(params_->GetTypeItem(pos_).type_idx_); in GetDescriptor()
4255 size_t pos_; member in art::verifier::impl::__anon79162a830111::MethodParamListDescriptorIterator