Home
last modified time | relevance | path

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

12345678910>>...134

/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 …]
/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()
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 …]
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()
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.js41 function SetFindEntry(table, numBuckets, key, hash) { argument
61 function MapFindEntry(table, numBuckets, key, hash) { argument
81 function ComputeIntegerHash(key, seed) { argument
94 function GetExistingHash(key) { argument
112 function GetHash(key) { argument
147 function SetAdd(key) { argument
187 function SetHas(key) { argument
199 function SetDelete(key) { argument
306 function MapGet(key) { argument
321 function MapSet(key, value) { argument
[all …]
/external/chromium-trace/catapult/dashboard/dashboard/
Dstored_object.py43 def Get(key): argument
59 def Set(key, value): argument
74 def Delete(key): argument
87 def _post_get_hook(cls, key, future): # pylint: disable=unused-argument argument
101 def _pre_delete_hook(cls, key): argument
145 def Get(cls, key): argument
165 def Set(cls, key, value): argument
179 def Delete(cls, key): argument
184 def _GetCacheKeyList(cls, key): argument
191 def _GetCacheKey(cls, key, index=None): argument
[all …]
Dnamespaced_stored_object.py11 def Get(key): argument
17 def GetExternal(key): argument
23 def Set(key, value): argument
29 def SetExternal(key, value): argument
35 def Delete(key): argument
43 def _NamespaceKey(key, namespace=None): argument
/external/autotest/scheduler/
Drdb_cache_manager.py123 def set(self, key, value): argument
132 def get(self, key): argument
142 def delete(self, key): argument
151 def has_key(self, key): argument
166 def get(self, key): argument
178 def get(self, key): argument
181 def set(self, key, value): argument
184 def delete(self, key): argument
187 def has_key(self, key): argument
198 key = collections.namedtuple('key', ['deps', 'acls']) variable in RDBHostCacheManager
[all …]
/external/chromium-trace/catapult/third_party/Paste/paste/util/
Dmultidict.py39 def __getitem__(self, key): argument
45 def __setitem__(self, key, value): argument
52 def add(self, key, value): argument
58 def getall(self, key): argument
68 def getone(self, key): argument
116 def __delitem__(self, key): argument
126 def __contains__(self, key): argument
140 def setdefault(self, key, default=None): argument
147 def pop(self, key, *args): argument
243 def _encode_key(self, key): argument
[all …]
/external/boringssl/src/crypto/ec/
Dec_key.c235 int EC_KEY_is_opaque(const EC_KEY *key) { in EC_KEY_is_opaque()
239 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key) { return key->group; } in EC_KEY_get0_group()
241 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) { in EC_KEY_set_group()
257 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key) { in EC_KEY_get0_private_key()
261 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key) { in EC_KEY_set_private_key()
273 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key) { in EC_KEY_get0_public_key()
277 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub_key) { in EC_KEY_set_public_key()
283 unsigned int EC_KEY_get_enc_flags(const EC_KEY *key) { return key->enc_flag; } in EC_KEY_get_enc_flags()
285 void EC_KEY_set_enc_flags(EC_KEY *key, unsigned int flags) { in EC_KEY_set_enc_flags()
289 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/
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/vulkan-validation-layers/layers/
Dvk_layer_table.cpp39 dispatch_key key = get_dispatch_key(object); in device_dispatch_table() local
46 dispatch_key key = get_dispatch_key(object); in instance_dispatch_table() local
60 void destroy_dispatch_table(device_table_map &map, dispatch_key key) { in destroy_dispatch_table()
73 void destroy_dispatch_table(instance_table_map &map, dispatch_key key) { in destroy_dispatch_table()
86 void destroy_device_dispatch_table(dispatch_key key) { destroy_dispatch_table(tableMap, key); } in destroy_device_dispatch_table()
88 void destroy_instance_dispatch_table(dispatch_key key) { destroy_dispatch_table(tableInstanceMap, k… in destroy_instance_dispatch_table()
91 dispatch_key key = get_dispatch_key(object); in get_dispatch_table() local
107 dispatch_key key = get_dispatch_key(object); in get_dispatch_table() local
148 dispatch_key key = get_dispatch_key(instance); in initInstanceTable() local
175 dispatch_key key = get_dispatch_key(device); in initDeviceTable() local
/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()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DDESedeParameters.java12 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/
DZHash.java44 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()

12345678910>>...134