OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetClassFromTypeIdx
(Results
1 - 7
of
7
) sorted by null
/art/runtime/
method_helper-inl.h
46
inline mirror::Class* MethodHelper::
GetClassFromTypeIdx
(uint16_t type_idx, bool resolve) {
62
return
GetClassFromTypeIdx
(return_type_idx, resolve);
method_helper.cc
55
mirror::Class* param_type =
GetClassFromTypeIdx
(types->GetTypeItem(i).type_idx_);
57
other->
GetClassFromTypeIdx
(other_types->GetTypeItem(i).type_idx_);
method_helper.h
76
// May cause thread suspension due to
GetClassFromTypeIdx
calling ResolveType this caused a large
114
mirror::Class*
GetClassFromTypeIdx
(uint16_t type_idx, bool resolve = true)
reflection.cc
234
mh.
GetClassFromTypeIdx
(classes->GetTypeItem(args_offset).type_idx_);
370
mirror::Class* param_type = mh.
GetClassFromTypeIdx
(type_idx);
380
// TODO: There is a compaction bug here since
GetClassFromTypeIdx
can cause thread suspension,
debugger.cc
[
all
...]
/art/runtime/mirror/
art_method.cc
234
Class* iter_exception_type = mh.
GetClassFromTypeIdx
(iter_type_idx);
/art/runtime/interpreter/
interpreter_common.cc
585
Class* arg_type = mh.
GetClassFromTypeIdx
(params->GetTypeItem(shorty_pos).type_idx_);
[
all
...]
Completed in 639 milliseconds