Home
last modified time | relevance | path

Searched defs:key (Results 1 – 25 of 83) sorted by relevance

1234

/cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
DStaticMetadata.java387 Key<Float> key = CameraCharacteristics.LENS_INFO_MINIMUM_FOCUS_DISTANCE; in getMinimumFocusDistanceChecked() local
420 Key<Integer> key = CameraCharacteristics.LENS_INFO_FOCUS_DISTANCE_CALIBRATION; in getFocusDistanceCalibrationChecked() local
478 Key<int[]> key = CameraCharacteristics.CONTROL_AE_AVAILABLE_ANTIBANDING_MODES; in getAeAvailableAntiBandingModesChecked() local
516 Key<Boolean> key = CameraCharacteristics.FLASH_INFO_AVAILABLE; in getFlashInfoChecked() local
528 Key<int[]> key = in getAvailableTestPatternModesChecked() local
550 Key<Size[]> key = CameraCharacteristics.JPEG_AVAILABLE_THUMBNAIL_SIZES; in getAvailableThumbnailSizesChecked() local
578 Key<float[]> key = CameraCharacteristics.LENS_INFO_AVAILABLE_FOCAL_LENGTHS; in getAvailableFocalLengthsChecked() local
599 Key<float[]> key = CameraCharacteristics.LENS_INFO_AVAILABLE_APERTURES; in getAvailableAperturesChecked() local
620 Key<int[]> key = CameraCharacteristics.HOT_PIXEL_AVAILABLE_HOT_PIXEL_MODES; in getAvailableHotPixelModesChecked() local
656 Key<int[]> key = CameraCharacteristics.STATISTICS_INFO_AVAILABLE_FACE_DETECT_MODES; in getAvailableFaceDetectModesChecked() local
[all …]
DCameraErrorCollector.java637 CameraCharacteristics.Key<T> key) { in expectKeyValueNotNull()
656 CaptureRequest.Key<T> key) { in expectKeyValueNotNull()
673 public <T> T expectKeyValueNotNull(Builder request, CaptureRequest.Key<T> key) { in expectKeyValueNotNull()
690 public <T> T expectKeyValueNotNull(CaptureResult result, CaptureResult.Key<T> key) { in expectKeyValueNotNull()
702 public <T> T expectKeyValueNotNull(String msg, CaptureResult result, CaptureResult.Key<T> key) { in expectKeyValueNotNull()
720 Builder request, CaptureRequest.Key<T> key, T expected) { in expectKeyValueNotEquals()
742 CaptureResult result, CaptureResult.Key<T> key, T expected) { in expectKeyValueNotEquals()
763 public <T> void expectKeyValueEquals(CaptureResult result, CaptureResult.Key<T> key, in expectKeyValueEquals()
788 public <T> void expectKeyValueEquals(Builder request, CaptureRequest.Key<T> key, T expected) { in expectKeyValueEquals()
811 CaptureResult result, CaptureResult.Key<T> key, T expected) { in expectKeyValueGreaterOrEqual()
[all …]
/cts/suite/cts/deviceTests/browserbench/assets/octane/
Dsplay.js160 SplayTree.prototype.insert = function(key, value) { argument
193 SplayTree.prototype.remove = function(key) { argument
224 SplayTree.prototype.find = function(key) { argument
252 SplayTree.prototype.findGreatestLessThan = function(key) { argument
293 SplayTree.prototype.splay_ = function(key) { argument
361 SplayTree.Node = function(key, value) { argument
/cts/tests/tests/keystore/src/android/keystore/cts/
DMacTest.java214 SecretKey key = importDefaultKatKey(algorithm); in testAndroidKeyStoreKeysHandledByAndroidKeyStoreProvider() local
231 SecretKey key = importDefaultKatKey(algorithm); in testMacGeneratedForEmptyMessage() local
252 SecretKey key = importDefaultKatKey(algorithm); in testMacGeneratedByAndroidKeyStoreVerifiesByAndroidKeyStore() local
273 SecretKey key = getDefaultKatKey(algorithm); in testMacGeneratedByAndroidKeyStoreVerifiesByHighestPriorityProvider() local
296 SecretKey key = getDefaultKatKey(algorithm); in testMacGeneratedByHighestPriorityProviderVerifiesByAndroidKeyStore() local
322 SecretKey key = TestUtils.importIntoAndroidKeyStore( in testSmallMsgKat() local
355 SecretKey key = importDefaultKatKey(algorithm); in testLargeMsgKat() local
460 SecretKey key, in assertMacVerifiesOneShot()
469 SecretKey key, in assertMacVerifiesOneShot()
486 SecretKey key, in assertMacDoesNotVerifyOneShot()
[all …]
DSecretKeyFactoryTest.java113 SecretKey key = keyGenerator.generateKey(); in testGetKeySpecWithKeystoreKeyAndKeyInfoReflectsAllAuthorizations() local
154 SecretKey key = new SecretKeySpec(new byte[16], algorithm); in testTranslateKeyRejectsNonAndroidKeystoreKeys() local
172 SecretKey key = keyGenerator.generateKey(); in testTranslateKeyAcceptsAndroidKeystoreKeys() local
DKeyGeneratorTest.java207 SecretKey key = keyGenerator.generateKey(); in testDefaultKeySize() local
236 SecretKey key = keyGenerator.generateKey(); in testAesKeySupportedSizes() local
276 SecretKey key = keyGenerator.generateKey(); in testHmacKeySupportedSizes() local
312 SecretKey key = keyGenerator.generateKey(); in testHmacKeyOnlyOneDigestCanBeAuthorized() local
492 SecretKey key = keyGenerator.generateKey(); in testGenerateHonorsRequestedAuthorizations() local
DAESGCMCipherTestBase.java181 Key key = importKey(getKatKey()); in testCiphertextBitflipDetectedWhenDecrypting() local
193 Key key = importKey(getKatKey()); in testAadBitflipDetectedWhenDecrypting() local
DKeyInfoTest.java59 PrivateKey key = keyPair.getPrivate(); in testImmutabilityViaGetterReturnValues() local
DTestUtils.java117 static int getKeySizeBits(Key key) { in getKeySizeBits()
177 private static void assertKeyMaterialExportable(Key key) { in assertKeyMaterialExportable()
194 private static void assertKeyMaterialNotExportable(Key key) { in assertKeyMaterialNotExportable()
199 private static void assertOpaqueKey(Key key) { in assertOpaqueKey()
203 private static void assertTransparentKey(Key key) { in assertTransparentKey()
207 private static boolean isTransparentKey(Key key) { in isTransparentKey()
245 static KeyInfo getKeyInfo(Key key) throws InvalidKeySpecException, NoSuchAlgorithmException, in getKeyInfo()
419 SecretKey key, in importIntoAndroidKeyStore()
729 static boolean isKeyLongEnoughForSignatureAlgorithm(String algorithm, Key key) { in isKeyLongEnoughForSignatureAlgorithm()
760 static int getMaxSupportedPlaintextInputSizeBytes(String transformation, Key key) { in getMaxSupportedPlaintextInputSizeBytes()
/cts/tests/sample/src/android/sample/
DSampleDeviceActivity.java47 public void savePreference(String key, String value) { in savePreference()
62 public String getPreference(String key) { in getPreference()
/cts/tests/tests/preference2/src/android/preference2/cts/
DPreferenceTest.java111 String key = mPreference.getKey(); in testGetKey() local
117 final String key = "key1"; in testSetKey() local
184 String key = "" + Math.random(); in testPersistInt() local
201 String key = "" + Math.random(); in testPersistBoolean() local
219 String key = "" + Math.random(); in testPersistString() local
237 String key = "" + Math.random(); in testPersistFloat() local
255 String key = "" + Math.random(); in testPersistLong() local
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/
DSensorStats.java69 public synchronized void addValue(String key, Object value) { in addValue()
83 public synchronized void addSensorStats(String key, SensorStats stats) { in addSensorStats()
102 public synchronized Object getValue(String key) { in getValue()
118 String key = statsEntry.getKey() + DELIMITER + valueEntry.getKey(); in flatten() local
/cts/tests/leanbackjank/src/android/cts/leanbackjank/
DCtsJankTestBase.java34 private void printIntValueWithKey(String source, Bundle metrics, String key, in printIntValueWithKey()
42 private void printDoubleValueWithKey(String source, Bundle metrics, String key, in printDoubleValueWithKey()
/cts/tests/tests/drm/src/android/drm/cts/
DDrmInfoRequestTest.java73 final String key = (String) keys.next(); in testPutAndGetKeys() local
80 final String key = (String) keys.next(); in testPutAndGetKeys() local
86 final String key = (String) infoKeys.next(); in testPutAndGetKeys() local
DDrmInfoTest.java83 final String key = (String) keys.next(); in testPutAndGetKeys() local
90 final String key = (String) keys.next(); in testPutAndGetKeys() local
96 final String key = (String) infoKeys.next(); in testPutAndGetKeys() local
/cts/common/util/src/com/android/compatibility/common/util/
DKeyValueArgsParser.java32 String key = null; in parse() local
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
DSensorOperation.java78 protected void addSensorStats(String key, SensorStats stats) { in addSensorStats()
88 protected void addSensorStats(String key, int index, SensorStats stats) { in addSensorStats()
/cts/tools/signature-tools/src/signature/converter/dex/
DFieldPool.java66 FieldKey key = new FieldKey(qualifiedClassName, fieldName); in getField() local
77 FieldKey key = new FieldKey(qualifiedName, fieldName); in getEnumConstant() local
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DBleScannerHardwareScanFilterActivity.java148 public void addItem(String key) { in addItem()
164 String key = mKeys.get(pos); in getView() local
/cts/tools/signature-tools/src/signature/model/util/
DTypePool.java56 String key = packageName + "<>" + className; in getClass() local
116 TypeVariableKey key = new TypeVariableKey(name, genericDeclaration); in containsTypeVariableDefinition() local
125 TypeVariableKey key = new TypeVariableKey(name, genericDeclaration); in getTypeVariable() local
/cts/suite/audio_quality/lib/src/task/
DTaskGeneric.cpp125 bool TaskGeneric::addStringAttribute(const android::String8& key, const android::String8& value) in addStringAttribute()
135 bool TaskGeneric::findStringAttribute(const android::String8& key, android::String8& value) const in findStringAttribute() argument
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
DAllocationCache.java82 AllocationKey key = new AllocationKey(type, usage); in getOrCreateTyped() local
123 AllocationKey key = new AllocationKey(allocation.getType(), usage); in returnToCache() local
/cts/tests/tests/view/src/android/view/inputmethod/cts/
DEditorInfoTest.java47 String key = "bundleKey"; in testEditorInfo() local
/cts/common/host-side/xml-plan-generator/src/com/android/compatibility/common/xmlgenerator/
DTestListParser.java52 final String key = parts[0]; in parse() local
/cts/suite/audio_quality/test/
DTaskTest.cpp57 bool addStringAttributePublic(const android::String8& key, android::String8& value){ in addStringAttributePublic()
60 bool findStringAttributePublic(const android::String8& key, android::String8& value){ in findStringAttributePublic()

1234