Home
last modified time | relevance | path

Searched refs:group (Results 1 – 6 of 6) sorted by relevance

/art/test/
DAndroid.run-test.mk506 define define-test-art-run-test-group-rule
517 define define-test-art-run-test-group-type
570 define define-test-art-run-test-group
599 $$(eval $$(call define-test-art-run-test-group-type,$(1),$(2),prebuild))
600 $$(eval $$(call define-test-art-run-test-group-type,$(1),$(2),norelocate))
601 $$(eval $$(call define-test-art-run-test-group-type,$(1),$(2),relocate))
602 $$(eval $$(call define-test-art-run-test-group-type,$(1),$(2),no-prebuild))
603 $$(eval $$(call define-test-art-run-test-group-rule,test-art-$(2)-run-test-default-$(1), \
605 $$(eval $$(call define-test-art-run-test-group-rule,test-art-$(2)-run-test-interpreter-$(1), \
607 $$(eval $$(call define-test-art-run-test-group-rule,test-art-$(2)-run-test-optimizing-$(1), \
[all …]
/art/tools/
Dgenerate-operator-out.py59 if m.group(3) is not None:
62 is_enum_class = m.group(1) is not None
63 enum_name = m.group(2)
75 namespaces.append(m.group(1))
85 enclosing_classes.append(m.group(1))
107 enum_text = m_comment.group(1)
123 enum_value = m.group(1)
132 rest = m.group(2).strip()
135 rest = rest[(len(m_literal.group(0))):]
Dcpplint.py376 category = matched.group(1)
1640 new_namespace = _NamespaceInfo(namespace_decl_match.group(1), linenum)
1643 line = namespace_decl_match.group(2)
1676 class_decl_match.group(4), class_decl_match.group(2),
1678 line = class_decl_match.group(5)
1689 self.stack[-1].access = access_match.group(1)
1698 token = matched.group(1)
1725 line = matched.group(2)
1857 args.group(1) != 'void' and
1859 args.group(1).strip())):
[all …]
/art/runtime/
Ddebugger.cc2004 mirror::Object* group = f->GetObject(thread_object); in GetThreadGroup() local
2005 CHECK(group != nullptr); in GetThreadGroup()
2006 JDWP::ObjectId thread_group_id = gRegistry->Add(group); in GetThreadGroup()
2129 mirror::Object* group = f->GetObject(f->GetDeclaringClass()); in GetSystemThreadGroupId() local
2130 return gRegistry->Add(group); in GetSystemThreadGroupId()
2226 mirror::Object* group = thread_group_field->GetObject(peer); in IsInDesiredThreadGroup() local
2227 return (group == desired_thread_group); in IsInDesiredThreadGroup()
Dthread.cc1252 ScopedLocalRef<jobject> group(soa.Env(), soa.AddLocalReference<jobject>(ogroup)); in RemoveFromThreadGroup() local
1255 tlsPtr_.jni_env->CallVoidMethod(group.get(), in RemoveFromThreadGroup()
Djni_internal.cc338 thread_group = args->group; in JII_AttachCurrentThread()