Searched defs:put (Results 76 - 85 of 85) sorted by relevance

1234

/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DSynchronousQueue.java71 * time either holds "data" -- items provided by put operations,
80 * defining the single method transfer that does a put or a
82 * data structures, the put and take operations are symmetrical,
139 * Performs a put or take.
483 * from non-null to null (for put) or vice versa (for take).
808 public void put(E o) throws InterruptedException { method in class:SynchronousQueue
/dalvik/libcore/luni/src/main/java/java/io/
H A DObjectOutputStream.java145 * the value that is put to the persistent field.
147 public abstract void put(String name, boolean value); method in class:ObjectOutputStream.PutField
156 * the value that is put to the persistent field.
158 public abstract void put(String name, char value); method in class:ObjectOutputStream.PutField
167 * the value that is put to the persistent field.
169 public abstract void put(String name, byte value); method in class:ObjectOutputStream.PutField
178 * the value that is put to the persistent field.
180 public abstract void put(String name, short value); method in class:ObjectOutputStream.PutField
189 * the value that is put to the persistent field.
191 public abstract void put(Strin method in class:ObjectOutputStream.PutField
202 public abstract void put(String name, long value); method in class:ObjectOutputStream.PutField
213 public abstract void put(String name, float value); method in class:ObjectOutputStream.PutField
224 public abstract void put(String name, double value); method in class:ObjectOutputStream.PutField
235 public abstract void put(String name, Object value); method in class:ObjectOutputStream.PutField
[all...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DHashMap.java70 * constructor). It is never written to, and replaced on first put. Its size
130 threshold = -1; // Forces first put invocation to replace EMPTY_TABLE
150 threshold = -1; // Forces first put() to replace EMPTY_TABLE
388 @Override public V put(K key, V value) { method in class:HashMap
439 * This method is just like put, except that it doesn't do things that
474 * inserts it into the hash table. This method is called by put
484 * inserts it into the hash table. This method is called by put
1019 fields.put("loadFactor", DEFAULT_LOAD_FACTOR);
H A DHashtable.java56 * constructor). It is never written to, and replaced on first put. Its size
111 threshold = -1; // Forces first put invocation to replace EMPTY_TABLE
130 threshold = -1; // Forces first put() to replace EMPTY_TABLE
263 * @see #put
367 public synchronized V put(K key, V value) { method in class:Hashtable
396 * This method is just like put, except that it doesn't do things that
430 put(e.getKey(), e.getValue());
555 * @see #put
1114 fields.put("threshold", (int) (DEFAULT_LOAD_FACTOR * table.length));
1115 fields.put("loadFacto
[all...]
H A DTreeMap.java112 return put(key, object);
709 public V put(K key, V value) { method in class:TreeMap.SubMap
711 return backingMap.put(key, value);
1448 public V put(K key, V value) { method in class:TreeMap
H A DCollections.java774 public V put(K key, V value) { method in class:Collections.SynchronizedMap
776 return m.put(key, value);
1347 public V put(K key, V value) { method in class:Collections.UnmodifiableMap
1871 @SuppressWarnings("unchecked") // we won't put foreign objects in
3158 * @see java.util.Map#put(Object, Object)
3160 public V put(K key, V value) { method in class:Collections.CheckedMap
3161 return m.put(checkType(key, keyType), checkType(value, valueType));
3190 m.put(entries[i].getKey(), entries[i].getValue());
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
H A DURLConnectionTest.java279 public CacheRequest put(URI arg0, URLConnection arg1) method in class:URLConnectionTest.MockCachedResponseCache
297 public CacheRequest put(URI arg0, URLConnection arg1) method in class:URLConnectionTest.MockNonCachedResponseCache
436 map.put("hi", Arrays.asList(new String[] { "bye" }));
455 map.put("hi", Arrays.asList(new String[] { "bye" }));
1291 headers.put("hi", Arrays.asList(new String[] { "bye" }));
1459 headers.put("hi", "bye");
/dalvik/libcore/prefs/src/main/java/java/util/prefs/
H A DAbstractPreferences.java606 currentNode.cachedNode.put(name, temp);
663 public void put(String key, String value) { method in class:AbstractPreferences
680 put(key, sval);
686 put(key, Base64.encode(value, "US-ASCII")); //$NON-NLS-1$
695 put(key, sval);
701 put(key, sval);
707 put(key, sval);
713 put(key, sval);
743 cachedNode.put(childrenNames[i], child);
/dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
H A DPreferencesTest.java249 prefs.put("prefskey", "oldvalue");
250 prefs.put("prefskey2", "oldvalue2");
512 method = "put",
644 p.put(null, null);
748 pref.put("testClearKey", "testClearValue");
749 pref.put("testClearKey1", "testClearValue1");
773 pref.put("testGetkey", "value");
819 pref.put("testGetBooleanKey", "false");
820 pref.put("testGetBooleanKey2", "value");
844 pref.put("testGetByteArrayKe
1917 public void put(String key, String value) { method in class:PreferencesTest.MockPreferences
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DToHTMLStream.java70 m_elementFlags.put("BASEFONT", new ElemDesc(0 | ElemDesc.EMPTY));
71 m_elementFlags.put(
74 m_elementFlags.put("FRAMESET", new ElemDesc(0 | ElemDesc.BLOCK));
75 m_elementFlags.put("NOFRAMES", new ElemDesc(0 | ElemDesc.BLOCK));
76 m_elementFlags.put(
79 m_elementFlags.put(
82 m_elementFlags.put("CENTER", new ElemDesc(0 | ElemDesc.BLOCK));
83 m_elementFlags.put("DIR", new ElemDesc(0 | ElemDesc.BLOCK));
84 m_elementFlags.put("MENU", new ElemDesc(0 | ElemDesc.BLOCK));
87 m_elementFlags.put("T
2090 public Object put(String key, Object value) method in class:ToHTMLStream.Trie
[all...]

Completed in 263 milliseconds

1234