Home
last modified time | relevance | path

Searched refs:keys (Results 1 – 22 of 22) sorted by relevance

/cts/tools/dasm/src/dasm/
DDasmCatchBuilder.java121 Enumeration<CstType> keys = unprocessed_catches.elementAt(i) in getCatchTypes() local
122 .type_branch.keys(); in getCatchTypes()
123 while (keys.hasMoreElements()) { in getCatchTypes()
124 result.add(keys.nextElement().getClassType()); in getCatchTypes()
191 Enumeration<CstType> keys = uc.type_branch.keys(); in build() local
194 while (keys.hasMoreElements()) { in build()
195 CstType type = keys.nextElement(); in build()
DDAsm.java433 Enumeration<String> e = labels_table.keys(); in endMethod()
/cts/tests/tests/drm/src/android/drm/cts/
DDrmInfoRequestTest.java71 Iterator<String> keys = attributes.keySet().iterator(); in testPutAndGetKeys() local
72 while (keys.hasNext()) { in testPutAndGetKeys()
73 final String key = (String) keys.next(); in testPutAndGetKeys()
79 while (keys.hasNext()) { in testPutAndGetKeys()
80 final String key = (String) keys.next(); in testPutAndGetKeys()
DDrmInfoTest.java81 Iterator<String> keys = attributes.keySet().iterator(); in testPutAndGetKeys() local
82 while (keys.hasNext()) { in testPutAndGetKeys()
83 final String key = (String) keys.next(); in testPutAndGetKeys()
89 while (keys.hasNext()) { in testPutAndGetKeys()
90 final String key = (String) keys.next(); in testPutAndGetKeys()
/cts/tests/tests/os/src/android/os/cts/
DUsbDebuggingTest.java32 File keys = new File("/adb_keys"); in testUsbDebugging() local
33 assertFalse(keys.exists()); in testUsbDebugging()
/cts/suite/audio_quality/lib/src/task/
DTaskGeneric.cpp116 void TaskGeneric::registerSupportedStringAttributes(const android::String8* keys[]) in registerSupportedStringAttributes() argument
119 while (keys[i] != NULL) { in registerSupportedStringAttributes()
120 mAllowedStringAttributes.insert(*keys[i]); in registerSupportedStringAttributes()
/cts/suite/cts/utils/
Dget_csv_report.py155 keys = ["device", "board", "serial", "build", "data size"]
157 for i in xrange(len(keys)):
160 values.append(str(deviceResults[j].getInfoV(keys[i])))
161 reportInfo[keys[i]] = values
166 for key in deviceResult.getResults().keys():
/cts/suite/cts/deviceTests/browserbench/assets/octane/
Dsplay.js94 var keys = splayTree.exportKeys();
98 var length = keys.length;
105 if (keys[i] >= keys[i + 1]) {
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/
DStaticMetadataCollectionTest.java155 Iterator<?> keys = obj.keys(); in dumpJsonObjectAsCtsResult() local
156 while (keys.hasNext()) { in dumpJsonObjectAsCtsResult()
158 String key = (String)keys.next(); in dumpJsonObjectAsCtsResult()
DCaptureRequestTest.java538 List<Key<?>> keys = mStaticInfo.getCharacteristics().getKeys(); in testCameraStabilizations() local
539 if (!(keys.contains( in testCameraStabilizations()
541 keys.contains( in testCameraStabilizations()
1712 List<Key<?>> keys = mStaticInfo.getCharacteristics().getKeys();
1714 int[] videoStabModes = (keys.contains(CameraCharacteristics.
1717 int[] opticalStabModes = (keys.contains(
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/
DSensorStats.java161 List<String> keys = new ArrayList<>(flattenedStats.keySet()); in getSortedKeys() local
162 Collections.sort(keys); in getSortedKeys()
163 return keys; in getSortedKeys()
/cts/tests/tests/media/src/android/media/cts/
DClearKeySystemTest.java147 private String createJsonWebKeySet(Vector<String> keyIds, Vector<String> keys) { in createJsonWebKeySet() argument
151 String key = new String(keys.get(i).getBytes(Charset.forName("UTF-8"))); in createJsonWebKeySet()
191 Vector<String> keys = new Vector<String>(); in getKeys() local
195 keys.add(clearKey); in getKeys()
198 String jwkSet = createJsonWebKeySet(keyIds, keys); in getKeys()
DNativeDecoderTest.java507 Set<UUID> keys = map.keySet(); in testPssh() local
508 for (UUID uuid: keys) { in testPssh()
DDecoderTest.java640 String[] keys = new String[] { "max-input-size", "encoder-delay", "encoder-padding" }; in decodeToMemory() local
641 for (String k : keys) { in decodeToMemory()
/cts/suite/audio_quality/lib/include/task/
DTaskGeneric.h100 void registerSupportedStringAttributes(const android::String8* keys[]);
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
DStaticMetadata.java1875 Collection<CameraCharacteristics.Key<?>> keys) { in areCharacteristicsKeysAvailable() argument
1876 return mCharacteristics.getKeys().containsAll(keys); in areCharacteristicsKeysAvailable()
1892 public final boolean areResultKeysAvailable(Collection<CaptureResult.Key<?>> keys) { in areResultKeysAvailable() argument
1893 return mCharacteristics.getAvailableCaptureResultKeys().containsAll(keys); in areResultKeysAvailable()
1910 public final boolean areRequestKeysAvailable(Collection<CaptureRequest.Key<?>> keys) { in areRequestKeysAvailable() argument
1911 return mCharacteristics.getAvailableCaptureRequestKeys().containsAll(keys); in areRequestKeysAvailable()
1925 public final boolean areKeysAvailable(CameraCharacteristics.Key<?>... keys) { in areKeysAvailable() argument
1926 return areCharacteristicsKeysAvailable(Arrays.asList(keys)); in areKeysAvailable()
1943 public final boolean areKeysAvailable(CaptureResult.Key<?>... keys) { in areKeysAvailable() argument
1944 return areResultKeysAvailable(Arrays.asList(keys)); in areKeysAvailable()
[all …]
/cts/tests/tests/view/src/android/view/cts/
DKeyCharacterMapTest.java342 boolean[] keys = KeyCharacterMap.deviceHasKeys(keyChar); in testGetKeyData()
343 assertEquals(keyChar.length, keys.length); in testGetKeyData()
/cts/tools/utils/
Dmonsoon.py155 for k in status.keys():
/cts/apps/CtsVerifier/assets/scripts/power_monitors/
Dmonsoon.py270 for k in status.keys():
/cts/tests/tests/keystore/src/android/keystore/cts/
DTestUtils.java563 static Key getKeyForKeyAlgorithm(String keyAlgorithm, Iterable<? extends Key> keys) { in getKeyForKeyAlgorithm() argument
564 for (Key key : keys) { in getKeyForKeyAlgorithm()
/cts/tests/tests/provider/src/android/provider/cts/
DCalendarTest.java2024 Set<String> keys, Cursor cursor) { in verifyContentValuesAgainstCursor() argument
2032 for (String key : keys) { in verifyContentValuesAgainstCursor()
/cts/tools/dex-tools/dex/
Dclasses0.out.dex19164 public abstract java.util.Enumeration keys()
19264 public java.util.Enumeration keys()
30414 public abstract java.util.Set keys()
43957 transient java.lang.Enum[] keys
50518 public java.util.Enumeration keys()
57665 public abstract java.lang.String[] keys()
57859 public java.lang.String[] keys()
72734 private final java.util.Set keys
72783 public java.util.Set keys()
73552 private java.util.Hashtable keys
[all …]