Searched refs:_type (Results 1 – 2 of 2) sorted by relevance
/art/runtime/entrypoints/ |
D | entrypoint_utils-inl.h | 414 #define EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, _access_check) \ argument 416 ArtField* FindFieldFromCode<_type, _access_check>(uint32_t field_idx, \ 420 #define EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(_type) \ argument 421 EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, false); \ 422 EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, true) 593 #define EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, _access_check) \ argument 595 ArtMethod* FindMethodFromCode<_type, _access_check>(uint32_t method_idx, \ 599 #define EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(_type) \ argument 600 EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, false); \ 601 EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, true)
|
/art/runtime/interpreter/ |
D | interpreter_common.h | 1031 #define EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, _is_range, _do_check) \ argument 1033 bool DoInvoke<_type, _is_range, _do_check>(Thread* self, ShadowFrame& shadow_frame, \ 1037 #define EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(_type) \ argument 1038 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, false); \ 1039 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, true); \ 1040 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, false); \ 1041 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, true);
|