Searched defs:put (Results 176 - 200 of 282) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBreakIteratorICU.cpp85 void put(icu::BreakIterator* iterator) function in class:blink::LineBreakIteratorPool
600 LineBreakIteratorPool::sharedPool().put(iterator);
/external/guava/guava/src/com/google/common/collect/
H A DMapMaker.java97 * java.util.Map.Entry#setValue}, which simply calls {@link Map#put} on the entry's key.
638 * <p>If {@link Map#put} is called before a computation completes, other threads waiting on the
786 * result from the user invoking {@link Map#put}, {@link Map#putAll},
875 public V put(K key, V value) { method in class:MapMaker.NullConcurrentMap
884 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/qemu/distrib/zlib-1.2.8/
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;
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
1220 * necessary to put mor
[all...]
/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/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;
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
1220 * necessary to put mor
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dtransreg.cpp204 * The Spec class canonicalizes itself, so the locale is put into
614 void TransliteratorRegistry::put(Transliterator* adoptedProto, function in class:TransliteratorRegistry
627 void TransliteratorRegistry::put(const UnicodeString& ID, function in class:TransliteratorRegistry
641 void TransliteratorRegistry::put(const UnicodeString& ID, function in class:TransliteratorRegistry
663 void TransliteratorRegistry::put(const UnicodeString& ID, function in class:TransliteratorRegistry
905 registry.put(ID, adopted, status);
942 specDAG.put(source, targets, status);
951 targets->put(target, variants, status);
/external/chromium_org/third_party/libwebp/dec/
H A Didec.c836 VP8IoPutHook put,
844 idec->io_.put = put;
835 WebPISetIOHooks(WebPIDecoder* const idec, VP8IoPutHook put, VP8IoSetupHook setup, VP8IoTeardownHook teardown, void* user_data) argument
/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/icu/icu4c/source/i18n/
H A Dtransreg.cpp204 * The Spec class canonicalizes itself, so the locale is put into
614 void TransliteratorRegistry::put(Transliterator* adoptedProto, function in class:TransliteratorRegistry
627 void TransliteratorRegistry::put(const UnicodeString& ID, function in class:TransliteratorRegistry
641 void TransliteratorRegistry::put(const UnicodeString& ID, function in class:TransliteratorRegistry
663 void TransliteratorRegistry::put(const UnicodeString& ID, function in class:TransliteratorRegistry
905 registry.put(ID, adopted, status);
942 specDAG.put(source, targets, status);
951 targets->put(target, variants, status);
/external/iptables/libxtables/
H A Dxtoptions.c277 * two values from the string will be put into @cb however (and as such,
288 void *put = XTOPT_MKPTR(cb); local
325 xtopt_mint_value_to_ptr(cb, &put, value);
585 * /etc/protocols and put the result into @cb->val.protocol.
595 * Validate and parse a port specification and put the result into
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DClassWriter.java789 fb.put(out);
795 mb.put(out);
829 anns.put(out);
833 ianns.put(out);
836 attrs.put(this, null, 0, -1, -1, out);
928 put(result);
948 put(result);
982 put(result);
1025 put(result);
1064 put(resul
1311 private void put(final Item i) { method in class:ClassWriter
[all...]
H A DMethodWriter.java922 label.put(this, code, code.length - 1, true);
931 label.put(this, code, code.length - 1, false);
1067 dflt.put(this, code, source, true);
1070 labels[i].put(this, code, source, true);
1085 dflt.put(this, code, source, true);
1089 labels[i].put(this, code, source, true);
1243 * (i.e. put it in the 'changed' list) and, while there are changed
1882 final void put(final ByteVector out) { method in class:MethodWriter
1999 cattrs.put(cw, code.data, code.length, maxLocals, maxStack, out);
2030 anns.put(ou
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_deflate.c469 int put; local
476 put = Buf_size - s->bi_valid;
477 if (put > bits)
478 put = bits;
479 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
480 s->bi_valid += put;
482 value >>= put; local
483 bits -= put;
623 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
1219 * necessary to put mor
[all...]
/external/webp/src/dec/
H A Didec.c836 VP8IoPutHook put,
844 idec->io_.put = put;
835 WebPISetIOHooks(WebPIDecoder* const idec, VP8IoPutHook put, VP8IoSetupHook setup, VP8IoTeardownHook teardown, void* user_data) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.util_1.0.200.v20100503.jar ... _r1/s?defs= " (int) int size public void put (java.lang.Object) Object element public void unget ...
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DCode.py425 output['utility_code_def'].put(impl)
430 writer.put(self.format_code(self.init))
984 code.put(UtilityCode.load_as_string("TypeConversions", "TypeConversion.c")[1])
1454 # also put invalid markers (lineno 0), to indicate that those lines
1561 self.put(code)
1577 # put code, but ignore {}
1596 self.put(code)
1598 def put(self, code): member in class:CCodeWriter
1629 self.put(sub(code, **context))
1687 self.put("
[all...]

Completed in 591 milliseconds

1234567891011>>