Home
last modified time | relevance | path

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

12

/cts/tools/tradefed-host/src/com/android/cts/tradefed/targetprep/
DSettingsToggler.java29 public static void setString(ITestDevice device, String group, String name, String value) in setString() argument
31 deleteSetting(device, group, name); in setString()
34 + " --uri content://settings/" + group in setString()
52 public static void setInt(ITestDevice device, String group, String name, int value) in setInt() argument
54 deleteSetting(device, group, name); in setInt()
57 + " --uri content://settings/" + group in setInt()
74 public static void updateString(ITestDevice device, String group, String name, String value) in updateString() argument
78 + " --uri content://settings/" + group in updateString()
93 public static void updateInt(ITestDevice device, String group, String name, int value) in updateInt() argument
97 + " --uri content://settings/" + group in updateInt()
[all …]
/cts/hostsidetests/atrace/src/android/atrace/cts/
DAtraceHostTest.java76 /*threadname*/ m.group(1), in parseLine()
77 /*pid*/ m.group(3).startsWith("-") ? -1 : Integer.parseInt(m.group(3)), in parseLine()
78 /*tid*/ Integer.parseInt(m.group(2)), in parseLine()
79 /*eventName*/ m.group(6), in parseLine()
80 /*details*/ m.group(7)); in parseLine()
87 /*threadname*/ m.group(1), in parseLine()
89 /*tid*/ Integer.parseInt(m.group(2)), in parseLine()
90 /*eventName*/ m.group(5), in parseLine()
91 /*details*/ m.group(6)); in parseLine()
98 /*threadname*/ m.group(1), in parseLine()
[all …]
/cts/tools/signature-tools/src/signature/io/html/
DTemplateStore.java28 private static StringTemplateGroup group = initialize(); field in TemplateStore
44 StringTemplateGroup group = new StringTemplateGroup("signature", null, in initialize() local
46 group.setSuperGroup(deltaGroup); in initialize()
49 return group; in initialize()
56 return group.getInstanceOf(name); in getStringTemplate()
/cts/tests/tests/provider/src/android/provider/cts/
DContactsContract_GroupMembershipTest.java52 TestGroup group = mBuilder.newGroup().insert(); in testAddGroupMembershipWithGroupRowId() local
54 .with(GroupMembership.GROUP_ROW_ID, group.getId()) in testAddGroupMembershipWithGroupRowId()
59 groupMembership.assertColumn(GroupMembership.GROUP_ROW_ID, group.getId()); in testAddGroupMembershipWithGroupRowId()
67 TestGroup group = mBuilder.newGroup() in testAddGroupMembershipWithGroupSourceId() local
79 groupMembership.assertColumn(GroupMembership.GROUP_ROW_ID, group.getId()); in testAddGroupMembershipWithGroupSourceId()
90 TestGroup group = mBuilder.newGroup() in testAddGroupMembershipWithUnknownGroupSourceId() local
100 groupMembership.assertColumn(GroupMembership.GROUP_ROW_ID, group.getId()); in testAddGroupMembershipWithUnknownGroupSourceId()
102 group.deletePermanently(); in testAddGroupMembershipWithUnknownGroupSourceId()
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DScriptGroupTest.java43 ScriptGroup group; in testScriptGroupSingleKernel() local
63 group = b.create(); in testScriptGroupSingleKernel()
65 group.setInput(mColorMatrix.getKernelID(), a1_copy); in testScriptGroupSingleKernel()
66 group.setOutput(mColorMatrix.getKernelID(), a2_copy); in testScriptGroupSingleKernel()
68 group.execute(); in testScriptGroupSingleKernel()
72 ScriptGroup group; in testScriptGroupDisconnectedKernel() local
97 group = b.create(); in testScriptGroupDisconnectedKernel()
106 ScriptGroup group; in testScriptGroupFieldConnection() local
137 group = b.create(); in testScriptGroupFieldConnection()
139 group.setInput(mColorMatrix.getKernelID(), a1_copy); in testScriptGroupFieldConnection()
[all …]
DImageProcessingTest.java292 ScriptGroup group; in testScriptGroup() local
325 group = b.create(); in testScriptGroup()
328 group.setOutput(mColorMatrix.getKernelID(), a2_copy); in testScriptGroup()
329 group.execute(); in testScriptGroup()
/cts/tests/tests/content/src/android/content/pm/cts/
DFeatureGroupInfoTest.java116 FeatureGroupInfo group = new FeatureGroupInfo(); in createFeatureGroup() local
117 group.features = featureInfos; in createFeatureGroup()
118 return group; in createFeatureGroup()
121 private static void sortFeatureInfos(FeatureGroupInfo[] group) { in sortFeatureInfos() argument
122 for (FeatureGroupInfo g : group) { in sortFeatureInfos()
DPermissionInfoTest.java56 assertEquals(expected.group, actual.group); in checkInfoSame()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DGeeTestResultParser.java409 String timeString = time.group(2); // the "XX" in "(XX ms)" in parseTestIdentifier()
410 String discardPortion = time.group(1); // everything after the test class/name in parseTestIdentifier()
440 mNumTestsExpected = Integer.parseInt(numTests.group(1)); in processRunStartedTag()
444 numTests.group(1)); in processRunStartedTag()
466 mTotalRunTime = Long.parseLong(time.group(1)); in processRunCompletedTag()
470 time.group(1)); in processRunCompletedTag()
/cts/tests/tests/widget/src/android/widget/cts/util/
DExpandableListScenario.java203 final int group = ExpandableListView.getPackedPositionGroup(packedPosition); in isOutOfBounds() local
204 if (group >= mGroups.size() || group < 0) { in isOutOfBounds()
210 if (child >= mGroups.get(group).children.size() || child < 0) { in isOutOfBounds()
/cts/suite/cts/deviceTests/browserbench/assets/octane/css/
Dbootstrap.css917 .control-group.warning > label,
918 .control-group.warning .help-block,
919 .control-group.warning .help-inline {
922 .control-group.warning input,
923 .control-group.warning select,
924 .control-group.warning textarea {
928 .control-group.warning input:focus,
929 .control-group.warning select:focus,
930 .control-group.warning textarea:focus {
936 .control-group.warning .input-prepend .add-on,
[all …]
/cts/suite/audio_quality/test_description/conf/
Ddetect_usb_audio.py44 print "___CTS_AUDIO_PASS___ " + line + " " + m.group(1)
/cts/suite/cts/deviceTests/browserbench/src/com/android/cts/browser/
DBrowserBenchTest.java94 int isFinal = Integer.parseInt(matchResult.group(1)); in setUp()
95 double score = Double.parseDouble(matchResult.group(2)); in setUp()
96 String message = matchResult.group(3); in setUp()
/cts/hostsidetests/usb/src/com/android/cts/usb/
DTestUsbTest.java101 String currentSerial = matcher.group(1).toLowerCase(); in testUsbSerial()
126 String currentSerial = matcher.group(1).toLowerCase(); in testUsbSerial()
/cts/tools/vm-tests-tf/src/util/build/
DBuildDalvikSuite.java664 entries.add((pName + ".d." + result.group(1)).trim());
670 String res = m.group(1);
678 String res = loadMatcher.group(1);
686 String res = loadAndRunMatcher.group(1);
769 String res = m.group(1);
775 title = titleM.group(1).replaceAll("\\n \\*", "");
787 constraint = constraintM.group(1);
/cts/tests/tests/permission2/src/android/permission2/cts/
DPermissionPolicyTest.java57 PERMISSION_GROUPS.contains(permission.group)); in testPlatformDefinedRuntimePermissionValid()
/cts/hostsidetests/security/src/android/cts/security/
DSELinuxHostTest.java724 String domainLabel = m.group(1); in createProcMap()
725 String user = m.group(2); in createProcMap()
726 int pid = Integer.parseInt(m.group(3)); in createProcMap()
727 int ppid = Integer.parseInt(m.group(4)); in createProcMap()
728 String procTitle = m.group(5); in createProcMap()
/cts/tests/tests/webkit/src/android/webkit/cts/
DWebViewStartupTest.java89 assertEquals("42", m.group(1)); // value got incremented in testCookieManagerBlockingUiThread()
DCookieManagerTest.java120 assertEquals("0", m.group(1)); in testAcceptCookie()
130 assertEquals("1", m.group(1)); // value got incremented in testAcceptCookie()
141 assertEquals("42", m.group(1)); // value got incremented in testAcceptCookie()
DWebSettingsTest.java133 if (patternMatcher.group(3) != null) { in testUserAgentString_default()
135 assertEquals(currentLocale.getLanguage().toLowerCase(), patternMatcher.group(4)); in testUserAgentString_default()
136 assertEquals(currentLocale.getCountry().toLowerCase(), patternMatcher.group(5)); in testUserAgentString_default()
140 assertEquals(Build.MODEL, patternMatcher.group(6)); in testUserAgentString_default()
142 assertEquals(Build.VERSION.RELEASE, patternMatcher.group(2)); in testUserAgentString_default()
144 assertEquals(Build.ID, patternMatcher.group(7)); in testUserAgentString_default()
/cts/tests/tests/calllog/src/android/calllog/cts/
DCallLogBackupTest.java167 previouslyEnabled = "enabled".equals(matcher.group(1)); in enableBackup()
191 return matcher.group(1); in setBackupTransport()
/cts/tests/tests/os/src/android/os/cts/
DCpuFeaturesTest.java66 return m.group(1); in getFieldFromCpuinfo()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DTestPackageResult.java264 result.setSummary(m.group(1)); in populateMetrics()
265 result.setDetails(m.group(2)); in populateMetrics()
/cts/libs/vogar-expect/src/vogar/util/
DStrings.java110 result.append(escapeCodePoint(matcher.group())); in xmlSanitize()
/cts/tests/tests/widget/src/android/widget/cts/
DGridLayoutTest.java219 private void testAlignment(int row, int col, Alignment a, View v0, View v1, String group) { in testAlignment() argument
223 " aligned with its title " + group + ";", in testAlignment()

12