Home | History | Annotate | Download | only in jit

Lines Matching full:methods_

108   JniStubData() : code_(nullptr), methods_() {}
124 if (!ContainsElement(methods_, method)) {
125 methods_.push_back(method);
130 return methods_;
135 methods_.begin(),
136 methods_.end(),
138 methods_.erase(kept_end, methods_.end());
142 auto it = std::find(methods_.begin(), methods_.end(), method);
143 if (it != methods_.end()) {
144 methods_.erase(it);
152 std::replace(methods_.begin(), methods_.end(), old_method, new_method);
157 std::vector<ArtMethod*> methods_;