/external/v8/test/mjsunit/ |
H A D | property-object-key.js | 28 var key = { toString: function() { return 'baz'; } } 31 assertEquals(42, object[key]); 32 object[key] = 87; 33 assertEquals(87, object[key]); 34 object[key]++; 35 assertEquals(88, object[key]);
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-push-args-twice.js | 32 for (var key = 0; key != 10; key++) {
|
H A D | regress-1066899.js | 31 for (var key in [0]) {
|
H A D | regress-357103.js | 9 var key = "Huckleberry Finn" + "Tom Sawyer"; variable 11 function f() { o[key] = "Adventures"; }
|
H A D | regress-284.js | 32 for (var key in [0]) { 43 for (var key in [0]) {
|
H A D | regress-119925.js | 32 for (var key in [(1.2)]) { }
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
H A D | RC2Parameters.java | 8 private byte[] key; field in class:RC2Parameters 12 byte[] key) 14 this(key, (key.length > 128) ? 1024 : (key.length * 8)); 18 byte[] key, 21 this.key = new byte[key.length]; 24 System.arraycopy(key, 0, this.key, 11 RC2Parameters( byte[] key) argument 17 RC2Parameters( byte[] key, int bits) argument [all...] |
H A D | KeyParameter.java | 8 private byte[] key; field in class:KeyParameter 11 byte[] key) 13 this(key, 0, key.length); 17 byte[] key, 21 this.key = new byte[keyLen]; 23 System.arraycopy(key, keyOff, this.key, 0, keyLen); 28 return key; 10 KeyParameter( byte[] key) argument 16 KeyParameter( byte[] key, int keyOff, int keyLen) argument
|
H A D | DESedeParameters.java | 12 byte[] key) 14 super(key); 16 if (isWeakKey(key, 0, key.length)) 18 throw new IllegalArgumentException("attempt to create weak DESede key"); 23 * return true if the passed in key is a DES-EDE weak key. 25 * @param key bytes making up the key 26 * @param offset offset into the byte array the key start 11 DESedeParameters( byte[] key) argument 29 isWeakKey( byte[] key, int offset, int length) argument 51 isWeakKey( byte[] key, int offset) argument [all...] |
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/ |
H A D | HeaderProperty.java | 5 * HeaderProperty is a key - value pojo for storing http header properties. 8 private String key; field in class:HeaderProperty 11 public HeaderProperty(String key, String value) { argument 12 this.key = key; 17 return key; 20 public void setKey(String key) { argument 21 this.key = key;
|
/external/v8/test/mjsunit/es6/regress/ |
H A D | regress-2034.js | 28 var key = {}; 30 Object.preventExtensions(key); 32 // Try querying using frozen key. 33 assertFalse(map.has(key)); 34 assertSame(undefined, map.get(key)); 36 // Try adding using frozen key. 37 map.set(key, 1); 38 assertTrue(map.has(key)); 39 assertSame(1, map.get(key)); 41 // Try deleting using frozen key [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
H A D | SystemProperty.java | 17 private String key; field in class:SystemProperty 25 System.setProperty(key, value); 26 if (System.getProperty(key).equals(value)) 27 System.out.println("System property "+key+" set to "+System.getProperty(key)); 29 System.out.println("System property "+key+" could not be set. Currently set to "+System.getProperty(key)); 34 return key; 37 public void setKey(String key) { argument 38 this.key [all...] |
/external/srtp/crypto/kernel/ |
H A D | key.c | 2 * key.c 4 * key usage limits enforcement 45 #include "key.h" 50 key_limit_set(key_limit_t key, const xtd_seq_num_t s) { argument 58 key->num_left = s; 59 key->state = key_state_normal; 72 key_limit_check(const key_limit_t key) { argument 73 if (key->state == key_state_expired) 79 key_limit_update(key_limit_t key) { argument 81 if (low32(key [all...] |
/external/vboot_reference/firmware/lib20/ |
H A D | packed_key.c | 12 const uint8_t *vb2_packed_key_data(const struct vb2_packed_key *key) argument 14 return (const uint8_t *)key + key->key_offset; 19 const struct vb2_packed_key *key) 22 key, sizeof(*key), 23 key->key_offset, key->key_size); 26 int vb2_unpack_key(struct vb2_public_key *key, argument 36 /* Make sure passed buffer is big enough for the packed key */ 17 vb2_verify_packed_key_inside(const void *parent, uint32_t parent_size, const struct vb2_packed_key *key) argument [all...] |
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/common/ |
H A D | utils.js | 7 Object.keys(optObj).forEach(function (key) { 8 merged[key] = optObj[key];
|
/external/vogar/src/vogar/ |
H A D | FileCache.java | 26 boolean existsInCache(String key); argument 28 void copyToCache(File source, String key); argument 30 void copyFromCache(String key, File destination); argument
|
/external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
H A D | AssetInfo.java | 46 protected AssetKey key; field in class:AssetInfo 48 public AssetInfo(AssetManager manager, AssetKey key) { argument 50 this.key = key; 54 return key; 63 return getClass().getName() + "[" + "key=" + key + "]";
|
/external/toybox/toys/other/ |
H A D | sysctl.c | 20 -N Don't print key values 21 -n Don't print key names 30 static char *split_key(char *key) argument 32 char *value = strchr(key, '='); 44 static void key_error(char *key) argument 47 if (!(toys.optflags & FLAG_e)) error_msg("unknown key '%s'", key); 48 } else perror_msg("key '%s'", key); 51 static int write_key(char *path, char *key, cha argument 69 char *path, *data, *key; local 94 process_key(char *key, char *value) argument 128 char *line = 0, *key, *val; local [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/content/ |
H A D | TestSharedPreferences.java | 33 public String getString(String key, String defValue) { argument 34 return (String) getValue(key, defValue); 37 private Object getValue(String key, Object defValue) { argument 40 Object value = fileHash.get(key); 49 public int getInt(String key, int defValue) { argument 50 return (Integer) getValue(key, defValue); 54 public long getLong(String key, long defValue) { argument 55 return (Long) getValue(key, defValue); 59 public float getFloat(String key, float defValue) { argument 60 return (Float) getValue(key, defValu 64 getBoolean(String key, boolean defValue) argument 69 contains(String key) argument 103 putString(String key, String value) argument 110 putInt(String key, int value) argument 117 putLong(String key, long value) argument 124 putFloat(String key, float value) argument 131 putBoolean(String key, boolean value) argument 138 remove(String key) argument 176 putStringSet(String key, Set<String> values) argument 182 getStringSet(String key, Set<String> defValues) argument [all...] |
/external/llvm/lib/Support/Unix/ |
H A D | ThreadLocal.inc | 30 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data); 31 int errorcode = pthread_key_create(key, nullptr); 37 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data); 38 int errorcode = pthread_key_delete(*key); 44 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data); 45 int errorcode = pthread_setspecific(*key, d); 51 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data); 52 return pthread_getspecific(*key);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/ |
H A D | SwitchLabelElement.java | 37 public final int key; field in class:SwitchLabelElement 40 public SwitchLabelElement(int key, @Nonnull Label target) { argument 41 this.key = key;
|
/external/vboot_reference/tests/ |
H A D | rsa_padding_test.c | 17 static void TestSignatures(RSAPublicKey* key) { argument 22 TEST_EQ(RSAVerify(key, signatures[0], RSA1024NUMBYTES, 0, 28 if (RSAVerify(key, signatures[i], RSA1024NUMBYTES, 0, 40 static void TestRSAVerify(RSAPublicKey* key) { argument 43 TEST_EQ(RSAVerify(key, signatures[0], RSA1024NUMBYTES, 0, 45 TEST_EQ(RSAVerify(key, signatures[0], RSA1024NUMBYTES - 1, 0, 47 TEST_EQ(RSAVerify(key, signatures[0], RSA1024NUMBYTES, kNumAlgorithms, 49 TEST_EQ(RSAVerify(key, signatures[0], RSA1024NUMBYTES, 3, 55 TEST_EQ(RSAVerify(key, sig, RSA1024NUMBYTES, 0, test_message_sha1_hash), 0, 60 TEST_EQ(RSAVerify(key, si 67 RSAPublicKey* key; local [all...] |
/external/vboot_reference/host/lib21/ |
H A D | host_key.c | 72 void vb2_private_key_free(struct vb2_private_key *key) argument 74 if (!key) 77 if (key->rsa_private_key) 78 RSA_free(key->rsa_private_key); 80 if (key->desc) 81 free(key->desc); 83 free(key); 92 struct vb2_private_key *key; local 101 * TODO: If it doesn't match, pass through to the old packed key format. 109 /* Make sure key dat 185 struct vb2_private_key *key; local 214 vb2_private_key_set_desc(struct vb2_private_key *key, const char *desc) argument 230 vb2_private_key_write(const struct vb2_private_key *key, const char *filename) argument 295 static const struct vb2_private_key key = { local 308 static const struct vb2_private_key key = { local 321 static const struct vb2_private_key key = { local 339 struct vb2_public_key *key; local 361 vb2_public_key_free(struct vb2_public_key *key) argument 372 vb2_public_key_packed_data(struct vb2_public_key *key) argument 380 struct vb2_public_key *key = NULL; local 420 vb2_public_key_set_desc(struct vb2_public_key *key, const char *desc) argument 439 struct vb2_public_key key; local 460 struct vb2_packed_key key = { local 516 vb2_public_key_hash(struct vb2_public_key *key, enum vb2_hash_algorithm hash_alg) argument 564 vb2_public_key_write(const struct vb2_public_key *key, const char *filename) argument [all...] |
/external/wpa_supplicant_8/hostapd/src/tls/ |
H A D | rsa.c | 18 int private_key; /* whether private key is set */ 56 * crypto_rsa_import_public_key - Import an RSA public key 57 * @buf: Key buffer (DER encoded RSA public key) 59 * Returns: Pointer to the public key or %NULL on failure 64 struct crypto_rsa_key *key; local 68 key = os_zalloc(sizeof(*key)); 69 if (key == NULL) 72 key->n = bignum_init(); 73 key 123 struct crypto_rsa_key *key; local 151 struct crypto_rsa_key *key; local 249 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) argument 265 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) argument 362 crypto_rsa_free(struct crypto_rsa_key *key) argument [all...] |
/external/wpa_supplicant_8/src/tls/ |
H A D | rsa.c | 18 int private_key; /* whether private key is set */ 56 * crypto_rsa_import_public_key - Import an RSA public key 57 * @buf: Key buffer (DER encoded RSA public key) 59 * Returns: Pointer to the public key or %NULL on failure 64 struct crypto_rsa_key *key; local 68 key = os_zalloc(sizeof(*key)); 69 if (key == NULL) 72 key->n = bignum_init(); 73 key 123 struct crypto_rsa_key *key; local 151 struct crypto_rsa_key *key; local 249 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) argument 265 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) argument 362 crypto_rsa_free(struct crypto_rsa_key *key) argument [all...] |