Searched defs:put (Results 101 - 125 of 282) sorted by relevance

1234567891011>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowContentValues.java47 public void put(String key, String value) { method in class:ShadowContentValues
48 values.put(key, value);
57 public void put(String key, Byte value) { method in class:ShadowContentValues
58 values.put(key, value);
62 public void put(String key, Short value) { method in class:ShadowContentValues
63 values.put(key, value);
67 public void put(String key, Integer value) { method in class:ShadowContentValues
68 values.put(key, value);
72 public void put(String key, Long value) { method in class:ShadowContentValues
73 values.put(ke
77 public void put(String key, Float value) { method in class:ShadowContentValues
82 public void put(String key, Double value) { method in class:ShadowContentValues
87 public void put(String key, Boolean value) { method in class:ShadowContentValues
92 public void put(String key, byte[] value) { method in class:ShadowContentValues
[all...]
H A DShadowSparseArray.java148 public void put(int key, E value) { method in class:ShadowSparseArray
309 put(key, value);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
H A DTestAttributeSet.java48 public TestAttributeSet put(String name, String value) { method in class:TestAttributeSet
49 attributes.put(name, value);
/external/smali/util/src/main/java/org/jf/util/
H A DSparseArray.java140 public void put(int key, E value) { method in class:SparseArray
292 put(key, value);
/external/webp/src/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/zlib/src/
H A Dinfback.c130 put = strm->next_out; \
141 strm->next_out = put; \
213 put = state->window; \
216 if (out(out_desc, put, left)) { \
259 unsigned char FAR *put; /* next output */ local
286 put = state->window;
347 zmemcpy(put, next, copy);
351 put += copy;
517 *put++ = (unsigned char)(state->length);
590 from = put
[all...]
/external/robolectric/lib/main/
H A Djson-20080701.jar ... String defaultValue Object o public org.json.JSONArray put (boolean) boolean value public org.json.JSONArray put ...
/external/apache-http/src/org/apache/commons/logging/impl/
H A DWeakHashtable.java36 * good liveliness for <code>get</code> and <code>put</code>. Various tradeoffs
118 * The maximum number of times put() or remove() can be called before
124 * The maximum number of times put() or remove() can be called before
225 public Object put(Object key, Object value) { method in class:WeakHashtable
247 return super.put(keyRef, value);
258 put(entry.getKey(), entry.getValue());
/external/chromium_org/content/child/indexed_db/
H A Dwebidbdatabase_impl.cc118 void WebIDBDatabaseImpl::put(long long transaction_id, function in class:content::WebIDBDatabaseImpl
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DCache.cpp219 ScriptPromise Cache::put(ScriptState* scriptState, Request* originalRequest, Response* response) function in class:blink::Cache
230 ScriptPromise Cache::put(ScriptState* scriptState, const String& requestString, Response* response) function in class:blink::Cache
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBDatabase.h67 virtual void put(long long transactionId, long long objectStoreId, const WebData& value, const WebVector<WebBlobInfo>&, const WebIDBKey&, WebIDBPutMode, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); } function in class:blink::WebIDBDatabase
/external/chromium_org/third_party/pexpect/
H A Dscreen.py162 def put (self, ch): member in class:screen
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dgenpyx.py36 def put( self, token="" ): member in class:OStream
/external/chromium_org/third_party/zlib/
H A Dinflate.c440 put = strm->next_out; \
451 strm->next_out = put; \
539 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
595 unsigned char FAR *put; /* next output */ local
870 zmemcpy(put, next, copy);
874 put += copy;
1127 *put++ = 0;
1142 from = put - state->offset;
1149 *put++ = *from++;
1155 *put
[all...]
/external/droiddriver/src/com/google/android/droiddriver/instrumentation/
H A DViewElement.java63 put(Attribute.PACKAGE, view.getContext().getPackageName());
64 put(Attribute.CLASS, getClassName());
65 put(Attribute.TEXT, getText());
66 put(Attribute.CONTENT_DESC, charSequenceToString(view.getContentDescription()));
67 put(Attribute.RESOURCE_ID, getResourceId());
68 put(Attribute.CHECKABLE, view instanceof Checkable);
69 put(Attribute.CHECKED, isChecked());
70 put(Attribute.CLICKABLE, view.isClickable());
71 put(Attribute.ENABLED, view.isEnabled());
72 put(Attribut
99 private void put(Attribute key, Object value) { method in class:ViewElement.SnapshotViewAttributesRunnable
[all...]
/external/emma/core/java12/com/vladium/util/
H A DSoftValueMap.java69 * {@link #put} should check for and remove all mappings whose soft values
221 public Object put (final Object key, final Object value) method in class:SoftValueMap
416 out.append ("size threshold = " + m_sizeThreshold + ", get clear frequency = " + m_readClearCheckFrequency + ", put clear frequency = " + m_writeClearCheckFrequency + EOL);
417 out.append ("get count: " + m_readAccessCount + ", put count: " + m_writeAccessCount + EOL);
583 // no match found this can happen if a soft value got replaced by a put
602 private final int m_readClearCheckFrequency, m_writeClearCheckFrequency; // parameters determining frequency of running removeClearedKeys() by get() and put()/remove(), respectively
/external/glide/library/src/main/java/com/bumptech/glide/volley/
H A DVolleyDiskCacheWrapper.java63 public void put(final String key, final Entry entry) { method in class:VolleyDiskCacheWrapper
64 diskCache.put(new StringKey(key), new DiskCache.Writer() {
95 put(key, entry);
305 result.put(key, value);
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONArray.java39 * methods for accessing the values by index, and <code>put</code> methods for
205 this.put(Array.get(array, i));
609 public JSONArray put(boolean value) { method in class:JSONArray
610 put(value ? Boolean.TRUE : Boolean.FALSE);
621 public JSONArray put(Collection value) { method in class:JSONArray
622 put(new JSONArray(value));
634 public JSONArray put(double value) throws JSONException { method in class:JSONArray
637 put(d);
648 public JSONArray put(int value) { method in class:JSONArray
649 put(ne
660 public JSONArray put(long value) { method in class:JSONArray
672 public JSONArray put(Map value) { method in class:JSONArray
685 public JSONArray put(Object value) { method in class:JSONArray
700 public JSONArray put(int index, boolean value) throws JSONException { method in class:JSONArray
715 public JSONArray put(int index, Collection value) throws JSONException { method in class:JSONArray
731 public JSONArray put(int index, double value) throws JSONException { method in class:JSONArray
746 public JSONArray put(int index, int value) throws JSONException { method in class:JSONArray
761 public JSONArray put(int index, long value) throws JSONException { method in class:JSONArray
776 public JSONArray put(int index, Map value) throws JSONException { method in class:JSONArray
794 public JSONArray put(int index, Object value) throws JSONException { method in class:JSONArray
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DAbstractBiMap.java95 @Override public V put(K key, V value) { method in class:AbstractBiMap
114 V oldValue = delegate.put(key, value);
124 inverse.delegate.put(newValue, key);
145 put(entry.getKey(), entry.getValue());
H A DImmutableBiMap.java123 * .put("one", 1)
124 * .put("two", 2)
125 * .put("three", 3)
149 @Override public Builder<K, V> put(K key, V value) { method in class:ImmutableBiMap.Builder
150 super.put(key, value);
H A DImmutableListMultimap.java70 builder.put(k1, v1);
80 builder.put(k1, v1);
81 builder.put(k2, v2);
92 builder.put(k1, v1);
93 builder.put(k2, v2);
94 builder.put(k3, v3);
105 builder.put(k1, v1);
106 builder.put(k2, v2);
107 builder.put(k3, v3);
108 builder.put(k
163 @Override public Builder<K, V> put(K key, V value) { method in class:ImmutableListMultimap.Builder
173 @Override public Builder<K, V> put( method in class:ImmutableListMultimap.Builder
[all...]
H A DImmutableMap.java150 * .put("one", 1)
151 * .put("two", 2)
152 * .put("three", 3)
177 public Builder<K, V> put(K key, V value) { method in class:ImmutableMap.Builder
189 public Builder<K, V> put(Entry<? extends K, ? extends V> entry) { method in class:ImmutableMap.Builder
215 put(entry.getKey(), entry.getValue());
301 public final V put(K k, V v) { method in class:ImmutableMap
421 builder.put(keys[i], values[i]);
H A DImmutableSetMultimap.java74 builder.put(k1, v1);
85 builder.put(k1, v1);
86 builder.put(k2, v2);
98 builder.put(k1, v1);
99 builder.put(k2, v2);
100 builder.put(k3, v3);
112 builder.put(k1, v1);
113 builder.put(k2, v2);
114 builder.put(k3, v3);
115 builder.put(k
207 @Override public Builder<K, V> put(K key, V value) { method in class:ImmutableSetMultimap.Builder
217 @Override public Builder<K, V> put(Entry<? extends K, ? extends V> entry) { method in class:ImmutableSetMultimap.Builder
[all...]
H A DTreeBasedTable.java287 @Override public V put(C key, V value) { method in class:TreeBasedTable.TreeRow
289 return super.put(key, value);
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DCacheBuilder.java156 public void put(K key, V value) { method in class:CacheBuilder.LocalManualCache
157 localCache.put(key, value);
220 public V put(K key, V value) { method in class:CacheBuilder.LocalCache
221 V result = super.put(key, value);
236 return put(key, value);
254 put(key, newValue);
262 return containsKey(key) ? put(key, value) : null;
318 put(key, value);

Completed in 2000 milliseconds

1234567891011>>