Searched defs:class_def_method_index (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dart_method.cc441 size_t class_def_method_index = 0; local
444 return class_def_method_index;
446 class_def_method_index++;
451 return class_def_method_index;
453 class_def_method_index++;
H A Dclass_linker.cc3022 uint32_t class_def_method_index) REQUIRES_SHARED(Locks::mutator_lock_) {
3033 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index);
3239 size_t class_def_method_index = 0; local
3246 LinkCode(this, method, oat_class_ptr, class_def_method_index);
3252 method->SetMethodIndex(class_def_method_index);
3254 last_class_def_method_index = class_def_method_index;
3256 class_def_method_index++;
3261 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
3262 LinkCode(this, method, oat_class_ptr, class_def_method_index);
3263 class_def_method_index
[all...]
/art/dex2oat/linker/
H A Doat_writer.cc239 CompiledMethod* GetCompiledMethod(size_t class_def_method_index) const {
240 return compiled_methods_[class_def_method_index];
243 // CompiledMethods for each class_def_method_index, or null if no method is available.
247 // class_def_method_index. If 0, it means the corresponding
779 virtual bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) = 0;
848 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED,
930 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED,
1137 bool VisitMethod(size_t class_def_method_index,
1144 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
1455 bool VisitMethod(size_t class_def_method_index, cons
2218 size_t class_def_method_index = 0u; local
[all...]

Completed in 65 milliseconds