HomeSort by relevance Sort by last modified time
    Searched refs:array_ (Results 1 - 7 of 7) sorted by null

  /external/protobuf/gtest/src/
gtest-test-part.cc 69 : array_(new internal::Vector<TestPartResult>) {
74 delete array_;
79 array_->PushBack(result);
89 return array_->GetElement(index);
94 return array_->size();
  /external/chromium/base/
scoped_ptr.h 171 explicit scoped_array(C* p = NULL) : array_(p) { }
177 delete[] array_;
184 if (p != array_) {
186 delete[] array_;
187 array_ = p;
195 assert(array_ != NULL);
196 return array_[i];
202 return array_;
208 bool operator==(C* p) const { return array_ == p; }
209 bool operator!=(C* p) const { return array_ != p;
230 C* array_; member in class:scoped_array
    [all...]
  /external/webkit/JavaScriptCore/wtf/
TCPackedCache.h 154 array_[Hash(key)] = static_cast<T>(KeyToUpper(key) | value);
159 return KeyMatch(array_[Hash(key)], key);
163 // As with other code in this class, we touch array_ as few times
168 T entry = array_[Hash(key)];
175 array_[i] = static_cast<T>(value);
229 T array_[1 << kHashbits]; member in class:PackedCache
TCPageMap.h 63 void** array_; member in class:TCMalloc_PageMap1
69 array_ = reinterpret_cast<void**>((*allocator)(sizeof(void*) << BITS));
70 memset(array_, 0, sizeof(void*) << BITS);
88 return array_[k];
96 array_[k] = v;
  /external/qemu/elff/
dwarf_defs.h 722 array_(&small_array_[0]) {
727 if (array_ != &small_array_[0]) {
728 delete[] array_;
780 memcpy(new_array, array_, count_ * sizeof(const Dwarf_Abbr_DIE*));
781 if (array_ != &small_array_[0]) {
782 delete[] array_;
784 array_ = new_array;
789 array_[num - 1] = abbr;
814 return array_[num - 1];
865 return array_[num - 1];
884 const Dwarf_Abbr_DIE** array_; member in class:DwarfAbbrDieArray
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
common.h 511 explicit scoped_array(C* p = NULL) : array_(p) { }
517 delete[] array_;
524 if (p != array_) {
526 delete[] array_;
527 array_ = p;
535 assert(array_ != NULL);
536 return array_[i];
542 return array_;
548 bool operator==(C* p) const { return array_ == p; }
549 bool operator!=(C* p) const { return array_ != p;
570 C* array_; member in class:google::protobuf::internal::scoped_array
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-test-part.h 140 internal::Vector<TestPartResult>* const array_; member in class:testing::TestPartResultArray::internal

Completed in 108 milliseconds