HomeSort by relevance Sort by last modified time
    Searched defs:Put (Results 26 - 47 of 47) sorted by null

12

  /external/chromium_org/v8/src/
serialize.h 101 void Put(Address key, int index);
127 void Put(uint32_t key, Address value) {
374 virtual void Put(int byte, const char* description) = 0;
376 Put(byte, description);
mksnapshot.cc 38 virtual void Put(int byte, const char* description) { data_->Add(byte); }
string-stream.cc 27 bool StringStream::Put(char c) {
78 Put(format[offset]);
108 Put(static_cast<char>(value[i]));
121 Put(value);
289 bool StringStream::Put(String* str) {
290 return Put(str, 0, str->length());
294 bool StringStream::Put(String* str, int start, int end) {
302 if (!Put(static_cast<char>(c))) {
314 Put(str);
344 Put(' ');
    [all...]
serialize.cc 556 Put(external_references->address(i), i);
586 void ExternalReferenceEncoder::Put(Address key, int index) {
602 Put(external_references->code(i), external_references->address(i));
    [all...]
debug.cc     [all...]
objects.cc     [all...]
  /external/chromium_org/v8/test/cctest/
test-serialize.cc 180 virtual void Put(int byte, const char* description) {
  /external/opencv/otherlibs/highgui/
bitstrm.cpp 985 Put( m_pad_val, m_bit_idx & 7 );
1015 void WMBitStream::Put( int val, int bits )
1054 Put( code >> 8, code & 255 );
  /art/runtime/
profiler.cc 444 profile_table_.Put(method);
488 void ProfileSampleResults::Put(mirror::ArtMethod* method) {
jni_internal.cc 504 void Put(const std::string& path, SharedLibrary* library) {
505 libraries_.Put(path, library);
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_database.cc 723 void IndexedDBDatabase::Put(int64 transaction_id,
731 IDB_TRACE1("IndexedDBDatabase::Put", "txn.id", transaction_id);
850 "Internal error: backing store error performing put/add.");
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
c.cc 177 db->rep->Put(options->rep, Slice(key, keylen), Slice(val, vallen)));
353 b->rep.Put(Slice(key, klen), Slice(val, vlen));
365 void (*put)(void*, const char* k, size_t klen, const char* v, size_t vlen),
372 virtual void Put(const Slice& key, const Slice& value) {
381 handler.put_ = put;
db_impl.cc     [all...]
db_test.cc 288 Status Put(const std::string& k, const std::string& v) {
289 return db_->Put(WriteOptions(), k, v);
432 Put(small, "begin");
433 Put(large, "end");
515 ASSERT_OK(Put("foo", "v1"));
517 ASSERT_OK(Put("bar", "v2"));
518 ASSERT_OK(Put("foo", "v3"));
526 ASSERT_OK(db_->Put(WriteOptions(), "foo", "v1"));
528 ASSERT_OK(db_->Put(WriteOptions(), "foo", "v2"));
542 ASSERT_OK(Put("foo", "v1"))
    [all...]
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 382 // Put.
383 void Put(void *item) {
403 // remove an element from queue, put it into *res and return true.
521 queue_.Put(closure);
tsan_unittest.cpp 143 // Put everything into stderr.
453 // Two write accesses to GLOB are separated by PCQ Put/Get.
457 // 2. Q.Put() ---------\ .
464 Q.Put(NULL);
795 // 4. Q.Put() ---------------> d. Q.Get()
806 Q.Put(NULL);
895 // 2. Q2.Put() ----\ b. Q1.Put() -----\ .
903 Q1.Put(NULL);
907 Q2.Put(NULL)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ole.h 167 DWORD (CALLBACK *Put)(LPOLESTREAM,const void *,DWORD);
iiisext.h 171 HRESULT (WINAPI *Put)(IISApplicationPool *This,BSTR bstrName,VARIANT vProp,void *retval);
201 #define IISApplicationPool_Put(This,bstrName,vProp,retval) (This)->lpVtbl->Put(This,bstrName,vProp,retval)
246 HRESULT (WINAPI *Put)(IISApplicationPools *This,BSTR bstrName,VARIANT vProp,void *retval);
272 #define IISApplicationPools_Put(This,bstrName,vProp,retval) (This)->lpVtbl->Put(This,bstrName,vProp,retval)
322 HRESULT (WINAPI *Put)(IISWebService *This,BSTR bstrName,VARIANT vProp,void *retval);
364 #define IISWebService_Put(This,bstrName,vProp,retval) (This)->lpVtbl->Put(This,bstrName,vProp,retval)
453 HRESULT (WINAPI *Put)(IISDsCrMap *This,BSTR bstrName,VARIANT vProp,void *retval);
    [all...]
wbemcli.h 469 virtual HRESULT WINAPI Put(LPCWSTR wszName,__LONG32 lFlags,VARIANT *pVal,CIMTYPE Type) = 0;
500 HRESULT (WINAPI *Put)(IWbemClassObject *This,LPCWSTR wszName,__LONG32 lFlags,VARIANT *pVal,CIMTYPE Type);
533 #define IWbemClassObject_Put(This,wszName,lFlags,pVal,Type) (This)->lpVtbl->Put(This,wszName,lFlags,pVal,Type)
    [all...]
wbemdisp.h     [all...]
iads.h     [all...]
  /external/valgrind/main/VEX/pub/
libvex_ir.h 83 state into a temporary value. Afterwards, one can write ("Put")
86 Get and Put are characterised by a byte offset into the guest
91 The basic "Get" and "Put" operations are sufficient to model normal
111 PUT(0) = t1 # put %eax
126 - one register write (put)
131 - three temporaries (two nested within the Add32, one in the PUT)
137 PUT(0) = Add32(GET:I32(0), GET:I32(12))
    [all...]

Completed in 2575 milliseconds

12