Searched defs:put (Results 51 - 75 of 282) sorted by relevance

1234567891011>>

/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DLruCache.java50 public Y put(T key, Y item) { method in class:LruCache
57 final Y result = cache.put(key, item);
/external/guava/guava/src/com/google/common/cache/
H A DCache.java34 * {@link #get(K, Callable)} or {@link #put(K, V)}, and are stored in the cache until either
97 void put(K key, V value); method in interface:Cache
H A DForwardingCache.java76 public void put(K key, V value) { method in class:ForwardingCache
77 delegate().put(key, value);
/external/guava/guava/src/com/google/common/collect/
H A DImmutableClassToInstanceMap.java46 * .put(FooHandler.class, new FooHandler())
47 * .put(BarHandler.class, new SubBarHandler())
48 * .put(Handler.class, new QuuxHandler())
65 public <T extends B> Builder<B> put(Class<T> key, T value) { method in class:ImmutableClassToInstanceMap.Builder
66 mapBuilder.put(key, value);
84 mapBuilder.put(type, cast(type, value));
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DConcurrentHashMap.java58 return put(key, value);
77 put(key, newValue);
88 return put(key, value);
108 @Override public V put(K key, V value) { method in class:ConcurrentHashMap
112 return backingMap.put(key, value);
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DMapPutTester.java32 * A generic JUnit test which tests {@code put} operations on a map. Can't be
58 assertNull("put(notPresent, value) should return null", put(samples.e3));
65 put(samples.e3);
66 fail("put(notPresent, value) should throw");
77 assertEquals("put(present, existingValue) should return present or throw",
78 samples.e0.getValue(), put(samples.e0));
88 getMap().put(samples.e0.getKey(), samples.e3.getValue());
89 fail("put(present, differentValue) should throw");
97 assertNull("put(nul
193 private V put(Map.Entry<K, V> entry) { method in class:MapPutTester
[all...]
/external/javassist/src/main/javassist/scopedpool/
H A DSoftValueHashMap.java202 public Object put(Object key, Object value) { method in class:SoftValueHashMap
204 Object rtn = hash.put(key, SoftValueRef.create(key, value, queue));
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DAnnotationWriter.java256 * @param out where the annotations must be put.
258 void put(final ByteVector out) { method in class:AnnotationWriter
285 * @param out where the annotations must be put.
287 static void put( method in class:AnnotationWriter
H A DAttribute.java238 final void put( method in class:Attribute
H A DFieldWriter.java212 * @param out where the content of this field must be put.
214 void put(final ByteVector out) { method in class:FieldWriter
259 anns.put(out);
263 ianns.put(out);
266 attrs.put(cw, null, 0, -1, -1, out);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
H A DDummyMap.java50 public V put(K key, V value) { method in class:DummyMap
/external/nist-sip/java/gov/nist/core/
H A DMultiValueMapImpl.java44 public List<V> put(String key, V value) { method in class:MultiValueMapImpl
48 map.put(key, keyList);
138 public List<V> put(String key, List<V> value) { method in class:MultiValueMapImpl
139 return this.map.put(key,(ArrayList<V>) value);
150 this.map.put(k, al);
/external/qemu/distrib/zlib-1.2.8/
H A Dgzwrite.c170 unsigned put = len; local
240 /* input was all buffered or compressed (put will fit in int) */
241 return (int)put;
341 /* do the printf() into the input buffer, put length in len */
426 /* do the printf() into the input buffer, put length in len */
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSparseBooleanArray.java35 public void put(int key, boolean value) { method in class:ShadowSparseBooleanArray
36 sparseArray.put(key, value);
79 clone.put(keyAt(i), valueAt(i));
/external/smali/util/src/main/java/org/jf/util/
H A DSparseIntArray.java123 public void put(int key, int value) { method in class:SparseIntArray
221 put(key, value);
/external/zlib/src/contrib/puff/
H A Dpufftest.c90 int ret, put = 0, fail = 0; local
101 put = 1;
103 fail = 1, put = 1;
147 if (put && ret == 0) {
/external/zlib/src/
H A Dgzwrite.c170 unsigned put = len; local
240 /* input was all buffered or compressed (put will fit in int) */
241 return (int)put;
341 /* do the printf() into the input buffer, put length in len */
426 /* do the printf() into the input buffer, put length in len */
/external/chromium_org/third_party/icu/source/common/
H A Dhash.h72 void* put(const UnicodeString& key, void* value, UErrorCode& status);
158 inline void* Hashtable::put(const UnicodeString& key, void* value, UErrorCode& status) { function in class:Hashtable
/external/chromium_org/third_party/libwebp/dec/
H A Ddecode_vp8.h33 // /* customize io's functions (setup()/put()/teardown()) if needed. */
51 // The actual area passed to put() is stored
54 // set before calling put()
69 VP8IoPutHook put; member in struct:VP8Io
78 // during put()). Is NOT called if setup() failed.
83 // can be taken into consideration during the put() method.
117 VP8IoPutHook put,
/external/chromium_org/third_party/zlib/
H A Dinfback.c121 put = strm->next_out; \
132 strm->next_out = put; \
204 put = state->window; \
207 if (out(out_desc, put, left)) { \
250 unsigned char FAR *put; /* next output */ local
277 put = state->window;
338 zmemcpy(put, next, copy);
342 put += copy;
509 *put++ = (unsigned char)(state->length);
582 from = put
[all...]
/external/chromium_org/tools/telemetry/third_party/davclient/
H A Ddavclient.py121 def put(self, path, body=None, f=None, headers=None): member in class:DAVClient
/external/chromium_org/v8/src/
H A Dostreams.h46 OStream& put(char c) { return write(&c, 1); } function in class:v8::internal::OStream
/external/deqp/execserver/
H A DxsProtocol.cpp98 put<int>(0);
101 put<int>(msgType);
119 void put (T value) function
132 void MessageWriter::put<const char*> (const char* value) function in class:xs::MessageParser::MessageWriter
174 writer.put(version);
188 writer.put(test.c_str());
205 writer.put(name.c_str());
206 writer.put(params.c_str());
207 writer.put(workDir.c_str());
208 writer.put(caseLis
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegisterSpecSet.java260 * @param spec {@code non-null;} the register spec to put in the instance
262 public void put(RegisterSpec spec) { method in class:RegisterSpecSet
295 * @param set {@code non-null;} the set to put into this instance
303 put(spec);
363 result.put(spec.withOffset(delta));
388 copy.put(spec);
/external/droiddriver/src/com/google/android/droiddriver/uiautomation/
H A DUiAutomationElement.java74 put(attribs, Attribute.PACKAGE, charSequenceToString(node.getPackageName()));
75 put(attribs, Attribute.CLASS, charSequenceToString(node.getClassName()));
76 put(attribs, Attribute.TEXT, charSequenceToString(node.getText()));
77 put(attribs, Attribute.CONTENT_DESC, charSequenceToString(node.getContentDescription()));
78 put(attribs, Attribute.RESOURCE_ID, charSequenceToString(node.getViewIdResourceName()));
79 put(attribs, Attribute.CHECKABLE, node.isCheckable());
80 put(attribs, Attribute.CHECKED, node.isChecked());
81 put(attribs, Attribute.CLICKABLE, node.isClickable());
82 put(attribs, Attribute.ENABLED, node.isEnabled());
83 put(attrib
104 private void put(Map<Attribute, Object> attribs, Attribute key, Object value) { method in class:UiAutomationElement
[all...]

Completed in 488 milliseconds

1234567891011>>