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

1 2 3 4 5 6 7 8 91011>>

  /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); }
  /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...]
  /prebuilts/go/darwin-x86/test/interface/
struct.go 22 type I1 interface { Get() int; Put(int) }
26 func (p S1) Put(i int) { p.i = i }
31 i.Put(2)
39 i.Put(2)
47 i.Put(2)
54 func (p *S2) Put(i int) { p.i = i }
60 // i.Put(2)
68 i.Put(2)
76 i.Put(2)
81 type I2 interface { Get() int64; Put(int64)
    [all...]
  /prebuilts/go/linux-x86/test/interface/
struct.go 22 type I1 interface { Get() int; Put(int) }
26 func (p S1) Put(i int) { p.i = i }
31 i.Put(2)
39 i.Put(2)
47 i.Put(2)
54 func (p *S2) Put(i int) { p.i = i }
60 // i.Put(2)
68 i.Put(2)
76 i.Put(2)
81 type I2 interface { Get() int64; Put(int64)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
pool_test.go 14 // Pool randomly drops the argument on the floor during Put.
21 p.Put(x)
37 p.Put(x)
41 p.Put(y)
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
pool_test.go 14 // Pool randomly drops the argument on the floor during Put.
21 p.Put(x)
37 p.Put(x)
41 p.Put(y)
  /external/v8/src/snapshot/
snapshot-source-sink.cc 29 Put(static_cast<int>(integer & 0xff), "IntPart1");
30 if (bytes > 1) Put(static_cast<int>((integer >> 8) & 0xff), "IntPart2");
31 if (bytes > 2) Put(static_cast<int>((integer >> 16) & 0xff), "IntPart3");
32 if (bytes > 3) Put(static_cast<int>((integer >> 24) & 0xff), "IntPart4");
serializer.cc 98 sink_.Put(kSynchronize, "Finished with deferred objects");
163 sink_.Put(kHotObjectWithSkip + index, "HotObjectWithSkip");
166 sink_.Put(kHotObject + index, "HotObject");
196 sink_.Put(kBackref + how_to_code + where_to_point + space, "BackRef");
198 sink_.Put(kBackrefWithSkip + how_to_code + where_to_point + space,
226 sink_.Put(kRootArrayConstants + root_index, "RootConstant");
228 sink_.Put(kRootArrayConstantsWithSkip + root_index, "RootConstant");
233 sink_.Put(kRootArray + how_to_code + where_to_point, "RootSerialization");
240 sink_.Put(kOnePointerRawData, "Smi");
242 for (int i = 0; i < kPointerSize; i++) sink_.Put(bytes[i], "Byte")
    [all...]
partial-serializer.cc 75 sink_.Put(kPartialSnapshotCache + how_to_code + where_to_point,
132 sink_.Put(kInternalFieldsData, "internal fields data");
143 sink_.Put(kNewObject + reference.space(), "internal field holder");
152 sink_.Put(kSynchronize, "Finished with internal fields data");
snapshot-source-sink.h 86 void Put(byte b, const char* description) { data_.Add(b); }
90 Put(static_cast<byte>(b), description);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
DivU64x32.S 69 movl 0xC(%ebp), %eax # Put high 32 bits of 64-bit dividend in EAX
70 movl 0x10(%ebp), %ecx # Put 32 bits divisor in ECX
76 movl 8(%ebp), %eax # Put low 32 bits of 64-bit dividend in EAX
81 movl 0x14(%ebp), %ecx # Put &REMAINDER to ecx
84 movl %edx, (%ecx) # Put EDX through REMAINDER pointer in ECX
DivU64x32.c 55 mov eax, dword ptr Dividend[4] ; Put high 32 bits of 64-bit dividend in EAX
56 mov ecx, Divisor ; Put 32 bits divisor in ECX
62 mov eax, dword ptr Dividend[0] ; Put low 32 bits of 64-bit dividend in EAX
67 mov ecx, Remainder ; Put &REMAINDER to ecx
70 mov dword ptr [ecx], edx ; Put EDX through REMAINDER pointer in ECX
DivU64x32.asm 63 mov eax, [ebp + 0Ch] ; Put high 32 bits of 64-bit dividend in EAX
64 mov ecx, [ebp + 10h] ; Put 32 bits divisor in ECX
70 mov eax, [ebp + 8] ; Put low 32 bits of 64-bit dividend in EAX
75 mov ecx, [ebp + 14h] ; Put &REMAINDER to ecx
78 mov dword ptr [ecx], edx ; Put EDX through REMAINDER pointer in ECX
  /prebuilts/go/darwin-x86/src/sync/
pool_test.go 28 // between Put and Get calls.
30 p.Put("a")
31 p.Put("b")
43 p.Put("c")
70 // between Put and Get calls.
72 p.Put(42)
104 p.Put(v)
138 p.Put(v)
157 p.Put(1)
168 p.Put(1
    [all...]
  /prebuilts/go/linux-x86/src/sync/
pool_test.go 28 // between Put and Get calls.
30 p.Put("a")
31 p.Put("b")
43 p.Put("c")
70 // between Put and Get calls.
72 p.Put(42)
104 p.Put(v)
138 p.Put(v)
157 p.Put(1)
168 p.Put(1
    [all...]
  /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 60 void ByteArray::Put(int32_t index, byte_t b) {
73 int32_t ByteArray::Put(int index, ByteVector* b) {
75 return Put(index, &((*b)[0]), 0, b->size());
78 int32_t ByteArray::Put(int32_t index,
119 int bytes_written = array->Put(index + dst_offset, &(b[0]), 0, bytes_read);
151 if (Put(index, &(b[0]), 0, bytes_read) != bytes_read) {
171 if (Put(index, &b[0], 0, bytes_read) != bytes_read) {
  /toolchain/binutils/binutils-2.27/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".
  /external/skqp/tools/lua/
ngrams_aggregate.lua 7 -- Put the data into a sortable "array".
  /external/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...]

Completed in 404 milliseconds

1 2 3 4 5 6 7 8 91011>>