/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | ClassSection.java | 51 @Nullable Map.Entry<? extends ClassKey, Integer> getClassEntryByType(@Nullable TypeKey key); in getClassEntryByType() 53 @Nonnull TypeKey getType(@Nonnull ClassKey key); in getType() 54 int getAccessFlags(@Nonnull ClassKey key); in getAccessFlags() 55 @Nullable TypeKey getSuperclass(@Nonnull ClassKey key); in getSuperclass() 56 @Nullable TypeListKey getInterfaces(@Nonnull ClassKey key); in getInterfaces() 57 @Nullable StringKey getSourceFile(@Nonnull ClassKey key); in getSourceFile() 58 @Nullable Collection<? extends EncodedValue> getStaticInitializers(@Nonnull ClassKey key); in getStaticInitializers() 60 @Nonnull Collection<? extends FieldKey> getSortedStaticFields(@Nonnull ClassKey key); in getSortedStaticFields() 61 @Nonnull Collection<? extends FieldKey> getSortedInstanceFields(@Nonnull ClassKey key); in getSortedInstanceFields() 62 @Nonnull Collection<? extends FieldKey> getSortedFields(@Nonnull ClassKey key); in getSortedFields() [all …]
|
D | MethodSection.java | 42 @Nonnull TypeKey getDefiningClass(@Nonnull MethodRefKey key); in getDefiningClass() 43 @Nonnull ProtoRefKey getPrototype(@Nonnull MethodRefKey key); in getPrototype() 44 @Nonnull ProtoRefKey getPrototype(@Nonnull MethodKey key); in getPrototype() 45 @Nonnull StringKey getName(@Nonnull MethodRefKey key); in getName() 46 int getMethodIndex(@Nonnull MethodKey key); in getMethodIndex()
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowBundle.java | 34 public void remove(String key) { in remove() 39 public Object get(String key) { in get() 44 public void putString(String key, String value) { in putString() 49 public String getString(String key) { in getString() 55 public String getString(String key, String defaultValue) { in getString() 64 public void putLong(String key, long value) { in putLong() 69 public long getLong(String key) { in getLong() 74 public long getLong(String key, long defaultValue) { in getLong() 80 public void putInt(String key, int value) { in putInt() 85 public int getInt(String key) { in getInt() [all …]
|
D | ShadowContentValues.java | 47 public void put(String key, String value) { in put() 57 public void put(String key, Byte value) { in put() 62 public void put(String key, Short value) { in put() 67 public void put(String key, Integer value) { in put() 72 public void put(String key, Long value) { in put() 77 public void put(String key, Float value) { in put() 82 public void put(String key, Double value) { in put() 87 public void put(String key, Boolean value) { in put() 92 public void put(String key, byte[] value) { in put() 97 public void putNull(String key) { in putNull() [all …]
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | OutputProperties.java | 118 public void setProperty(QName key, String value) in setProperty() 130 public void setProperty(String key, String value) in setProperty() 153 public String getProperty(QName key) in getProperty() 167 public String getProperty(String key) in getProperty() 182 public void setBooleanProperty(QName key, boolean value) in setBooleanProperty() 194 public void setBooleanProperty(String key, boolean value) in setBooleanProperty() 210 public boolean getBooleanProperty(QName key) in getBooleanProperty() 226 public boolean getBooleanProperty(String key) in getBooleanProperty() 238 public void setIntProperty(QName key, int value) in setIntProperty() 250 public void setIntProperty(String key, int value) in setIntProperty() [all …]
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/ |
D | JSONObject.java | 177 String key; in JSONObject() local 327 String key = ""; in populateInternalMap() local 436 public JSONObject accumulate(String key, Object value) in accumulate() 464 public JSONObject append(String key, Object value) in append() 513 public Object get(String key) throws JSONException { in get() 531 public boolean getBoolean(String key) throws JSONException { in getBoolean() 554 public double getDouble(String key) throws JSONException { in getDouble() 576 public int getInt(String key) throws JSONException { in getInt() 591 public JSONArray getJSONArray(String key) throws JSONException { in getJSONArray() 609 public JSONObject getJSONObject(String key) throws JSONException { in getJSONObject() [all …]
|
/external/guava/guava/src/com/google/common/collect/ |
D | ForwardingNavigableMap.java | 62 public Entry<K, V> lowerEntry(K key) { in lowerEntry() 71 protected Entry<K, V> standardLowerEntry(K key) { in standardLowerEntry() 76 public K lowerKey(K key) { in lowerKey() 85 protected K standardLowerKey(K key) { in standardLowerKey() 90 public Entry<K, V> floorEntry(K key) { in floorEntry() 99 protected Entry<K, V> standardFloorEntry(K key) { in standardFloorEntry() 104 public K floorKey(K key) { in floorKey() 113 protected K standardFloorKey(K key) { in standardFloorKey() 118 public Entry<K, V> ceilingEntry(K key) { in ceilingEntry() 127 protected Entry<K, V> standardCeilingEntry(K key) { in standardCeilingEntry() [all …]
|
D | AbstractNavigableMap.java | 39 public abstract V get(@Nullable Object key); in get() 87 public Entry<K, V> lowerEntry(K key) { in lowerEntry() 93 public Entry<K, V> floorEntry(K key) { in floorEntry() 99 public Entry<K, V> ceilingEntry(K key) { in ceilingEntry() 105 public Entry<K, V> higherEntry(K key) { in higherEntry() 110 public K lowerKey(K key) { in lowerKey() 115 public K floorKey(K key) { in floorKey() 120 public K ceilingKey(K key) { in ceilingKey() 125 public K higherKey(K key) { in higherKey()
|
D | Multimap.java | 187 boolean containsKey(@Nullable Object key); in containsKey() 199 boolean containsEntry(@Nullable Object key, @Nullable Object value); in containsEntry() 215 boolean put(@Nullable K key, @Nullable V value); in put() 225 boolean remove(@Nullable Object key, @Nullable Object value); in remove() 242 boolean putAll(@Nullable K key, Iterable<? extends V> values); in putAll() 264 Collection<V> replaceValues(@Nullable K key, Iterable<? extends V> values); in replaceValues() 277 Collection<V> removeAll(@Nullable Object key); in removeAll() 295 Collection<V> get(@Nullable K key); in get()
|
D | FilteredEntryMultimap.java | 70 private boolean satisfies(K key, V value) { in satisfies() 76 private final K key; field in FilteredEntryMultimap.ValuePredicate 78 ValuePredicate(K key) { in ValuePredicate() 98 public boolean containsKey(@Nullable Object key) { in containsKey() 103 public Collection<V> removeAll(@Nullable Object key) { in removeAll() 120 public Collection<V> get(final K key) { in get() 154 K key = entry.getKey(); in removeEntriesIf() local 170 public boolean containsKey(@Nullable Object key) { in containsKey() 180 public Collection<V> get(@Nullable Object key) { in get() 192 public Collection<V> remove(@Nullable Object key) { in remove() [all …]
|
D | ForwardingMultimap.java | 57 public boolean containsEntry(@Nullable Object key, @Nullable Object value) { in containsEntry() 62 public boolean containsKey(@Nullable Object key) { in containsKey() 77 public Collection<V> get(@Nullable K key) { in get() 97 public boolean put(K key, V value) { in put() 102 public boolean putAll(K key, Iterable<? extends V> values) { in putAll() 112 public boolean remove(@Nullable Object key, @Nullable Object value) { in remove() 117 public Collection<V> removeAll(@Nullable Object key) { in removeAll() 122 public Collection<V> replaceValues(K key, Iterable<? extends V> values) { in replaceValues()
|
/external/guava/guava-gwt/test-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/ |
D | AtomicLongMapTest.java | 56 String key = "key"; in testIncrementAndGet() local 72 String key = "key"; in testIncrementAndGet_zero() local 89 String key = "key"; in testGetAndIncrement() local 105 String key = "key"; in testGetAndIncrement_zero() local 122 String key = "key"; in testDecrementAndGet() local 138 String key = "key"; in testDecrementAndGet_zero() local 155 String key = "key"; in testGetAndDecrement() local 171 String key = "key"; in testGetAndDecrement_zero() local 188 String key = "key"; in testAddAndGet() local 205 String key = "key"; in testAddAndGet_zero() local [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/content/ |
D | TestSharedPreferences.java | 33 public String getString(String key, String defValue) { in getString() 37 private Object getValue(String key, Object defValue) { in getValue() 49 public int getInt(String key, int defValue) { in getInt() 54 public long getLong(String key, long defValue) { in getLong() 59 public float getFloat(String key, float defValue) { in getFloat() 64 public boolean getBoolean(String key, boolean defValue) { in getBoolean() 69 public boolean contains(String key) { in contains() 103 public Editor putString(String key, String value) { in putString() 110 public Editor putInt(String key, int value) { in putInt() 117 public Editor putLong(String key, long value) { in putLong() [all …]
|
/external/vboot_reference/host/lib21/ |
D | host_key.c | 72 void vb2_private_key_free(struct vb2_private_key *key) in vb2_private_key_free() 92 struct vb2_private_key *key; in vb2_private_key_unpack() local 185 struct vb2_private_key *key; in vb2_private_key_read_pem() local 214 int vb2_private_key_set_desc(struct vb2_private_key *key, const char *desc) in vb2_private_key_set_desc() 230 int vb2_private_key_write(const struct vb2_private_key *key, in vb2_private_key_write() 295 static const struct vb2_private_key key = { in vb2_private_key_hash() local 308 static const struct vb2_private_key key = { in vb2_private_key_hash() local 321 static const struct vb2_private_key key = { in vb2_private_key_hash() local 339 struct vb2_public_key *key; in vb2_public_key_alloc() local 361 void vb2_public_key_free(struct vb2_public_key *key) in vb2_public_key_free() [all …]
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | AtomicLongMapTest.java | 71 String key = "key"; in testIncrementAndGet() local 87 String key = "key"; in testIncrementAndGet_zero() local 104 String key = "key"; in testGetAndIncrement() local 120 String key = "key"; in testGetAndIncrement_zero() local 137 String key = "key"; in testDecrementAndGet() local 153 String key = "key"; in testDecrementAndGet_zero() local 170 String key = "key"; in testGetAndDecrement() local 186 String key = "key"; in testGetAndDecrement_zero() local 203 String key = "key"; in testAddAndGet() local 220 String key = "key"; in testAddAndGet_zero() local [all …]
|
/external/v8/src/js/ |
D | collection.js | 37 function SetFindEntry(table, numBuckets, key, hash) { argument 57 function MapFindEntry(table, numBuckets, key, hash) { argument 77 function ComputeIntegerHash(key, seed) { argument 90 function GetExistingHash(key) { argument 108 function GetHash(key) { argument 143 function SetAdd(key) { argument 183 function SetHas(key) { argument 195 function SetDelete(key) { argument 310 function MapGet(key) { argument 325 function MapSet(key, value) { argument [all …]
|
/external/mockito/src/main/java/org/mockito/internal/util/concurrent/ |
D | WeakConcurrentMap.java | 53 public V get(K key) { in get() 72 public boolean containsKey(K key) { in containsKey() 82 public V put(K key, V value) { in put() 91 public V remove(K key) { in remove() 110 protected V defaultValue(K key) { in defaultValue() 191 WeakKey(T key, ReferenceQueue<? super T> queue) { in WeakKey() 219 final T key; field in WeakConcurrentMap.LatentKey 223 LatentKey(T key) { in LatentKey() 253 public V get(K key) { in get() 259 public boolean containsKey(K key) { in containsKey() [all …]
|
/external/autotest/scheduler/ |
D | rdb_cache_manager.py | 129 def set(self, key, value): argument 138 def get(self, key): argument 148 def delete(self, key): argument 157 def has_key(self, key): argument 172 def get(self, key): argument 184 def get(self, key): argument 187 def set(self, key, value): argument 190 def delete(self, key): argument 193 def has_key(self, key): argument 204 key = collections.namedtuple('key', ['deps', 'acls']) variable in RDBHostCacheManager [all …]
|
/external/boringssl/src/crypto/ec/ |
D | ec_key.c | 232 int EC_KEY_is_opaque(const EC_KEY *key) { in EC_KEY_is_opaque() 236 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key) { return key->group; } in EC_KEY_get0_group() 238 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) { in EC_KEY_set_group() 254 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key) { in EC_KEY_get0_private_key() 258 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key) { in EC_KEY_set_private_key() 270 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key) { in EC_KEY_get0_public_key() 274 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub_key) { in EC_KEY_set_public_key() 280 unsigned int EC_KEY_get_enc_flags(const EC_KEY *key) { return key->enc_flag; } in EC_KEY_get_enc_flags() 282 void EC_KEY_set_enc_flags(EC_KEY *key, unsigned int flags) { in EC_KEY_set_enc_flags() 286 point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key) { in EC_KEY_get_conv_form() [all …]
|
/external/vboot_reference/host/lib/ |
D | host_key.c | 25 VbPrivateKey* key; in PrivateKeyReadPem() local 62 void PrivateKeyFree(VbPrivateKey* key) { in PrivateKeyFree() 72 int PrivateKeyWrite(const char* filename, const VbPrivateKey* key) { in PrivateKeyWrite() 110 VbPrivateKey *key; in PrivateKeyRead() local 149 VbPublicKey* key = (VbPublicKey*)malloc(sizeof(VbPublicKey) + key_size); in PublicKeyAlloc() local 162 VbPublicKey* key; in PublicKeyReadKeyb() local 200 int PublicKeyLooksOkay(VbPublicKey *key, uint64_t file_size) in PublicKeyLooksOkay() 230 VbPublicKey* key; in PublicKeyRead() local 245 int PublicKeyWrite(const char* filename, const VbPublicKey* key) { in PublicKeyWrite()
|
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/ |
D | ConcurrentHashMap.java | 56 public V putIfAbsent(K key, V value) { in putIfAbsent() 64 public boolean remove(Object key, Object value) { in remove() 73 public boolean replace(K key, V oldValue, V newValue) { in replace() 84 public V replace(K key, V value) { in replace() 94 @Override public boolean containsKey(Object key) { in containsKey() 101 @Override public V get(Object key) { in get() 108 @Override public V put(K key, V value) { in put() 122 @Override public V remove(Object key) { in remove()
|
/external/vulkan-validation-layers/layers/ |
D | vk_layer_table.cpp | 32 dispatch_key key = get_dispatch_key(object); in device_dispatch_table() local 39 dispatch_key key = get_dispatch_key(object); in instance_dispatch_table() local 53 void destroy_dispatch_table(device_table_map &map, dispatch_key key) { in destroy_dispatch_table() 66 void destroy_dispatch_table(instance_table_map &map, dispatch_key key) { in destroy_dispatch_table() 79 void destroy_device_dispatch_table(dispatch_key key) { destroy_dispatch_table(tableMap, key); } in destroy_device_dispatch_table() 81 void destroy_instance_dispatch_table(dispatch_key key) { destroy_dispatch_table(tableInstanceMap, k… in destroy_instance_dispatch_table() 84 dispatch_key key = get_dispatch_key(object); in get_dispatch_table() local 99 dispatch_key key = get_dispatch_key(object); in get_dispatch_table() local 140 dispatch_key key = get_dispatch_key(instance); in initInstanceTable() local 167 dispatch_key key = get_dispatch_key(device); in initDeviceTable() local
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
D | DESedeParameters.java | 12 byte[] key) in DESedeParameters() 30 byte[] key, in isWeakKey() 52 byte[] key, in isWeakKey() 64 public static boolean isRealEDEKey(byte[] key, int offset) in isRealEDEKey() 75 public static boolean isReal2Key(byte[] key, int offset) in isReal2Key() 95 public static boolean isReal3Key(byte[] key, int offset) in isReal3Key()
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/ |
D | ZHash.java | 44 public ValueType get(KeyType key) { in get() 58 public synchronized void addToTop(KeyType key, ValueType value) { in addToTop() 75 public synchronized void addToBottom(KeyType key, ValueType value) { in addToBottom() 116 public synchronized boolean moveToBottom(KeyType key) { in moveToBottom() 124 public synchronized boolean moveUp(KeyType key) { in moveUp() 132 public synchronized boolean moveDown(KeyType key) { in moveDown() 154 public synchronized boolean remove(KeyType key) { in remove()
|
/external/wpa_supplicant_8/src/crypto/ |
D | crypto_internal-rsa.c | 22 struct crypto_public_key * crypto_public_key_import(const u8 *key, size_t len) in crypto_public_key_import() 38 struct crypto_private_key * crypto_private_key_import(const u8 *key, in crypto_private_key_import() 72 int crypto_public_key_encrypt_pkcs1_v15(struct crypto_public_key *key, in crypto_public_key_encrypt_pkcs1_v15() 81 int crypto_private_key_decrypt_pkcs1_v15(struct crypto_private_key *key, in crypto_private_key_decrypt_pkcs1_v15() 90 int crypto_private_key_sign_pkcs1(struct crypto_private_key *key, in crypto_private_key_sign_pkcs1() 99 void crypto_public_key_free(struct crypto_public_key *key) in crypto_public_key_free() 105 void crypto_private_key_free(struct crypto_private_key *key) in crypto_private_key_free() 111 int crypto_public_key_decrypt_pkcs1(struct crypto_public_key *key, in crypto_public_key_decrypt_pkcs1()
|