/external/llvm/include/llvm/ADT/ |
IndexedMap.h | 39 StorageT storage_; member in class:llvm::IndexedMap 49 assert(toIndex_(n) < storage_.size() && "index out of bounds!"); 50 return storage_[toIndex_(n)]; 54 assert(toIndex_(n) < storage_.size() && "index out of bounds!"); 55 return storage_[toIndex_(n)]; 59 storage_.reserve(s); 63 storage_.resize(s, nullVal_); 67 storage_.clear(); 72 if (NewSize > storage_.size()) 77 return toIndex_(n) < storage_.size() [all...] |
/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/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/base/ |
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/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/valgrind/tsan/ |
thread_sanitizer.cc | [all...] |
/external/v8/src/ |
runtime.cc | [all...] |