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

1 2

  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/operation/
db.py 21 __all__ = ['Put', 'Delete']
29 class Put(base.Operation):
30 """Put entity into datastore via mutation_pool.
39 entity: an entity to put.
49 context._mutation_pool.put(self.entity)
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
memorybuffer.h 42 void Put(Ch c) { *stack_.template Push<Ch>() = c; }
memorystream.h 44 void Put(Ch) { RAPIDJSON_ASSERT(false); }
stringbuffer.h 50 void Put(Ch c) { *stack_.template Push<Ch>() = c; }
filewritestream.h 35 void Put(char c) {
filereadstream.h 48 void Put(Ch) { RAPIDJSON_ASSERT(false); }
encodedstream.h 47 void Put(Ch) { RAPIDJSON_ASSERT(false); }
76 void Put(Ch c) { Encoding::Put(os_, c); }
127 void Put(Ch) { RAPIDJSON_ASSERT(false); }
217 static const PutFunc f[] = { RAPIDJSON_ENCODINGS_FUNC(Put) };
226 void Put(Ch c) { putFunc_(*os_, c); }
encodings.h 75 //! Put BOM to output byte stream.
79 //! Put a character to output byte stream.
81 static void Put(OutputByteStream& os, Ch c);
104 os.Put(static_cast<Ch>(codepoint & 0xFF));
106 os.Put(static_cast<Ch>(0xC0 | ((codepoint >> 6) & 0xFF)));
107 os.Put(static_cast<Ch>(0x80 | ((codepoint & 0x3F))));
110 os.Put(static_cast<Ch>(0xE0 | ((codepoint >> 12) & 0xFF)));
111 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 6) & 0x3F)));
112 os.Put(static_cast<Ch>(0x80 | (codepoint & 0x3F)));
116 os.Put(static_cast<Ch>(0xF0 | ((codepoint >> 18) & 0xFF)));
    [all...]
pointer.h     [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) {
  /frameworks/volley/src/test/java/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...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
rapidjsontest.cpp 254 void Put(char) { /*++length_;*/ }
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
prettywritertest.cpp 111 void Put(Ch c) { os_.put(c); }
writertest.cpp 154 void Put(Ch c) { os_.put(c); }
documenttest.cpp 245 void Put(char c) {
246 put(c);
  /art/runtime/
safe_map.h 91 iterator Put(const K& k, const V& v) {
96 iterator Put(const K& k, V&& v) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_quarantine.h 60 void Put(Cache *c, Callback cb, Node *ptr, uptr size) {
sanitizer_stackdepotbase.h 30 handle_type Put(args_type args, bool *inserted = nullptr);
98 StackDepotBase<Node, kReservedBits, kTabSizeLog>::Put(args_type args,
  /external/v8/src/
compilation-cache.cc 181 if (generation != 0) Put(source, context, language_mode, shared);
191 void CompilationCacheScript::Put(Handle<String> source,
197 SetFirstTable(CompilationCacheTable::Put(table, source, context,
221 Put(source, outer_info, function_info, scope_position);
232 void CompilationCacheEval::Put(Handle<String> source,
261 Put(source, flags, data);
272 void CompilationCacheRegExp::Put(Handle<String> source,
333 script_.Put(source, context, language_mode, function_info);
346 eval_global_.Put(source, outer_info, function_info, scope_position);
349 eval_contextual_.Put(source, outer_info, function_info, scope_position)
    [all...]
string-stream.cc 33 bool StringStream::Put(char c) {
84 Put(format[offset]);
114 Put(static_cast<char>(value[i]));
127 Put(value);
305 bool StringStream::Put(String* str) {
306 return Put(str, 0, str->length());
310 bool StringStream::Put(String* str, int start, int end) {
317 if (!Put(static_cast<char>(c))) {
329 Put(str);
359 Put(' ');
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ole2.h 106 DWORD (CALLBACK *Put)(LPOLESTREAM,const void *,DWORD);
  /external/dng_sdk/source/
dng_image.cpp 687 void dng_image::Put (const dng_pixel_buffer &buffer)
dng_stream.cpp 380 void dng_stream::Put (const void *data,
480 Put (&x, 2);
516 Put (&x, 4);
573 Put (&x, 8);
619 Put (&x, 4);
678 Put (&x, 8);
752 Put (zeroBuffer.Buffer (), (uint32) blockSize);
1113 dstStream.Put (smallBuffer, (uint32) count);
1134 dstStream.Put (bigBuffer.Buffer (),
  /external/libchrome/base/containers/
mru_cache.h 93 iterator Put(const KeyType& key, const PayloadType& payload) {
  /libcore/ojluni/src/main/java/java/util/prefs/
FileSystemPreferences.java 312 * put operation occurs on this node. It is synchronized with the
365 * Represents a preference put.
367 private class Put extends Change {
370 Put(String key, String value) {
376 prefsCache.put(key, value);
527 changeLog.add(new Put(key, value));
528 prefsCache.put(key, value);
    [all...]

Completed in 7361 milliseconds

1 2