Home
last modified time | relevance | path

Searched refs:pos_ (Results 1 – 4 of 4) 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/libdexfile/dex/
Ddex_file.h1041 bool HasNext() const { return pos_ < size_; } in HasNext()
1043 void Next() { ++pos_; } in Next()
1045 return type_list_->GetTypeItem(pos_).type_idx_; in GetTypeIdx()
1054 uint32_t pos_ = 0; variable
1062 bool HasNext() const { return pos_ < array_size_; } in HasNext()
1102 size_t pos_; // Current position. variable
Ddex_file.cc735 pos_(-1), in EncodedArrayValueIterator()
745 pos_++; in MaybeNext()
746 if (pos_ >= array_size_) { in MaybeNext()
/art/runtime/verifier/
Dmethod_verifier.cc4089 res_method_(res_method), pos_(0), params_(res_method->GetParameterTypeList()), in MethodParamListDescriptorIterator()
4094 return pos_ < params_size_; in HasNext()
4098 ++pos_; in Next()
4102 return res_method_->GetTypeDescriptorFromTypeIdx(params_->GetTypeItem(pos_).type_idx_); in GetDescriptor()
4107 size_t pos_; member in art::verifier::impl::__anon79162a830111::MethodParamListDescriptorIterator