OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:method_index
(Results
1 - 3
of
3
) sorted by null
/art/compiler/
oat_test.cc
131
size_t
method_index
= 0;
local
132
for (size_t i = 0; i < klass->NumDirectMethods(); i++,
method_index
++) {
134
oat_class->GetOatMethod(
method_index
), dex_file);
136
for (size_t i = 0; i < num_virtual_methods; i++,
method_index
++) {
138
oat_class->GetOatMethod(
method_index
), dex_file);
/art/runtime/mirror/
art_method.cc
111
uint16_t
method_index
= GetMethodIndex();
local
116
if (super_class_vtable != NULL &&
method_index
< super_class_vtable->GetLength()) {
117
result = super_class_vtable->Get(
method_index
);
/art/oatdump/
oatdump.cc
185
size_t
method_index
= m->GetMethodIndex();
local
186
return oat_class->GetOatMethod(
method_index
).GetCode();
[
all
...]
Completed in 143 milliseconds