Searched defs:put (Results 151 - 175 of 238) sorted by relevance

12345678910

/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpResponseCache.java136 @Override public CacheRequest put(URI uri, URLConnection urlConnection) throws IOException { method in class:HttpResponseCache
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSGlobalObject.cpp118 void JSGlobalObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::JSGlobalObject
124 JSVariableObject::put(exec, propertyName, value, slot);
136 JSVariableObject::put(exec, propertyName, value, slot);
H A DRegExpConstructor.cpp141 JSArray::put(exec, i, jsSubstring(exec, d->lastInput, start, d->lastOvector()[2 * i + 1] - start));
143 JSArray::put(exec, i, jsUndefined());
147 JSArray::put(exec, exec->propertyNames().index, jsNumber(d->lastOvector()[0]), slot);
148 JSArray::put(exec, exec->propertyNames().input, jsString(exec, d->input), slot);
280 void RegExpConstructor::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::RegExpConstructor
H A DJSObject.cpp103 void JSObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::JSObject
168 void JSObject::put(ExecState* exec, unsigned propertyName, JSValue value) function in class:JSC::JSObject
171 put(exec, Identifier::from(exec, propertyName), value, slot);
658 // If we have a new property we can just put it on normally
731 put(exec, propertyName, descriptor.value(), slot);
H A DJSObject.h109 virtual void put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot&);
110 virtual void put(ExecState*, unsigned propertyName, JSValue value);
632 // put could write a different value). Leave the slot in an uncachable state.
639 // case (1) Do the put, then return leaving the slot uncachable.
648 // case (3) set the slot, do the put, return.
798 inline void JSValue::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::JSValue
801 synthesizeObject(exec)->put(exec, propertyName, value, slot);
804 asCell()->put(exec, propertyName, value, slot);
814 inline void JSValue::put(ExecState* exec, unsigned propertyName, JSValue value) function in class:JSC::JSValue
817 synthesizeObject(exec)->put(exe
[all...]
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_instance.cpp144 void QtInstance::put(JSObject* object, ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::Bindings::QtInstance
146 object->JSObject::put(exec, propertyName, value, slot);
208 // This is the enumerable properties, so put:
/external/webkit/Source/WebCore/storage/
H A DIDBObjectStoreBackendImpl.cpp121 void IDBObjectStoreBackendImpl::put(PassRefPtr<SerializedScriptValue> prpValue, PassRefPtr<IDBKey> prpKey, PutMode putMode, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) function in class:WebCore::IDBObjectStoreBackendImpl
/external/zlib/src/examples/
H A Dgzlog.c503 uint put; local
517 put = (MAX_STORE << 10) - log->stored;
518 if (put > len)
519 put = (uint)len;
520 if (put) {
521 if (write(log->fd, data, put) != put)
524 log->tcrc = crc32(log->tcrc, data, put);
525 log->tlen += put;
526 log->stored += put;
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3collections.h134 ANTLR3_INT32 (*put) (struct ANTLR3_HASH_TABLE_struct * table, void * key, void * element, void (ANTLR3_CDECL *freeptr)(void *)); member in struct:ANTLR3_HASH_TABLE_struct
191 ANTLR3_INT32 (*put) (struct ANTLR3_LIST_struct * list, ANTLR3_INTKEY key, void * element, void (ANTLR3_CDECL *freeptr)(void *)); member in struct:ANTLR3_LIST_struct
/external/apache-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...]
/external/guava/guava/src/com/google/common/collect/
H A DMapMaker.java96 * java.util.Map.Entry#setValue}, which simply calls {@link Map#put} on the entry's key.
637 * <p>If {@link Map#put} is called before a computation completes, other threads waiting on the
785 * result from the user invoking {@link Map#put}, {@link Map#putAll},
874 public V put(K key, V value) { method in class:MapMaker.NullConcurrentMap
883 return put(key, value);
H A DStandardTable.java165 backingMap.put(rowKey, map);
170 @Override public V put(R rowKey, C columnKey, V value) { method in class:StandardTable
174 return getOrCreate(rowKey).put(columnKey, value);
180 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
208 output.put(entry.getKey(), value);
383 public V put(C key, V value) { method in class:StandardTable.Row
387 return backingRowMap.put(key, value);
389 return StandardTable.this.put(rowKey, key, value);
510 @Override public V put(R key, V value) { method in class:StandardTable.Column
511 return StandardTable.this.put(ke
[all...]
H A DAbstractMultimap.java200 public boolean put(@Nullable K key, @Nullable V value) { method in class:AbstractMultimap
215 map.put(key, collection);
265 changed |= put(entry.getKey(), entry.getValue());
462 map.put(key, delegate);
H A DMaps.java367 onBoth.put(leftKey, leftValue);
370 differences.put(
375 onlyOnLeft.put(leftKey, leftValue);
556 onBoth.put(leftKey, leftValue);
559 differences.put(
564 onlyOnLeft.put(leftKey, leftValue);
679 builder.put(keyFunction.apply(value), value);
704 builder.put(key, properties.getProperty(key));
1292 * doesn't satisfy the predicate, the map's {@code put()} and {@code putAll()}
1339 * doesn't satisfy the predicate, the map's {@code put()} an
1577 @Override public V put(K key, V value) { method in class:Maps.AbstractFilteredMap
[all...]
H A DMultimaps.java407 dest.put(entry.getValue(), entry.getKey());
580 @Override public boolean put(K key, V value) { method in class:Multimaps.UnmodifiableMultimap
1015 * mappings, such as {@code put}, {@code putAll} or {@code replaceValues}.
1098 public boolean put(K key, V value) { method in class:Multimaps.MapMultimap
1526 @Override public boolean put(K key, V2 value) { method in class:Multimaps.TransformedEntriesMultimap
1856 builder.put(keyFunction.apply(value), value);
2159 * multimap's {@code put()}, {@code putAll()}, and {@replaceValues()} methods
2204 * multimap's {@code put()}, {@code putAll()}, and {@replaceValues()} methods
2249 * multimap's {@code put()}, {@code putAll()}, and {@replaceValues()} methods
2328 @Override public boolean put( method in class:Multimaps.FilteredMultimap
[all...]
H A DSynchronized.java569 public boolean put(K key, V value) { method in class:Synchronized.SynchronizedMultimap
571 return delegate().put(key, value);
988 public V put(K key, V value) { method in class:Synchronized.SynchronizedMap
990 return delegate().put(key, value);
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractHashedMap.java278 public V put(K key, V value) { method in class:AbstractHashedMap
298 * uses {@link #put(Object, Object)}.
313 put(entry.getKey(), entry.getValue());
1170 * subclass must be setup before <code>put()</code> is used.
1174 * what you want, as in this case the <code>put()</code> method on read can be
1199 * subclass must be setup before <code>put()</code> is used.
1203 * what you want, as in this case the <code>put()</code> method on read can be
1211 * before <code>put()</code> or <code>calculateThreshold()</code> will work correctly.
1224 put(key, value);
H A DAbstractReferenceMap.java247 public V put(K key, V value) { method in class:AbstractReferenceMap
256 return super.put(key, value);
961 * what you want, as in this case the <code>put()</code> method on read can be
993 * what you want, as in this case the <code>put()</code> method on read can be
1001 * before <code>put()</code> or <code>calculateThreshold()</code> will work correctly.
1019 put(key, value);
/external/stlport/src/
H A Dlocale_impl.cpp306 locale::facet *put = 0; local
326 put = new time_put_byname<char, ostreambuf_iterator<char, char_traits<char> > >(__time);
333 _STLP_UNWIND(delete wget; delete put; delete get; _STLP_PRIV __release_time(__time));
341 this->insert(put, time_put<char, ostreambuf_iterator<char, char_traits<char> > >::id);
571 // and also to money_get/put, num_get/put, and time_get/put
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMWindowCustom.cpp352 void JSDOMWindow::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:WebCore::JSDOMWindow
360 JSGlobalObject::put(exec, propertyName, value, slot);
368 Base::put(exec, propertyName, value, slot);
/external/zlib/src/
H A Ddeflate.c470 int put; local
477 put = Buf_size - s->bi_valid;
478 if (put > bits)
479 put = bits;
480 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
481 s->bi_valid += put;
483 value >>= put; local
484 bits -= put;
622 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
1218 * necessary to put mor
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMaps.java364 onBoth.put(leftKey, leftValue);
367 differences.put(
372 onlyOnLeft.put(leftKey, leftValue);
553 onBoth.put(leftKey, leftValue);
556 differences.put(
561 onlyOnLeft.put(leftKey, leftValue);
676 builder.put(keyFunction.apply(value), value);
1263 * doesn't satisfy the predicate, the map's {@code put()} and {@code putAll()}
1310 * doesn't satisfy the predicate, the map's {@code put()} and {@code putAll()}
1355 * that doesn't satisfy the predicate, the map's {@code put()}, {
1548 @Override public V put(K key, V value) { method in class:Maps.AbstractFilteredMap
[all...]
H A DMultimaps.java318 dest.put(entry.getValue(), entry.getKey());
491 @Override public boolean put(K key, V value) { method in class:Multimaps.UnmodifiableMultimap
926 * mappings, such as {@code put}, {@code putAll} or {@code replaceValues}.
1009 public boolean put(K key, V value) { method in class:Multimaps.MapMultimap
1437 @Override public boolean put(K key, V2 value) { method in class:Multimaps.TransformedEntriesMultimap
1767 builder.put(keyFunction.apply(value), value);
2111 @Override public boolean put(K key, V value) { method in class:Multimaps.FilteredMultimap
2113 return unfiltered.put(key, value);
H A DSynchronized.java556 public boolean put(K key, V value) { method in class:Synchronized.SynchronizedMultimap
558 return delegate().put(key, value);
975 public V put(K key, V value) { method in class:Synchronized.SynchronizedMap
977 return delegate().put(key, value);
/external/icu4c/i18n/
H A Dcolldata.cpp333 void put(uint32_t ce, UnicodeString *string, UErrorCode &status);
365 void CEToStringsMap::put(uint32_t ce, UnicodeString *string, UErrorCode &status) function in class:CEToStringsMap
399 void put(const UnicodeString *string, const CEList *ces, UErrorCode &status);
434 void StringToCEsMap::put(const UnicodeString *string, const CEList *ces, UErrorCode &status) function in class:StringToCEsMap
731 ceToCharsStartingWith->put(ceList->get(0), st, status);
734 charsToCEList->put(st, ceList, status);
750 ceToCharsStartingWith->put(ceList->get(0), st, status);
753 charsToCEList->put(st, ceList, status);

Completed in 703 milliseconds

12345678910