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

1 2 3 4 5 6 7 8

  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
writer.h 191 os_->Put('n'); os_->Put('u'); os_->Put('l'); os_->Put('l'); return true;
196 os_->Put('t'); os_->Put('r'); os_->Put('u'); os_->Put('e');
199 os_->Put('f'); os_->Put('a'); os_->Put('l'); os_->Put('s'); os_->Put('e');
    [all...]
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...]
prettywriter.h 100 Base::os_->Put('\n');
124 Base::os_->Put('\n');
153 Base::os_->Put(','); // add comma if it is not the first element in array
154 Base::os_->Put('\n');
157 Base::os_->Put('\n');
163 Base::os_->Put(',');
164 Base::os_->Put('\n');
167 Base::os_->Put(':');
168 Base::os_->Put(' ');
172 Base::os_->Put('\n');
    [all...]
memorybuffer.h 42 void Put(Ch c) { *stack_.template Push<Ch>() = c; }
memorystream.h 44 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); }
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
stringbuffertest.cpp 27 TEST(StringBuffer, Put) {
29 buffer.Put('A');
37 buffer.Put('A');
38 buffer.Put('B');
39 buffer.Put('C');
59 buffer.Put('A');
60 buffer.Put('B');
61 buffer.Put('C');
62 buffer.Put('D');
63 buffer.Put('E')
    [all...]
  /external/v8/src/snapshot/
snapshot-source-sink.cc 30 Put(static_cast<int>(integer & 0xff), "IntPart1");
31 if (bytes > 1) Put(static_cast<int>((integer >> 8) & 0xff), "IntPart2");
32 if (bytes > 2) Put(static_cast<int>((integer >> 16) & 0xff), "IntPart3");
33 if (bytes > 3) Put(static_cast<int>((integer >> 24) & 0xff), "IntPart4");
snapshot-source-sink.h 86 void Put(byte b, const char* description) { data_.Add(b); }
90 Put(static_cast<byte>(b), description);
  /external/sfntly/cpp/src/sfntly/data/
byte_array.h 56 // @param b the buffer to put the bytes read into
64 // @param b the buffer to put the bytes read into
66 // @param length the number of bytes to put into the buffer
75 virtual void Put(int32_t index, byte_t b);
78 // buffer is put into the array unless that would extend beyond the length and
80 virtual int32_t Put(int32_t index, ByteVector* b);
83 // specified are put into the array unless that would extend beyond the length
84 // and the array isn't growable. The bytes to be put into the array are those
87 // @param b the bytes to put into the array
91 virtual int32_t Put(int32_t index
    [all...]
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) {
writable_font_data.cc 49 ba->Put(0, b);
55 array_->Put(BoundOffset(index), b);
63 return array_->Put(BoundOffset(index),
80 array_->Put(BoundOffset(index),
96 array_->Put(index + i, pad);
  /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)
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
thumb2-b-interwork.s 12 @ Put this in a separate section to force the assembler to generate a reloc
  /external/skia/tools/lua/
ngrams_aggregate.lua 7 -- Put the data into a sortable "array".
  /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...]
  /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...]
compilation-cache.h 84 void Put(Handle<String> source,
120 void Put(Handle<String> source, Handle<SharedFunctionInfo> outer_info,
136 void Put(Handle<String> source,
string-stream.h 112 bool Put(char c);
113 bool Put(String* str);
114 bool Put(String* str, int start, int end);
  /external/dng_sdk/source/
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 (),
dng_image_writer.h 114 virtual void Put (dng_stream &stream) const = 0;
154 virtual void Put (dng_stream &stream) const;
181 virtual void Put (dng_stream &stream) const;
201 virtual void Put (dng_stream &stream) const;
527 virtual void Put (dng_stream &stream) const;
571 virtual void Put (dng_stream &stream) const;
654 void Put (dng_stream &stream,
972 void Put (dng_stream &stream) const
974 fExifIFD.Put (stream);
975 fGPSIFD .Put (stream)
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
mr.py 45 When an entity is put, the pre-put hook is called, which may update some
52 entity: The entity to put. Can be any kind.
54 entity.put()
117 """Yields put operations for any StoppageAlert that may be created.
130 Either one op.db.Put, or nothing.
148 yield op.db.Put(new_alert)
152 """Marks a Test as deprecated and yields Put operations."""
154 yield op.db.Put(test)
167 yield op.db.Put(suite
    [all...]
  /external/opencv/otherlibs/highgui/
bitstrm.h 223 void Put( int val, int bits );
246 void Put( int val, int bits );
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
misctest.cpp 369 os_->Put('-');
385 os_->Put(*p);
392 os_->Put('-');
409 os_->Put(*p);
448 os_->Put('-');
473 os_->Put(*p);
480 os_->Put('-');
506 os_->Put(*p);
528 os_->Put('-');
544 os_->Put(*p);
    [all...]

Completed in 875 milliseconds

1 2 3 4 5 6 7 8