Home
last modified time | relevance | path

Searched refs:names (Results 1 – 25 of 31) sorted by relevance

12

/cts/tests/expectations/
Dknownfailures.txt4 names: [
11 names: [
20 names: [
27 names: [
34 names: [
42 names: [
50 names: [
60 names: [
67 names: [
74 names: [
[all …]
Dunsupportedabis.txt4 names: [
/cts/apps/CameraITS/build/scripts/
Dgpylint_rcfile44 # A pattern for file names that should activate test mode.
103 # Regular expression which should only match correct argument names
106 # Regular expression which should only match correct instance attribute names
109 # List of builtins function names that should not be used, separated by a comma
112 # Bad variable names which should always be refused, separated by a comma
113 bad-names=
115 # Regular expression which should only match correct attribute names in class
119 # Regular expression which should only match correct class names
122 # Regular expression which should only match correct module level names
129 # Regular expression which should only match correct function names
[all …]
/cts/tools/utils/cts/
Dtools.py44 def Add(self, names): argument
45 if len(names) == 2:
47 test_case = self.test_cases.setdefault(names[0], [])
48 test_case.append(names[1])
50 sub_suite = self.test_suites.setdefault(names[0], TestPackage.TestSuite())
51 sub_suite.Add(names[1:])
/cts/tests/tests/os/src/android/os/cts/
DWorkSourceTest.java66 private WorkSource wsNew(int[] uids, String[] names) throws IllegalArgumentException, in wsNew() argument
70 wsAdd(ws, uids[i], names[i]); in wsNew()
72 checkWorkSource("Constructed", ws, uids, names); in wsNew()
106 private void printArrays(StringBuilder sb, int[] uids, String[] names) { in printArrays() argument
111 if (names != null) { in printArrays()
113 sb.append(names[i]); in printArrays()
129 private void failWorkSource(String op, WorkSource ws, int[] uids, String[] names) { in failWorkSource() argument
133 printArrays(sb, uids, names); in failWorkSource()
159 private void checkWorkSource(String op, WorkSource ws, int[] uids, String[] names) { in checkWorkSource() argument
170 failWorkSource(op, ws, uids, names); in checkWorkSource()
[all …]
/cts/tests/fragment/src/android/fragment/cts/
DFragmentTransitionTest.java281 ArgumentCaptor<List> names = ArgumentCaptor.forClass(List.class); in callStartEndWithSharedElements() local
284 verify(enterCallback).onSharedElementStart(names.capture(), views.capture(), in callStartEndWithSharedElements()
286 assertEquals(1, names.getValue().size()); in callStartEndWithSharedElements()
289 assertEquals("blueSquare", names.getValue().get(0)); in callStartEndWithSharedElements()
294 verify(enterCallback).onSharedElementEnd(names.capture(), views.capture(), in callStartEndWithSharedElements()
296 assertEquals(1, names.getValue().size()); in callStartEndWithSharedElements()
299 assertEquals("blueSquare", names.getValue().get(0)); in callStartEndWithSharedElements()
306 verify(enterCallback).onSharedElementStart(names.capture(), views.capture(), in callStartEndWithSharedElements()
308 assertEquals(1, names.getValue().size()); in callStartEndWithSharedElements()
311 assertEquals("blueSquare", names.getValue().get(0)); in callStartEndWithSharedElements()
[all …]
/cts/libs/vogar-expect/src/vogar/
DExpectationStore.java193 Set<String> names = new LinkedHashSet<String>(); in readExpectation() local
205 names.add(reader.nextString()); in readExpectation()
207 readStrings(reader, names); in readExpectation()
216 names.add(reader.nextString()); in readExpectation()
237 if (names.isEmpty()) { in readExpectation()
246 for (String name : names) { in readExpectation()
/cts/tests/tests/database/src/android/database/cts/
DMatrixCursorTest.java159 String[] names = mMatrixCursor.getColumnNames(); in testGetColumnNames() local
160 assertEquals(3, names.length); in testGetColumnNames()
161 assertEquals(COLUMN0_NAME, names[0]); in testGetColumnNames()
162 assertEquals(COLUMN1_NAME, names[1]); in testGetColumnNames()
163 assertEquals(COLUMN2_NAME, names[2]); in testGetColumnNames()
DAbstractCursorTest.java310 String[] names = mDatabaseCursor.getColumnNames(); in testGetColumnNames() local
311 assertEquals(COLUMN_NAMES1.length, names.length); in testGetColumnNames()
314 assertEquals(COLUMN_NAMES1[i], names[i]); in testGetColumnNames()
/cts/hostsidetests/theme/
Dandroid_device.py76 names = out.split()
80 return processName in names
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
DParentProfileTest.java135 private void assertValidMethodNames(Collection<String> names, Collection<Method> allMethods) { in assertValidMethodNames() argument
140 for (String name : names) { in assertValidMethodNames()
/cts/hostsidetests/sustainedperf/dhrystone/
DLICENSE.TXT32 * Neither the names of the LLVM Team, University of Illinois at
33 Urbana-Champaign, nor the names of its contributors may be used to
55 other licenses gives permission to use the names of the LLVM Team or the
/cts/apps/CtsVerifier/libs/
Dopencv-android_LICENSE20 * Neither the names of the copyright holders nor the names of the contributors
/cts/apps/CtsVerifier/res/raw/
Dopencv_library_license28 * Neither the names of the copyright holders nor the names of the contributors
/cts/tests/tests/icu/resources/android/icu/cts/expectations/
Dicu-known-failures.txt30 names: [
59 names: [
/cts/tools/dasm/src/dasm/
DDAsm.java752 String[] names = Utils.getClassMethodSignatureFromString(v2); in addOpcode() local
753 CstNat method_nat = new CstNat(new CstString(names[1]), in addOpcode()
754 new CstString(names[2])); in addOpcode()
764 .internClassName(names[0])), method_nat); in addOpcode()
826 String[] names = Utils.getClassMethodSignatureFromString(v2); in addOpcode() local
827 CstNat method_nat = new CstNat(new CstString(names[1]), in addOpcode()
828 new CstString(names[2])); in addOpcode()
838 .internClassName(names[0])), method_nat); in addOpcode()
1036 String[] names = Utils.getClassFieldFromString(v2); in addOpcode() local
1038 CstNat field_nat = new CstNat(new CstString(names[1]), in addOpcode()
[all …]
/cts/tests/tests/content/src/android/content/pm/cts/
DPackageManagerTest.java151 List<String> names = new ArrayList<String>(); in checkPermissionInfoName() local
153 names.add(permission.name); in checkPermissionInfoName()
155 boolean isContained = names.contains(expectedName); in checkPermissionInfoName()
156 assertTrue("Permission " + expectedName + " not present in " + names, isContained); in checkPermissionInfoName()
/cts/tools/dex-tools/test/dex/reader/
DDexFileReaderTests.java117 Set<String> names = new HashSet<String>(); in toStringSet() local
119 names.add(javaSource.getName()); in toStringSet()
122 return names; in toStringSet()
/cts/tests/tests/print/src/android/print/cts/
DPrinterInfoTest.java84 String[] names = { in createFirstMockPrinterDiscoverySessionCallbacks() local
127 for (String name : names) { in createFirstMockPrinterDiscoverySessionCallbacks()
/cts/hostsidetests/sustainedperf/shadertoy_android/src/
DGLtestView.java268 String[] names = { in printConfig() local
306 String name = names[i]; in printConfig()
/cts/tests/tests/opengl/src/android/opengl/cts/
DEglConfigGLSurfaceView.java280 String[] names = { in printConfig() local
318 String name = names[i]; in printConfig()
/cts/tests/jdwp/runner/host-side/resources/expectations/
Djdwp-known-failures.txt7 names: [
/cts/common/host-side/util/src/com/android/compatibility/common/util/
DDynamicConfigHandler.java63 JSONArray keys = configObject.names(); in parseJsonToConfigMap()
/cts/tests/autofillservice/src/android/autofillservice/cts/
DUiBot.java108 UiObject2 assertDatasets(String...names) { in assertDatasets() argument
111 .containsExactlyElementsIn(Arrays.asList(names)); in assertDatasets()
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
DModuleRepo.java586 String[] names = directory.list(new NameFilter(pattern)); in getModuleNamesMatching() local
587 List<String> modules = new ArrayList<String>(names.length); in getModuleNamesMatching()
588 for (String name : names) { in getModuleNamesMatching()

12