/art/compiler/ |
D | generate-operator-out.py | 60 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/ |
D | generate-operator-out.py | 60 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))):]
|
D | cpplint.py | 380 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 …]
|
D | analyze-init-failures.py | 57 failed_clazz = m.group(1).replace('/','.') 67 error = m.group(1) 75 method = m.group(1) 95 method = m.group(1)
|
/art/runtime/ |
D | generate-operator-out.py | 60 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))):]
|
D | debugger.cc | 2051 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()
|
D | java_vm_ext.cc | 393 thread_group = args->group; in AttachCurrentThreadInternal()
|
D | thread.cc | 2188 ScopedLocalRef<jobject> group(soa.Env(), soa.AddLocalReference<jobject>(ogroup)); in RemoveFromThreadGroup() local 2191 tlsPtr_.jni_env->CallVoidMethod(group.get(), in RemoveFromThreadGroup()
|
/art/tools/checker/ |
D | README | 11 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/ |
D | ti_threadgroup.cc | 91 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()
|
D | ti_threadgroup.h | 47 jthreadGroup group, 51 jthreadGroup group,
|
D | ti_thread.cc | 211 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()
|
D | OpenjdkJvmTi.cc | 247 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/ |
D | threadgroups.cc | 58 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/ |
D | run_build_test_target.py | 40 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.')
|
D | testrunner.py | 781 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 …]
|
D | env.py | 71 key = match.group(1) 72 value = match.group(2)
|
/art/test/ |
D | Android.run-test.mk | 185 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/ |
D | run_jfuzz_test_nightly.py | 70 output_dirs.append(directory_match.group(1))
|
/art/tools/dexfuzz/src/dexfuzz/executors/ |
D | Device.java | 247 ret.add(m.group(1).trim().replace("\'", "")); in splitCommand()
|
/art/runtime/openjdkjvmti/include/ |
D | jvmti.h | 1069 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/ |
D | gen_mterp.py | 262 opcodes.append("op_" + match.group(2).lower())
|