Home
last modified time | relevance | path

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

/art/tools/
Dgenerate-operator-out.py60 if m.group(3) is not None:
64 is_enum_class = m.group(1) is not None
65 enum_name = m.group(2)
77 namespaces.append(m.group(1))
87 enclosing_classes.append(m.group(1))
92 if m and not m.group(2):
114 enum_text = m_comment.group(1)
130 enum_value = m.group(1)
139 rest = m.group(2).strip()
142 rest = rest[(len(m_literal.group(0))):]
Dcpplint.py380 category = matched.group(1)
1666 new_namespace = _NamespaceInfo(namespace_decl_match.group(1), linenum)
1669 line = namespace_decl_match.group(2)
1702 class_decl_match.group(4), class_decl_match.group(2),
1704 line = class_decl_match.group(5)
1715 self.stack[-1].access = access_match.group(1)
1724 token = matched.group(1)
1751 line = matched.group(2)
1883 args.group(1) != 'void' and
1885 args.group(1).strip())):
[all …]
Danalyze-init-failures.py57 failed_clazz = m.group(1).replace('/','.')
67 error = m.group(1)
75 method = m.group(1)
95 method = m.group(1)
/art/tools/checker/
DREADME11 passes. Each group of check lines therefore must start with a 'CHECK-START'
12 header which specifies the output group it should be tested against. The group
18 - CHECK: Must match an output line which appears in the output group
22 - CHECK-DAG: Must match an output line which appears in the output group
26 - CHECK-NOT: Must not match any output line which appears in the output group
29 Surrounding non-negative checks (or boundaries of the group)
46 only valid within the scope of the defining group. Within a group they cannot
57 group named on the first line. Together they verify that the CFG after
71 A group of check lines can be made architecture-specific by inserting '-<arch>'
/art/test/
DAndroid.run-test.mk968 define define-test-art-run-test-group
977 …$(call define-test-art-run-test-group,test-art-$(target)-run-test,$(ART_RUN_TEST_$(call name-to-va…
980 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(prebuild),$(ART_RUN_TEST_$(cal…
983 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(run-type),$(ART_RUN_TEST_$(cal…
986 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(compiler),$(ART_RUN_TEST_$(cal…
989 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(relocate),$(ART_RUN_TEST_$(cal…
992 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(trace),$(ART_RUN_TEST_$(call n…
995 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(gc),$(ART_RUN_TEST_$(call name…
998 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(jni),$(ART_RUN_TEST_$(call nam…
1001 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(debuggable),$(ART_RUN_TEST_$(c…
[all …]
/art/runtime/interpreter/mterp/
Dgen_mterp.py262 opcodes.append("op_" + match.group(2).lower())
/art/runtime/
Ddebugger.cc2015 mirror::Object* group = f->GetObject(thread_object); in GetThreadGroup() local
2016 CHECK(group != nullptr); in GetThreadGroup()
2017 JDWP::ObjectId thread_group_id = gRegistry->Add(group); in GetThreadGroup()
2147 mirror::Object* group = f->GetObject(f->GetDeclaringClass()); in GetSystemThreadGroupId() local
2148 return gRegistry->Add(group); in GetSystemThreadGroupId()
2245 mirror::Object* group = thread_group_field->GetObject(peer); in IsInDesiredThreadGroup() local
2246 return (group == desired_thread_group); in IsInDesiredThreadGroup()
Djava_vm_ext.cc398 thread_group = args->group; in AttachCurrentThreadInternal()
Dthread.cc1841 ScopedLocalRef<jobject> group(soa.Env(), soa.AddLocalReference<jobject>(ogroup)); in RemoveFromThreadGroup() local
1844 tlsPtr_.jni_env->CallVoidMethod(group.get(), in RemoveFromThreadGroup()