Home
last modified time | relevance | path

Searched refs:table (Results 1 – 14 of 14) sorted by relevance

/libcore/luni/src/main/java/java/lang/
DThreadLocal.java56 Object[] table = values.table; in get() local
58 if (this.reference == table[index]) { in get()
59 return (T) table[index + 1]; in get()
160 private Object[] table; field in ThreadLocal.Values
190 this.table = fromParent.table.clone(); in Values()
205 Object[] table = this.table; in inheritValues() local
206 for (int i = table.length - 2; i >= 0; i -= 2) { in inheritValues()
207 Object k = table[i]; in inheritValues()
223 table[i + 1] = key.childValue(fromParent.table[i + 1]); in inheritValues()
226 table[i] = TOMBSTONE; in inheritValues()
[all …]
/libcore/luni/src/main/java/java/util/
DListResourceBundle.java29 HashMap<String, Object> table; field in ListResourceBundle
52 Iterator<String> local = table.keySet().iterator(); in getKeys()
64 if (!table.containsKey(next)) { in getKeys()
94 Iterator<String> it = table.keySet().iterator(); in getKeys()
113 return table.get(key);
117 if (table == null) {
119 table = new HashMap<String, Object>(contents.length / 3 * 4 + 3);
124 table.put((String) content[0], content[1]);
137 return table.keySet();
DHashMap.java90 transient HashMapEntry<K, V>[] table; field in HashMap
126 table = (HashMapEntry<K, V>[]) EMPTY_TABLE; in HashMap()
146 table = tab; in HashMap()
205 if (table == EMPTY_TABLE) { in constructorPutAll()
244 result.makeTable(table.length); in clone()
301 HashMapEntry<K, V>[] tab = table; in get()
326 HashMapEntry<K, V>[] tab = table; in containsKey()
346 HashMapEntry[] tab = table; in containsValue()
386 HashMapEntry<K, V>[] tab = table; in put()
449 HashMapEntry<K, V>[] tab = table; in constructorPut()
[all …]
DHashtable.java74 private transient HashtableEntry<K, V>[] table; field in Hashtable
106 table = (HashtableEntry<K, V>[]) EMPTY_TABLE; in Hashtable()
125 table = tab; in Hashtable()
181 if (table == EMPTY_TABLE) { in constructorPutAll()
222 result.makeTable(table.length); in clone()
266 HashtableEntry<K, V>[] tab = table; in get()
290 HashtableEntry<K, V>[] tab = table; in containsKey()
314 HashtableEntry[] tab = table; in containsValue()
365 HashtableEntry<K, V>[] tab = table; in put()
401 HashtableEntry<K, V>[] tab = table; in constructorPut()
[all …]
DLinkedHashMap.java196 key, value, hash, table[index], header, oldTail); in addNewEntry()
197 table[index] = oldTail.nxt = header.prv = newTail; in addNewEntry()
251 HashMapEntry<K, V>[] tab = table; in get()
DHashSet.java188 stream.writeInt(backingMap.table.length); in writeObject()
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
DmySSLSession.java26 private Hashtable table; field in mySSLSession
37 table = new Hashtable(); in mySSLSession()
128 Object obj1 = table.put(s, obj); in putValue()
142 Object obj = table.remove(s); in removeValue()
153 return table.get(s); in getValue()
159 Enumeration enumeration = table.keys(); in getValueNames()
/libcore/luni/src/main/java/java/sql/
DDatabaseMetaData.java585 String table, int scope, boolean nullable) throws SQLException; in getBestRowIdentifier() argument
660 String table, String columnNamePattern) throws SQLException; in getColumnPrivileges() argument
1022 public ResultSet getExportedKeys(String catalog, String schema, String table) in getExportedKeys() argument
1131 public ResultSet getImportedKeys(String catalog, String schema, String table) in getImportedKeys() argument
1203 public ResultSet getIndexInfo(String catalog, String schema, String table, in getIndexInfo() argument
1488 public ResultSet getPrimaryKeys(String catalog, String schema, String table) in getPrimaryKeys() argument
2102 String table) throws SQLException; in getVersionColumns() argument
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DSecurity2Test.java104 private void addOrIncrementTable(Map<String, Integer> table, String k) { in addOrIncrementTable() argument
106 if (table.containsKey(key)) { in addOrIncrementTable()
107 int before = table.get(key); in addOrIncrementTable()
108 table.put(key, before + 1); in addOrIncrementTable()
110 table.put(key, 1); in addOrIncrementTable()
/libcore/luni/src/main/java/org/xml/sax/helpers/
DNamespaceSupport.java639 Hashtable table; in processName() local
646 table = attributeNameTable; in processName()
648 table = elementNameTable; in processName()
654 name = (String[])table.get(qName); in processName()
703 table.put(name[2], name); in processName()
/libcore/luni/src/main/java/java/text/
DDateFormat.java694 private static Hashtable<Integer, Field> table = new Hashtable<Integer, Field>(); field in DateFormat.Field
806 if (calendarField != -1 && table.get(Integer.valueOf(calendarField)) == null) { in Field()
807 table.put(Integer.valueOf(calendarField), this); in Field()
836 return table.get(Integer.valueOf(calendarField)); in ofCalendarField()
/libcore/luni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java578 transient volatile Node<K,V>[] table; field in ConcurrentHashMap
747 if ((tab = table) != null && (n = tab.length) > 0 && in get()
791 if ((t = table) != null) { in containsValue()
824 for (Node<K,V>[] tab = table;;) { in putVal()
917 for (Node<K,V>[] tab = table;;) { in replaceNode()
992 Node<K,V>[] tab = table; in clear()
1100 if ((t = table) != null) { in hashCode()
1121 int f = (t = table) == null ? 0 : t.length; in toString()
1157 int f = (t = table) == null ? 0 : t.length; in equals()
1218 if ((t = table) != null) { in writeObject()
[all …]
/libcore/luni/src/test/java/tests/java/sql/
DDatabaseMetaDataTest.java1853 String table = rs.getString("TABLE_NAME"); in crossCheckGetColumnsAndResultSetMetaData() local
1856 "SELECT * FROM " + schema+"."+table); in crossCheckGetColumnsAndResultSetMetaData()
1875 table, rs.getString("TABLE_NAME")); in crossCheckGetColumnsAndResultSetMetaData()
/libcore/benchmarks/libs/
Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...