HomeSort by relevance Sort by last modified time
    Searched full:storage_ (Results 1 - 12 of 12) sorted by null

  /external/chromium/net/tools/flip_server/
simple_buffer.h 20 delete[] storage_;
28 iterator begin() { return storage_ + read_idx_; }
29 const_iterator begin() const { return storage_ + read_idx_; }
31 iterator end() { return storage_ + write_idx_; }
32 const_iterator end() const { return storage_ + write_idx_; }
65 char* tmp = storage_;
66 storage_ = other->storage_;
67 other->storage_ = tmp;
83 char* storage_; member in class:net::SimpleBuffer
    [all...]
simple_buffer.cc 24 : storage_(new char[kInitialSimpleBufferSize]),
37 storage_ = new char[size];
90 memcpy(storage_ + write_idx_, bytes, size);
101 *ptr = storage_ + write_idx_;
111 *ptr = storage_ + read_idx_;
149 memmove(storage_, read_ptr, read_size);
173 delete[] storage_;
174 storage_ = new_storage;
  /external/llvm/include/llvm/ADT/
IndexedMap.h 34 StorageT storage_; member in class:llvm::IndexedMap
44 assert(toIndex_(n) < storage_.size() && "index out of bounds!");
45 return storage_[toIndex_(n)];
49 assert(toIndex_(n) < storage_.size() && "index out of bounds!");
50 return storage_[toIndex_(n)];
54 storage_.reserve(s);
58 storage_.resize(s, nullVal_);
62 storage_.clear();
67 if (NewSize > storage_.size())
72 return toIndex_(n) < storage_.size()
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
cryptstring.h 94 storage_ = new char[32];
97 storage_[0] = 0;
106 memcpy(storage_ + length_, data, length);
108 storage_[length_] = '\0';
114 password->CopyTo(storage_ + length_, true);
123 return storage_;
134 char * old_storage = storage_;
142 storage_ = new char[capacity_];
145 memcpy(storage_, old_storage, length_);
158 storage_[0] = 0
166 char * storage_; member in class:talk_base::FormatCryptString
    [all...]
  /external/chromium-trace/trace-viewer/src/
settings.js 21 this.storage_ = alternativeStorageInstance;
27 this.storage_ = new FakeLocalStorage();
29 this.storage_ = localStorage;
50 var val = this.storage_.getItem(key);
66 this.storage_.setItem(this.namespace_(key, opt_namespace), String(value));
79 for (var i = 0; i < this.storage_.length; i++) {
80 var key = this.storage_.key(i);
  /external/chromium/base/
mach_ipc_mac.mm 45 : storage_(new MachMessageData), // Allocate storage_ ourselves
48 memset(storage_, 0, storage_length_bytes_);
53 : storage_(static_cast<MachMessageData*>(storage)),
63 delete storage_;
64 storage_ = NULL;
116 reinterpret_cast<MessageDataPacket*>(storage_->padding + desc_size);
125 reinterpret_cast<MachMsgPortDescriptor*>(storage_->padding);
155 storage_->body.msgh_descriptor_count = n;
168 reinterpret_cast<MachMsgPortDescriptor*>(storage_->padding)
    [all...]
mach_ipc_mac.h 168 return storage_->body.msgh_descriptor_count;
213 mach_msg_header_t *Head() { return &(storage_->head); }
223 MachMessageData *storage_; member in class:base::MachMessage
  /external/v8/src/
lazy-instance.h 205 reinterpret_cast<void*>(&storage_));
211 return AllocationTrait::MutableInstance(&storage_);
216 return *AllocationTrait::MutableInstance(&storage_);
223 mutable StorageType storage_; member in struct:v8::internal::LazyInstanceImpl
flag-definitions.h 88 return static_cast<int>(storage_[0]);
91 return reinterpret_cast<const char**>(storage_[1]);
109 storage_[0] = argc;
112 storage_[1] = reinterpret_cast<AtomicWord>(argv);
118 AtomicWord storage_[2]; member in struct:JSArguments
runtime.cc     [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_storage.cc 55 storage_(storage),
91 storage_.get(), &BookmarkStorage::OnLoadFinished,
108 scoped_refptr<BookmarkStorage> storage_; member in class:BookmarkStorage::LoadTask
  /external/chromium-trace/
script.js     [all...]

Completed in 335 milliseconds