Home
last modified time | relevance | path

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

/art/compiler/
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))):]
/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/runtime/
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))):]
Ddebugger.cc2051 ObjPtr<mirror::Object> group = f->GetObject(thread_object); in GetThreadGroup() local
2052 CHECK(group != nullptr); in GetThreadGroup()
2053 JDWP::ObjectId thread_group_id = gRegistry->Add(group); in GetThreadGroup()
2184 ObjPtr<mirror::Object> group = f->GetObject(f->GetDeclaringClass()); in GetSystemThreadGroupId() local
2185 return gRegistry->Add(group); in GetSystemThreadGroupId()
2281 ObjPtr<mirror::Object> group = thread_group_field->GetObject(peer); in IsInDesiredThreadGroup() local
2282 return (group == desired_thread_group); in IsInDesiredThreadGroup()
Djava_vm_ext.cc393 thread_group = args->group; in AttachCurrentThreadInternal()
Dthread.cc2188 ScopedLocalRef<jobject> group(soa.Env(), soa.AddLocalReference<jobject>(ogroup)); in RemoveFromThreadGroup() local
2191 tlsPtr_.jni_env->CallVoidMethod(group.get(), in RemoveFromThreadGroup()
/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/runtime/openjdkjvmti/
Dti_threadgroup.cc91 jthreadGroup group, in GetThreadGroupInfo() argument
93 if (group == nullptr) { in GetThreadGroupInfo()
98 if (soa.Env()->IsInstanceOf(group, art::WellKnownClasses::java_lang_ThreadGroup) == JNI_FALSE) { in GetThreadGroupInfo()
102 art::ObjPtr<art::mirror::Object> obj = soa.Decode<art::mirror::Object>(group); in GetThreadGroupInfo()
164 art::ObjPtr<art::mirror::Object> group = thread_group_field->GetObject(peer); in IsInDesiredThreadGroup() local
165 return (group == desired_thread_group.Get()); in IsInDesiredThreadGroup()
216 jthreadGroup group, in GetThreadGroupChildren() argument
221 if (group == nullptr) { in GetThreadGroupChildren()
227 if (!soa.Env()->IsInstanceOf(group, art::WellKnownClasses::java_lang_ThreadGroup)) { in GetThreadGroupChildren()
233 soa.Decode<art::mirror::Object>(group)); in GetThreadGroupChildren()
Dti_threadgroup.h47 jthreadGroup group,
51 jthreadGroup group,
Dti_thread.cc211 art::ObjPtr<art::mirror::Object> group = f->GetObject(peer); in GetThreadInfo() local
212 info_ptr->thread_group = group == nullptr in GetThreadInfo()
214 : soa.AddLocalReference<jthreadGroup>(group); in GetThreadInfo()
271 art::ObjPtr<art::mirror::Object> group = f->GetObject(peer); in GetThreadInfo() local
272 info_ptr->thread_group = group == nullptr in GetThreadInfo()
274 : soa.AddLocalReference<jthreadGroup>(group); in GetThreadInfo()
DOpenjdkJvmTi.cc247 jthreadGroup group, in GetThreadGroupInfo() argument
250 return ThreadGroupUtil::GetThreadGroupInfo(env, group, info_ptr); in GetThreadGroupInfo()
254 jthreadGroup group, in GetThreadGroupChildren() argument
261 group, in GetThreadGroupChildren()
/art/test/925-threadgroups/
Dthreadgroups.cc58 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jthreadGroup group) { in Java_art_Test925_getThreadGroupInfo() argument
60 jvmtiError result = jvmti_env->GetThreadGroupInfo(group, &info); in Java_art_Test925_getThreadGroupInfo()
90 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jthreadGroup group) { in Java_art_Test925_getThreadGroupChildren() argument
96 jvmtiError result = jvmti_env->GetThreadGroupChildren(group, in Java_art_Test925_getThreadGroupChildren()
/art/test/testrunner/
Drun_build_test_target.py40 group = parser.add_mutually_exclusive_group(required=True) variable
41 group.add_argument('build_target', nargs='?')
42 group.add_argument('-l', '--list', action='store_true', help='List all possible run-build targets.')
Dtestrunner.py781 TARGET_TYPES.add(match.group(1))
782 RUN_TYPES.add(match.group(2))
783 PREBUILD_TYPES.add(match.group(3))
784 COMPILER_TYPES.add(match.group(4))
785 RELOCATE_TYPES.add(match.group(5))
786 TRACE_TYPES.add(match.group(6))
787 GC_TYPES.add(match.group(7))
788 JNI_TYPES.add(match.group(8))
789 IMAGE_TYPES.add(match.group(9))
790 PICTEST_TYPES.add(match.group(10))
[all …]
Denv.py71 key = match.group(1)
72 value = match.group(2)
/art/test/
DAndroid.run-test.mk185 define define-test-art-host-or-target-run-test-group
197 $(call define-test-art-host-or-target-run-test-group,$(target))))
205 define-test-art-host-or-target-run-test-group :=
/art/tools/jfuzz/
Drun_jfuzz_test_nightly.py70 output_dirs.append(directory_match.group(1))
/art/tools/dexfuzz/src/dexfuzz/executors/
DDevice.java247 ret.add(m.group(1).trim().replace("\'", "")); in splitCommand()
/art/runtime/openjdkjvmti/include/
Djvmti.h1069 jthreadGroup group,
1074 jthreadGroup group,
1887 jvmtiError GetThreadGroupInfo(jthreadGroup group, in GetThreadGroupInfo()
1889 return functions->GetThreadGroupInfo(this, group, info_ptr); in GetThreadGroupInfo()
1892 jvmtiError GetThreadGroupChildren(jthreadGroup group, in GetThreadGroupChildren()
1897 …return functions->GetThreadGroupChildren(this, group, thread_count_ptr, threads_ptr, group_count_p… in GetThreadGroupChildren()
/art/runtime/interpreter/mterp/
Dgen_mterp.py262 opcodes.append("op_" + match.group(2).lower())