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

1 2 3

  /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); }
  /external/sfntly/cpp/src/sfntly/data/
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) {
  /prebuilts/go/darwin-x86/src/sync/
pool.go 80 // Put adds x to the pool.
81 func (p *Pool) Put(x interface{}) {
112 // Callers should not assume any relation between values passed to Put and
216 // 2. If GC happens while a goroutine works with l.shared in Put/Get,
  /prebuilts/go/linux-x86/src/sync/
pool.go 80 // Put adds x to the pool.
81 func (p *Pool) Put(x interface{}) {
112 // Callers should not assume any relation between values passed to Put and
216 // 2. If GC happens while a goroutine works with l.shared in Put/Get,
  /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...]
  /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); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ole2.h 113 DWORD (CALLBACK *Put) (LPOLESTREAM, const void *, DWORD);
  /prebuilts/go/darwin-x86/src/net/http/httputil/
reverseproxy_test.go 453 put func([]byte)
457 func (bp bufferPool) Put(v []byte) { bp.put(v) }
487 put: func(p []byte) {
  /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/src/net/http/httputil/
reverseproxy_test.go 453 put func([]byte)
457 func (bp bufferPool) Put(v []byte) { bp.put(v) }
487 put: func(p []byte) {
  /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...]
  /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/flatbuffers/net/FlatBuffers/
ByteBuffer.cs 169 public void Put(int offset, byte value)
175 // Unsafe but more efficient versions of Put*.
257 // Slower versions of Put* for when unsafe code is not allowed.
  /external/v8/src/
compilation-cache.cc 185 void CompilationCacheScript::Put(Handle<String> source, Handle<Context> context,
216 void CompilationCacheEval::Put(Handle<String> source,
247 Put(source, flags, data);
258 void CompilationCacheRegExp::Put(Handle<String> source,
319 script_.Put(source, context, language_mode, function_info, literals);
331 eval_global_.Put(source, outer_info, function_info, context, literals,
336 eval_contextual_.Put(source, outer_info, function_info, native_context,
350 reg_exp_.Put(source, flags, data);
  /art/runtime/
safe_map.h 95 iterator Put(const K& k, const V& v) {
100 iterator Put(const K& k, V&& v) {
146 return it == end() ? Put(k, v) : it;
151 return it == end() ? Put(k, V()) : it;
  /external/dng_sdk/source/
dng_image.cpp 687 void dng_image::Put (const dng_pixel_buffer &buffer)
  /external/libchrome/base/containers/
mru_cache.h 87 iterator Put(const KeyType& key, Payload&& payload) {

Completed in 821 milliseconds

1 2 3