Home
last modified time | relevance | path

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

12345678910>>...150

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DClassSection.java51 @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 …]
DMethodSection.java42 @Nonnull MethodRefKey getMethodReference(@Nonnull MethodKey key); in getMethodReference()
43 @Nonnull TypeKey getDefiningClass(@Nonnull MethodRefKey key); in getDefiningClass()
44 @Nonnull ProtoRefKey getPrototype(@Nonnull MethodRefKey key); in getPrototype()
45 @Nonnull ProtoRefKey getPrototype(@Nonnull MethodKey key); in getPrototype()
46 @Nonnull StringKey getName(@Nonnull MethodRefKey key); in getName()
47 int getMethodIndex(@Nonnull MethodKey key); in getMethodIndex()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowBundle.java34 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 …]
DShadowContentValues.java47 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/
DOutputProperties.java118 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/
DJSONObject.java177 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/
DForwardingNavigableMap.java62 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 …]
DAbstractNavigableMap.java39 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()
DMultimap.java187 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()
DFilteredEntryMultimap.java70 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 …]
DForwardingMultimap.java57 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/
DAtomicLongMapTest.java56 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/
DTestSharedPreferences.java33 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/
Dhost_key.c72 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/
DAtomicLongMapTest.java71 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/
Dcollection.js36 function SetFindEntry(table, numBuckets, key, hash) { argument
56 function MapFindEntry(table, numBuckets, key, hash) { argument
76 function ComputeIntegerHash(key, seed) { argument
89 function GetExistingHash(key) { argument
107 function GetHash(key) { argument
142 function SetAdd(key) { argument
182 function SetHas(key) { argument
194 function SetDelete(key) { argument
301 function MapGet(key) { argument
316 function MapSet(key, value) { argument
[all …]
/external/mockito/src/main/java/org/mockito/internal/util/concurrent/
DWeakConcurrentMap.java53 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/
Drdb_cache_manager.py129 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/python/cpython2/Lib/plat-mac/
Dic.py45 def _decode_default(data, key): argument
54 def _decode_multistr(data, key): argument
65 def _decode_fontrecord(data, key): argument
71 def _decode_boolean(data, key): argument
74 def _decode_text(data, key): argument
77 def _decode_charset(data, key): argument
80 def _decode_appspec(data, key): argument
84 def _code_default(data, key): argument
87 def _code_multistr(data, key): argument
94 def _code_fontrecord(data, key): argument
[all …]
/external/boringssl/src/crypto/fipsmodule/ec/
Dec_key.c229 int EC_KEY_is_opaque(const EC_KEY *key) { in EC_KEY_is_opaque()
233 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key) { return key->group; } in EC_KEY_get0_group()
235 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) { in EC_KEY_set_group()
253 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key) { in EC_KEY_get0_private_key()
257 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key) { in EC_KEY_set_private_key()
274 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key) { in EC_KEY_get0_public_key()
278 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub_key) { in EC_KEY_set_public_key()
294 unsigned int EC_KEY_get_enc_flags(const EC_KEY *key) { return key->enc_flag; } in EC_KEY_get_enc_flags()
296 void EC_KEY_set_enc_flags(EC_KEY *key, unsigned int flags) { in EC_KEY_set_enc_flags()
300 point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key) { in EC_KEY_get_conv_form()
[all …]
/external/python/cpython2/Python/
Dthread.c223 struct key { struct
225 struct key *next; argument
230 /* The key and its associated value. */ argument
231 int key; member
235 static struct key *keyhead = NULL; argument
261 find_key(int key, void *value) in find_key()
317 PyThread_delete_key(int key) in PyThread_delete_key()
342 PyThread_set_key_value(int key, void *value) in PyThread_set_key_value()
358 PyThread_get_key_value(int key) in PyThread_get_key_value()
370 PyThread_delete_key_value(int key) in PyThread_delete_key_value()
/external/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_batch_cache.c77 struct key { struct
88 static struct key * argument
91 struct key *key = in key_alloc() local
99 const struct key *key = _key; in key_hash() local
178 struct key *key = (struct key *)batch->key; in fd_bc_invalidate_batch() local
312 batch_from_key(struct fd_batch_cache *cache, struct key *key, in batch_from_key()
358 key_surf(struct key *key, unsigned idx, unsigned pos, struct pipe_surface *psurf) in key_surf()
371 struct key *key = key_alloc(n); in fd_batch_from_fb() local
/external/vboot_reference/host/lib/
Dhost_key.c25 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/mesa3d/src/mesa/main/
Dhash.c99 uint_key_hash(const void *key) in uint_key_hash()
176 _mesa_HashLookup_unlocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookup_unlocked()
203 _mesa_HashLookup(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookup()
226 _mesa_HashLookupLocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookupLocked()
263 _mesa_HashInsert_unlocked(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsert_unlocked()
299 _mesa_HashInsertLocked(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsertLocked()
314 _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsert()
333 _mesa_HashRemove_unlocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashRemove_unlocked()
357 _mesa_HashRemoveLocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashRemoveLocked()
363 _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key) in _mesa_HashRemove()
[all …]
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
DConcurrentHashMap.java56 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()

12345678910>>...150