Searched defs:put (Results 201 - 225 of 282) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/i18n/
H A Dastro.cpp1567 void CalendarCache::put(CalendarCache** cache, int32_t key, int32_t value, UErrorCode &status) { function in class:CalendarCache
H A Dtznames_impl.cpp146 // search is performed. put() simply saves the parameters in case we do
150 TextTrieMap::put(const UnicodeString &key, void *value, ZNStringPool &sp, UErrorCode &status) { function in class:TextTrieMap
152 put(s, value, status);
158 TextTrieMap::put(const UChar *key, void *value, UErrorCode &status) { function in class:TextTrieMap
1175 // put the name info into the trie
1184 fNamesTrie.put(name, nameinfo, status);
1252 // put the name info into the trie
1261 fNamesTrie.put(name, nameinfo, status);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dwbnf.cpp184 void put(const char *const var_name, Pick *const var_ref = NULL){ function in class:SymbolTable
523 symbol_table->put(varName, varRef);
1239 symbols.put(name, t);
1498 // tab.put(var2, value); // TOFIX: point alias/recursion problem
1500 tab.put(var2, value2);
1504 tab.put("z", value3);
1517 t.put("abc", n1);
1518 t.put("$aaa", n2);
1519 // t.put("alias", n1); // TOFIX: point alias/recursion problem
1520 t.put("bb
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dc.cc365 void (*put)(void*, const char* k, size_t klen, const char* v, size_t vlen),
381 handler.put_ = put;
362 leveldb_writebatch_iterate( leveldb_writebatch_t* b, void* state, void (*put)(void*, const char* k, size_t klen, const char* v, size_t vlen), void (*deleted)(void*, const char* k, size_t klen)) argument
/external/icu/icu4c/source/i18n/
H A Dastro.cpp1567 void CalendarCache::put(CalendarCache** cache, int32_t key, int32_t value, UErrorCode &status) { function in class:CalendarCache
H A Dtznames_impl.cpp146 // search is performed. put() simply saves the parameters in case we do
150 TextTrieMap::put(const UnicodeString &key, void *value, ZNStringPool &sp, UErrorCode &status) { function in class:TextTrieMap
152 put(s, value, status);
158 TextTrieMap::put(const UChar *key, void *value, UErrorCode &status) { function in class:TextTrieMap
1175 // put the name info into the trie
1184 fNamesTrie.put(name, nameinfo, status);
1252 // put the name info into the trie
1261 fNamesTrie.put(name, nameinfo, status);
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DHttpResponseCacheTest.java249 @Override public CacheRequest put(Response response) throws IOException {
271 @Override public CacheRequest put(Response response) throws IOException {
1865 // Older versions of OkHttp use ResponseCache.get() and ResponseCache.put(). For compatibility
1869 // doesn't throw an exception from get() or put() and also does not cache requests/responses from
1894 cache.put(url.toURI(), javaConnection);
2116 @Override public CacheRequest put(Response response) throws IOException { method in class:HttpResponseCacheTest.AbstractOkResponseCache
H A DResponseCacheTest.java345 public CacheRequest put(URI uri, URLConnection conn) throws IOException {
1525 @Override public CacheRequest put(URI uri, URLConnection connection) throws IOException { method in class:ResponseCacheTest.InsecureResponseCache
1526 return delegate.put(uri, connection);
1699 cache.put(Entry.this.key(), Entry.this);
1738 public CacheRequest put(URI uri, URLConnection urlConnection) throws IOException { method in class:ResponseCacheTest.InMemoryResponseCache
/external/qemu/include/migration/
H A Dvmstate.h90 void (*put)(QEMUFile *f, void *pv, size_t size); member in struct:VMStateInfo
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources.compatibility_3.4.0.v20090505.jar ... int i public byte[] getByteArray () public int length () public void put (int, byte) int offset byte value public void put (int ...
H A Dorg.eclipse.equinox.preferences_3.3.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jar ... io.Buffer src int pi int l public void put (byte) byte b int pi public int put (byte[], int ...
H A Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.security_1.0.200.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.databinding.property_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/bluetooth/bluedroid/stack/include/
H A Dobx_api.h210 tOBX_PUT_EVT put; /* This element is associated with OBX_PUT_REQ_EVT. */ member in union:__anon1593
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java2851 V put(K key, int hash, V value, boolean onlyIfAbsent) { method in class:LocalCache.Segment
3369 if (!isHeldByCurrentThread()) { // don't cleanup inside of put
3982 result.put(key, value);
4001 result.put(key, value);
4020 result.put(key, value);
4026 result.put(key, get(key, defaultLoader));
4082 put(key, value);
4178 public V put(K key, V value) { method in class:LocalCache
4182 return segmentFor(hash).put(key, hash, value, false);
4190 return segmentFor(hash).put(ke
4778 public void put(K key, V value) { method in class:LocalCache.LocalManualCache
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DMapMakerInternalMap.java2532 V put(K key, int hash, V value, boolean onlyIfAbsent) { method in class:MapMakerInternalMap.Segment
2985 if (!isHeldByCurrentThread()) { // don't cleanup inside of put
3554 public V put(K key, V value) { method in class:MapMakerInternalMap
3558 return segmentFor(hash).put(key, hash, value, false);
3566 return segmentFor(hash).put(key, hash, value, true);
3572 put(e.getKey(), e.getValue());
3810 V oldValue = put(key, newValue);
3811 value = newValue; // only if put succeeds
4025 delegate.put(key, value);
/external/kernel-headers/original/uapi/linux/
H A Dcyclades.h475 unsigned long put; member in struct:INT_QUEUE
/external/stlport/stlport/stl/
H A D_rope.h275 _Self& put(value_type __x) { function in class:sequence_buffer
798 // RopeFunctions. We put the buffer
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptCanvasModuleSource.js357 put: function(key, item)
880 cache.put(this._id, result); // Put into the cache early to avoid loops.
917 cache.put(data.id, this); // Put into the cache early to avoid loops.
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...

Completed in 523 milliseconds

1234567891011>>