HomeSort by relevance Sort by last modified time
    Searched defs:Put (Results 1 - 25 of 46) sorted by null

1 2

  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_write_batch.cc 26 void LevelDBWriteBatch::Put(const base::StringPiece& key,
28 write_batch_->Put(MakeSlice(key), MakeSlice(value));
leveldb_transaction.cc 62 void LevelDBTransaction::Put(const StringPiece& key, std::string* value) {
111 write_batch->Put(node->key, node->value);
  /external/chromium_org/sync/syncable/
mutable_entry.h 51 bool Put(Int64Field field, const int64& value);
52 bool Put(TimeField field, const base::Time& value);
53 bool Put(IdField field, const Id& value);
54 bool Put(UniquePositionField field, const UniquePosition& value);
58 // The normal Put(IS_PARENT) call will move the item to the front of the
67 bool Put(StringField field, const std::string& value);
68 bool Put(BaseVersion field, int64 value);
70 bool Put(ProtoField field, const sync_pb::EntitySpecifics& value);
71 bool Put(BitField field, bool value);
72 inline bool Put(IsDelField field, bool value)
    [all...]
mutable_entry.cc 29 kernel->put(ID, trans->directory_->NextId());
30 kernel->put(META_HANDLE, trans->directory_->NextMetahandle());
32 kernel->put(PARENT_ID, parent_id);
33 kernel->put(NON_UNIQUE_NAME, name);
35 kernel->put(CTIME, now);
36 kernel->put(MTIME, now);
38 kernel->put(BASE_VERSION, CHANGES_VERSION);
46 kernel->put(SPECIFICS, specifics);
49 kernel->put(IS_DEL, true);
51 kernel->put(IS_DEL, false)
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
byte_array.cc 58 void ByteArray::Put(int32_t index, byte_t b) {
71 int32_t ByteArray::Put(int index, ByteVector* b) {
73 return Put(index, &((*b)[0]), 0, b->size());
76 int32_t ByteArray::Put(int32_t index,
117 int bytes_written = array->Put(index + dst_offset, &(b[0]), 0, bytes_read);
149 if (Put(index, &(b[0]), 0, bytes_read) != bytes_read) {
169 if (Put(index, &b[0], 0, bytes_read) != bytes_read) {
  /art/runtime/
safe_map.h 71 void Put(const K& k, const V& v) {
  /external/chromium_org/third_party/WebKit/Source/wtf/
TCPackedCache.h 73 // void Put(K key, V value) { a_[H(key)] = pair<K, V>(key, value); }
82 // (c.Put(key, value), c.GetOrDefault(key, 0)) == value
84 // (c.Put(key, value), <...>, c.GetOrDefault(key, 0)) == value
85 // if the elided code contains no c.Put calls.
88 // has ever been Put. However, a newly initialized cache will have
92 // equivalent to Put(k, initial_value) for all keys k from 0 to
95 // 3. If key and key' differ then the only way Put(key, value) may
97 // false. Furthermore, a Put() call that doesn't change Has(key')
146 void Put(K key, V value) {
186 // part of the key, and kValuebits determines where in the entry to put
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
write_batch.cc 59 handler->Put(key, value);
61 return Status::Corruption("bad WriteBatch Put");
98 void WriteBatch::Put(const Slice& key, const Slice& value) {
117 virtual void Put(const Slice& key, const Slice& value) {
leveldb_main.cc 73 virtual void Put(const Slice& key, const Slice& value) {
74 printf(" put '%s' '%s'\n",
  /external/chromium_org/third_party/tcmalloc/chromium/src/
packed-cache-inl.h 73 // void Put(K key, V value) { a_[H(key)] = pair<K, V>(key, value); }
82 // (c.Put(key, value), c.GetOrDefault(key, 0)) == value
84 // (c.Put(key, value), <...>, c.GetOrDefault(key, 0)) == value
85 // if the elided code contains no c.Put calls.
88 // has ever been Put. However, a newly initialized cache will have
92 // equivalent to Put(k, initial_value) for all keys k from 0 to
95 // 3. If key and key' differ then the only way Put(key, value) may
97 // false. Furthermore, a Put() call that doesn't change Has(key')
158 void Put(K key, V value) {
199 // put it
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
packed-cache-inl.h 73 // void Put(K key, V value) { a_[H(key)] = pair<K, V>(key, value); }
82 // (c.Put(key, value), c.GetOrDefault(key, 0)) == value
84 // (c.Put(key, value), <...>, c.GetOrDefault(key, 0)) == value
85 // if the elided code contains no c.Put calls.
88 // has ever been Put. However, a newly initialized cache will have
92 // equivalent to Put(k, initial_value) for all keys k from 0 to
95 // 3. If key and key' differ then the only way Put(key, value) may
97 // false. Furthermore, a Put() call that doesn't change Has(key')
156 void Put(K key, V value) {
197 // put it
    [all...]
  /frameworks/volley/tests/src/com/android/volley/mock/
TestRequest.java 64 mPostParams.put("requestpost", "foo");
96 mParams.put("testKey", "testValue");
106 * Test example of a PUT request in the new style. In the new style, it is possible to have a
107 * PUT with no body.
109 public static class Put extends Base {
110 public Put() {
111 super(Method.PUT, TEST_URL, null);
115 /** Test example of a PUT request in the new style with a body. */
116 public static class PutWithBody extends Put {
121 mParams.put("testKey", "testValue")
    [all...]
  /external/chromium_org/net/base/
expiring_cache.h 49 // cache.Put("key1", "value1", base::TimeTicks::Now(),
52 // cache.Put("key2", "value2", base::TimeTicks::Now(),
65 // cache.Put("key1", "value1", ComplexExpiration("sprocket"),
140 void Put(const KeyType& key,
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_quarantine.h 55 void Put(Cache *c, Callback cb, Node *ptr, uptr size) {
  /art/compiler/dex/
growable_array.h 124 void Put(size_t index, T elem) {
  /external/chromium_org/base/containers/
mru_cache.h 90 iterator Put(const KeyType& key, const PayloadType& payload) {
  /external/chromium_org/v8/src/
compilation-cache.cc 232 if (generation != 0) Put(source, context, shared);
247 return table->Put(*source, *context, *function_info);
261 void CompilationCacheScript::Put(Handle<String> source,
293 Put(source, context, function_info, scope_position);
326 void CompilationCacheEval::Put(Handle<String> source,
354 Put(source, flags, data);
384 void CompilationCacheRegExp::Put(Handle<String> source,
461 script_.Put(source, context, function_info);
476 eval_global_.Put(source, context, function_info, scope_position);
479 eval_contextual_.Put(source, context, function_info, scope_position)
    [all...]
serialize.h 129 void Put(Address key, int index);
155 void Put(uint32_t key, Address value) {
401 virtual void Put(int byte, const char* description) = 0;
403 Put(byte, description);
mksnapshot.cc 102 virtual void Put(int byte, const char* description) {
  /external/chromium_org/v8/test/cctest/
test-serialize.cc 184 virtual void Put(int byte, const char* description) {
  /external/v8/src/
compilation-cache.cc 217 if (generation != 0) Put(source, shared);
231 return table->Put(*source, *function_info);
244 void CompilationCacheScript::Put(Handle<String> source,
275 Put(source, context, function_info, scope_position);
308 void CompilationCacheEval::Put(Handle<String> source,
336 Put(source, flags, data);
366 void CompilationCacheRegExp::Put(Handle<String> source,
434 script_.Put(source, function_info);
449 eval_global_.Put(source, context, function_info, scope_position);
452 eval_contextual_.Put(source, context, function_info, scope_position)
    [all...]
mksnapshot.cc 99 virtual void Put(int byte, const char* description) {
string-stream.cc 53 bool StringStream::Put(char c) {
104 Put(format[offset]);
134 Put(static_cast<char>(value[i]));
147 Put(value);
308 bool StringStream::Put(String* str) {
309 return Put(str, 0, str->length());
313 bool StringStream::Put(String* str, int start, int end) {
321 if (!Put(c)) {
333 Put(str);
361 Put(' ');
    [all...]
  /external/valgrind/unittest/
thread_wrappers.h 113 // Put.
114 void Put(void *item) {
134 // remove an element from queue, put it into *res and return true.
251 queue_.Put(closure);
  /external/chromium/chrome/browser/policy/
device_management_backend_impl.cc 80 void Put(const std::string& name, const std::string& value);
93 void URLQueryParameters::Put(const std::string& name,
134 query_params_.Put(DeviceManagementBackendImpl::kParamRequest, request_type);
135 query_params_.Put(DeviceManagementBackendImpl::kParamDeviceType,
137 query_params_.Put(DeviceManagementBackendImpl::kParamAppType,
139 query_params_.Put(DeviceManagementBackendImpl::kParamDeviceID, device_id);
140 query_params_.Put(DeviceManagementBackendImpl::kParamAgent,
142 query_params_.Put(DeviceManagementBackendImpl::kParamPlatform,
147 query_params_.Put(name, value);

Completed in 1390 milliseconds

1 2