Searched refs:is_constructor (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Ddex_file_verifier.cc2656 bool is_constructor = is_init_by_name || is_clinit_by_name; local
2660 if (((method_access_flags & kAccConstructor) != 0) && !is_constructor) {
2669 if (is_constructor) {
2686 bool is_direct = (method_access_flags & (kAccStatic | kAccPrivate)) != 0 || is_constructor;
2731 if (is_constructor) {
H A Ddebugger.cc4104 const bool is_constructor = m->IsConstructor() && !m->IsStatic(); local
4105 if (is_constructor) {
/art/runtime/jdwp/
H A Djdwp_handler.cc82 * If "is_constructor" is set, this returns "object_id" rather than the
87 RefTypeId class_id, MethodId method_id, bool is_constructor)
89 CHECK(!is_constructor || object_id != 0);
/art/runtime/verifier/
H A Dmethod_verifier.cc2874 bool is_constructor; local
2879 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0;
2883 is_constructor = called_method->IsConstructor();
2897 if (is_constructor) {

Completed in 159 milliseconds