Home
last modified time | relevance | path

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

12345678910>>...181

/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/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/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()
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/python/cpython3/Lib/test/
Dmake_ssl_certs.py110 def make_cert_key(hostname, sign=False, extra_san='', argument
203 cert, key = make_cert_key('localhost', ext='req_x509_extensions_simple') variable
221 cert, key = make_cert_key('fakehostname', ext='req_x509_extensions_simple') variable
226 cert, key = make_cert_key('localhost', True) variable
231 cert, key = make_cert_key('fakehostname', True) variable
236 cert, key = make_cert_key( variable
257 cert, key = make_cert_key('allsans', extra_san='\n'.join(extra_san)) variable
274 cert, key = make_cert_key('idnsans', True, extra_san='\n'.join(extra_san)) variable
/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-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/mesa3d/src/mesa/main/
Dhash.c107 _mesa_HashLookup_unlocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookup_unlocked()
136 _mesa_HashLookup(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookup()
158 _mesa_HashLookupLocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookupLocked()
165 _mesa_HashInsert_unlocked(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsert_unlocked()
201 _mesa_HashInsertLocked(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsertLocked()
216 _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsert()
234 _mesa_HashRemove_unlocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashRemove_unlocked()
258 _mesa_HashRemoveLocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashRemoveLocked()
264 _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key) in _mesa_HashRemove()
282 void (*callback)(GLuint key, void *data, void *userData), in _mesa_HashDeleteAll()
[all …]
/external/boringssl/src/crypto/fipsmodule/ec/
Dec_key.c212 int EC_KEY_is_opaque(const EC_KEY *key) { in EC_KEY_is_opaque()
216 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key) { return key->group; } in EC_KEY_get0_group()
218 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) { in EC_KEY_set_group()
236 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key) { in EC_KEY_get0_private_key()
240 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key) { in EC_KEY_set_private_key()
260 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key) { in EC_KEY_get0_public_key()
264 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/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/u-boot/fs/ubifs/
Dkey.h85 union ubifs_key *key, ino_t inum) in ino_key_init()
100 union ubifs_key *key = k; in ino_key_init_flash() local
114 union ubifs_key *key, ino_t inum) in lowest_ino_key()
127 union ubifs_key *key, ino_t inum) in highest_ino_key()
141 union ubifs_key *key, ino_t inum, in dent_key_init()
160 union ubifs_key *key, ino_t inum, in dent_key_init_hash()
178 union ubifs_key *key = k; in dent_key_init_flash() local
195 union ubifs_key *key, ino_t inum) in lowest_dent_key()
209 union ubifs_key *key, ino_t inum, in xent_key_init()
229 union ubifs_key *key = k; in xent_key_init_flash() local
[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/mockito/src/main/java/org/mockito/internal/util/concurrent/
DWeakConcurrentMap.java54 public V get(K key) { in get()
74 public boolean containsKey(K key) { in containsKey()
84 public V put(K key, V value) { in put()
94 public V remove(K key) { in remove()
113 protected V defaultValue(K key) { in defaultValue()
194 WeakKey(T key, ReferenceQueue<? super T> queue) { in WeakKey()
222 final T key; field in WeakConcurrentMap.LatentKey
226 LatentKey(T key) { in LatentKey()
256 public V get(K key) { in get()
262 public boolean containsKey(K key) { in containsKey()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/params/
DDESedeParameters.java16 byte[] key) in DESedeParameters()
34 byte[] key, in isWeakKey()
56 byte[] key, in isWeakKey()
68 public static boolean isRealEDEKey(byte[] key, int offset) in isRealEDEKey()
79 public static boolean isReal2Key(byte[] key, int offset) in isReal2Key()
99 public static boolean isReal3Key(byte[] key, int offset) in isReal3Key()
/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/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowSystemProperties.java18 protected static String native_get(String key) { in native_get()
23 protected static String native_get(String key, String def) { in native_get()
29 protected static int native_get_int(String key, int def) { in native_get_int()
35 protected static long native_get_long(String key, long def) { in native_get_long()
41 protected static boolean native_get_boolean(String key, boolean def) { in native_get_boolean()
60 protected static void native_set(String key, String val) { in native_set()
75 public static void override(String key, String val) { in override()
83 private static synchronized String getProperty(String key) { in getProperty()
/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/python/cpython2/Python/
Dthread.c226 struct key { struct
228 struct key *next; argument
233 /* The key and its associated value. */ argument
234 int key; argument
238 static struct key *keyhead = NULL; argument
264 find_key(int key, void *value) in find_key()
320 PyThread_delete_key(int key) in PyThread_delete_key()
345 PyThread_set_key_value(int key, void *value) in PyThread_set_key_value()
361 PyThread_get_key_value(int key) in PyThread_get_key_value()
373 PyThread_delete_key_value(int key) in PyThread_delete_key_value()
/external/boringssl/src/third_party/wycheproof_testvectors/
Dkwp_test.json14 "key" : "6f67486d1e914419cb43c28509c7c1ea", string
23 "key" : "a0b17172bb296db7f5c869e9a36b5ce3", string
32 "key" : "0e49d571c19b5250effd41d94bde39d6", string
41 "key" : "e0e12959109103e30ae8b5684a22e662", string
50 "key" : "dd583d9f1059861430ec8b5d8a180e9b", string
59 "key" : "faf5ccfae42b43cee2c5f0f3177a7c5d", string
68 "key" : "c2b9d23f2831ddcdeb456853d4014db9", string
77 "key" : "620a08f320cdedbf7ae551add348d95e", string
86 "key" : "ed089ac274f8c7cea2415671a94b5e53", string
95 "key" : "b6121acad51038e11873aaa7e6c7be06", string
[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/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()
/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>>...181