Home
last modified time | relevance | path

Searched refs:_key (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/io/
DSerializationHandleMap.java96 Object _key = key; in put() local
99 int index = findIndex(_key, keys); in put()
102 if (keys[index] != _key) { in put()
105 index = findIndex(_key, keys); in put()
108 keys[index] = _key; in put()
/libcore/luni/src/main/java/java/util/
DIdentityHashMap.java459 Object _key = key;
461 if (_key == null) {
462 _key = NULL_OBJECT;
469 int index = findIndex(_key, elementData);
472 if (elementData[index] != _key) {
476 index = findIndex(_key, elementData);
480 elementData[index] = _key;
/libcore/luni/src/main/java/java/security/
DProvider.java639 Object _key; in updatePropertyServiceTable() local
650 _key = entry.getKey(); in updatePropertyServiceTable()
652 if (_key == null || _value == null || !(_key instanceof String) in updatePropertyServiceTable()
656 String key = (String) _key; in updatePropertyServiceTable()