HomeSort by relevance Sort by last modified time
    Searched refs:group (Results 1 - 25 of 5065) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/bt/
BUILD.gn 24 group("bluetooth") {
31 group("bluetooth_tests") {
43 group("test_tools") {
  /frameworks/support/buildSrc/
dependencies.gradle 20 exclude group: 'androidx.annotation'
25 exclude group: 'net.bytebuddy'
29 exclude group: 'com.android.support'
30 exclude group: 'androidx.annotation'
35 exclude group: 'androidx.annotation'
36 exclude group: 'androidx.core'
37 exclude group: 'androidx.legacy'
38 exclude group: 'androidx.fragment'
39 exclude group: 'androidx.transition'
40 exclude group: 'androidx.appcompat
    [all...]
  /libcore/ojluni/src/main/java/java/util/regex/
MatchResult.java 33 * groups and group boundaries can be seen but not modified through
54 * Returns the start index of the subsequence captured by the given group
58 * to right, starting at one. Group zero denotes the entire pattern, so
62 * @param group
63 * The index of a capturing group in this matcher's pattern
65 * @return The index of the first character captured by the group,
66 * or <tt>-1</tt> if the match was successful but the group
74 * If there is no capturing group in the pattern
77 public int start(int group);
92 * captured by the given group during this match
135 public String group(); method in interface:MatchResult
172 public String group(int group); method in interface:MatchResult
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
bad-group.d 1 #name: Check bad group
2 #error-output: bad-group.err
group0b.d 2 #name: group section
6 COMDAT group section \[ 1\] `\.group' \[.foo_group\] contains 2 sections:
groupautob.d 2 #name: automatic section group b
6 COMDAT group section \[ 1\] `\.group' \[some_group\] contains 2 sections:
group1b.d 2 #name: group section with multiple sections of same name
6 COMDAT group section \[ 1\] `\.group' \[.foo_group\] contains 1 sections:
  /bionic/tests/headers/posix/
grp_h.c 34 TYPE(struct group);
35 STRUCT_MEMBER(struct group, char*, gr_name);
36 STRUCT_MEMBER(struct group, gid_t, gr_gid);
37 STRUCT_MEMBER(struct group, char**, gr_mem);
43 FUNCTION(getgrent, struct group* (*f)(void));
44 FUNCTION(getgrgid, struct group* (*f)(gid_t));
45 FUNCTION(getgrgid_r, int (*f)(gid_t, struct group*, char*, size_t, struct group**));
46 FUNCTION(getgrnam, struct group* (*f)(const char*));
47 FUNCTION(getgrnam_r, int (*f)(const char*, struct group*, char*, size_t, struct group**))
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ilp32/elf/
group0b.d 3 #name: group section
6 COMDAT group section \[ 1\] `\.group' \[\.foo_group\] contains 2 sections:
group1b.d 3 #name: group section with multiple sections of same name
6 COMDAT group section \[ 1\] `\.group' \[\.foo_group\] contains 1 sections:
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
group10.d 2 #ld: -r -T group.ld
6 group section \[[ 0-9]+\] `\.group' \[foo_group\] contains 4 sections:
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateTests.cpp 5 * Copyright (c) 2015 The Khronos Group Inc.
42 void createChildren (tcu::TestCaseGroup* group)
44 tcu::TestContext& testCtx = group->getTestContext();
46 group->addChild(new DynamicStateVPTests(testCtx));
47 group->addChild(new DynamicStateRSTests(testCtx));
48 group->addChild(new DynamicStateCBTests(testCtx));
49 group->addChild(new DynamicStateDSTests(testCtx));
50 group->addChild(new DynamicStateGeneralTests(testCtx));
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawTests.cpp 5 * Copyright (c) 2015 The Khronos Group Inc.
44 void createChildren (tcu::TestCaseGroup* group)
46 tcu::TestContext& testCtx = group->getTestContext();
48 group->addChild(new SimpleDrawTests (testCtx));
49 group->addChild(new DrawIndexedTests (testCtx));
50 group->addChild(new IndirectDrawTests (testCtx));
51 group->addChild(createBasicDrawTests (testCtx));
52 group->addChild(new InstancedTests (testCtx));
53 group->addChild(new ShaderDrawParametersTests (testCtx));
54 group->addChild(createNegativeViewportHeightTests (testCtx))
    [all...]
  /art/test/169-threadgroup-jni/src/
Main.java 21 ThreadGroup group = new ThreadGroup("Test group"); local
22 group.setDaemon(true);
24 testNativeThread(group);
29 if (!group.isDestroyed()) {
38 private static native void testNativeThread(ThreadGroup group);
  /cts/tests/app/src/android/app/cts/
NotificationChannelGroupTest.java 32 NotificationChannelGroup group = new NotificationChannelGroup("1", "1"); local
33 assertEquals(expected, group.describeContents());
37 NotificationChannelGroup group = new NotificationChannelGroup("1", "one"); local
38 assertEquals("1", group.getId());
39 assertEquals("one", group.getName());
40 assertFalse(group.isBlocked());
41 assertNull(group.getDescription());
42 assertEquals(0, group.getChannels().size());
46 NotificationChannelGroup group = new NotificationChannelGroup("1", "one"); local
47 group.setBlocked(true)
52 NotificationChannelGroup group = new NotificationChannelGroup("1", "one"); local
64 NotificationChannelGroup group = new NotificationChannelGroup("1", "one"); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/multiview/
vktMultiViewRenderTests.hpp 7 * Copyright (c) 2017 The Khronos Group Inc.
34 void multiViewRenderCreateTests (tcu::TestCaseGroup* group);
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiDisplayTests.hpp 7 * Copyright (c) 2017 The Khronos Group Inc.
34 void createDisplayCoverageTests (tcu::TestCaseGroup* group);
  /libcore/ojluni/src/main/java/sun/nio/ch/
Groupable.java 30 * asynchronous channel group.
34 AsynchronousChannelGroupImpl group(); method in interface:Groupable
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
last.l 2 .*:4: Error: .* must be last in instruction group
3 .*:10: Error: .* must be last in instruction group
  /external/ltp/runtest/
net_stress.multicast 5 mcast4-group-single-socket mcast-group-single-socket
6 mcast4-group-multiple-socket mcast-group-multiple-socket
7 mcast4-group-same-group mcast-group-same-group
8 mcast4-group-source-filter mcast-group-source-filte
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
strip-2.d 2 #source: group.s
5 #name: strip with section group 2
8 \[[ 0-9]+\] \.group[ \t]+GROUP[ \t]+.*
14 COMDAT group section \[[ 0-9]+\] `\.group' \[foo_group\] contains 2 sections:
strip-5.d 2 #source: group-2.s
5 #name: strip with section group 5
8 \[[ 0-9]+\] .group[ \t]+GROUP[ \t]+.*
14 COMDAT group section \[[ 0-9]+\] `.group' \[.text.foo\] contains 2 sections:
strip-7.d 2 #source: group-3.s
5 #name: strip with section group 7
8 \[[ 0-9]+\] .group[ \t]+GROUP[ \t]+.*
14 COMDAT group section \[[ 0-9]+\] `.group' \[foo3\] contains 2 sections:
strip-9.d 2 #source: group-4.s
5 #name: strip with section group 9
8 \[[ 0-9]+\] .group[ \t]+GROUP[ \t]+.*
14 COMDAT group section \[[ 0-9]+\] `.group' \[foo4\] contains 2 sections:
  /frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
BatteryStatsParser.java 55 if (lineMatcher.find() && lineMatcher.group(1) != null && lineMatcher.group(2) != null) {
56 if (lineMatcher.group(1).equals("0")) {
57 return "0," + lineMatcher.group(2) + "\n";
59 Matcher timeMatcher = TIME_PATTERN.matcher(lineMatcher.group(1));
61 Long time = getTime(lineMatcher.group(1));
63 return time + "," + lineMatcher.group(2) + "\n";
76 private Long getTime(String group) {
77 if ("0".equals(group)) {
80 Matcher timeMatcher = TIME_PATTERN.matcher(group);
    [all...]

Completed in 694 milliseconds

1 2 3 4 5 6 7 8 91011>>