Searched refs:group (Results 1 – 8 of 8) sorted by relevance
/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)) 112 enum_text = m_comment.group(1) 128 enum_value = m.group(1) 137 rest = m.group(2).strip() 140 rest = rest[(len(m_literal.group(0))):]
|
D | cpplint.py | 376 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 …]
|
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)
|
D | checker.py | 536 return list(map(lambda group: self._processGroup(group[0], group[1], group[2]), allGroups)) 694 for group in self.groups: 695 if group.name == name: 696 return group 719 for group in outputFile.groups: 720 Logger.log(group.name) 725 group = outputFile.findGroup(groupName) 726 if group: 727 lineNo = group.lineNo 728 maxLineNo = lineNo + len(group.body) [all …]
|
/art/test/ |
D | Android.run-test.mk | 871 define define-test-art-run-test-group 880 …$(call define-test-art-run-test-group,test-art-$(target)-run-test,$(ART_RUN_TEST_$(call name-to-va… 883 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(prebuild),$(ART_RUN_TEST_$(cal… 886 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(run-type),$(ART_RUN_TEST_$(cal… 889 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(compiler),$(ART_RUN_TEST_$(cal… 892 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(relocate),$(ART_RUN_TEST_$(cal… 895 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(trace),$(ART_RUN_TEST_$(call n… 898 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(gc),$(ART_RUN_TEST_$(call name… 901 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(jni),$(ART_RUN_TEST_$(call nam… 904 …$(call define-test-art-run-test-group,test-art-$(target)-run-test-$(debuggable),$(ART_RUN_TEST_$(c… [all …]
|
/art/runtime/ |
D | java_vm_ext.cc | 338 thread_group = args->group; in AttachCurrentThreadInternal()
|
D | debugger.cc | 2060 mirror::Object* group = f->GetObject(thread_object); in GetThreadGroup() local 2061 CHECK(group != nullptr); in GetThreadGroup() 2062 JDWP::ObjectId thread_group_id = gRegistry->Add(group); in GetThreadGroup() 2193 mirror::Object* group = f->GetObject(f->GetDeclaringClass()); in GetSystemThreadGroupId() local 2194 return gRegistry->Add(group); in GetSystemThreadGroupId() 2289 mirror::Object* group = thread_group_field->GetObject(peer); in IsInDesiredThreadGroup() local 2290 return (group == desired_thread_group); in IsInDesiredThreadGroup()
|
D | thread.cc | 1508 ScopedLocalRef<jobject> group(soa.Env(), soa.AddLocalReference<jobject>(ogroup)); in RemoveFromThreadGroup() local 1511 tlsPtr_.jni_env->CallVoidMethod(group.get(), in RemoveFromThreadGroup()
|