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

1 2 3

  /libcore/luni/src/main/native/
ExecStrings.h 30 char** array_; member in class:ExecStrings
  /external/chromium/chrome/browser/sync/util/
dbgq.h 18 DebugQueue() : i_(array_) { }
20 i_ = (array_ == i_ ? array_ + size - 1 : i_ - 1);
25 T array_[size]; member in class:DebugQueue
  /external/chromium_org/content/common/indexed_db/
indexed_db_key_path.h 34 std::vector<string16> array_; member in class:content::IndexedDBKeyPath
indexed_db_key.h 41 const std::vector<IndexedDBKey>& array() const { return array_; }
50 std::vector<IndexedDBKey> array_; member in class:content::IndexedDBKey
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
system-alloc_unittest.cc 65 void *result = &array_[ptr_];
90 char array_[kArraySize]; member in class:ArraySysAllocator
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
system-alloc_unittest.cc 65 void *result = &array_[ptr_];
90 char array_[kArraySize]; member in class:ArraySysAllocator
  /art/runtime/mirror/
string.h 39 return OFFSET_OF_OBJECT_MEMBER(String, array_);
139 CharArray* array_; member in class:art::mirror::String
  /external/ceres-solver/include/ceres/internal/
scoped_ptr.h 202 explicit scoped_array(C* p = NULL) : array_(p) { }
208 delete[] array_;
215 if (p != array_) {
217 delete[] array_;
218 array_ = p;
226 assert(array_ != NULL);
227 return array_[i];
233 return array_;
239 bool operator==(const C* p) const { return array_ == p; }
240 bool operator!=(const C* p) const { return array_ != p;
261 C* array_; member in class:ceres::internal::scoped_array
    [all...]
fixed_array.h 110 inline const T* get() const { return &array_[0].element; }
111 inline T* get() { return &array_[0].element; }
118 return array_[i].element;
126 return array_[i].element;
129 inline iterator begin() { return &array_[0].element; }
130 inline iterator end() { return &array_[size_].element; }
132 inline const_iterator begin() const { return &array_[0].element; }
133 inline const_iterator end() const { return &array_[size_].element; }
156 InnerContainer* const array_; member in class:ceres::internal::FixedArray
168 array_((n <= kInlineElement
    [all...]
  /external/chromium/base/memory/
scoped_ptr.h 174 explicit scoped_array(C* p = NULL) : array_(p) { }
180 delete[] array_;
187 if (p != array_) {
189 delete[] array_;
190 array_ = p;
198 assert(array_ != NULL);
199 return array_[i];
205 return array_;
211 bool operator==(C* p) const { return array_ == p; }
212 bool operator!=(C* p) const { return array_ != p;
233 C* array_; member in class:scoped_array
    [all...]
  /external/chromium_org/content/renderer/pepper/
npapi_glue.h 160 PP_Var* array() { return array_.get(); }
164 scoped_ptr<PP_Var[]> array_; member in class:content::PPVarArrayFromNPVariantArray
  /external/chromium_org/third_party/WebKit/Source/wtf/
TCPackedCache.h 149 array_[Hash(key)] = static_cast<T>(KeyToUpper(key) | value);
154 return KeyMatch(array_[Hash(key)], key);
158 // As with other code in this class, we touch array_ as few times
163 T entry = array_[Hash(key)];
170 array_[i] = static_cast<T>(value);
224 T array_[1 << kHashbits]; member in class:PackedCache
TCPageMap.h 56 void** array_; member in class:TCMalloc_PageMap1
62 array_ = reinterpret_cast<void**>((*allocator)(sizeof(void*) << BITS));
63 memset(array_, 0, sizeof(void*) << BITS);
81 return array_[k];
89 array_[k] = v;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
packed-cache-inl.h 161 array_[Hash(key)] = KeyToUpper(key) | value;
166 return KeyMatch(array_[Hash(key)], key);
170 // As with other code in this class, we touch array_ as few times
175 T entry = array_[Hash(key)];
183 array_[i] = kUseWholeKeys ? (value | KeyToUpper(i)) : value;
233 // array_ is the cache. Its elements are volatile because any
235 volatile T array_[1 << kHashbits]; member in class:PackedCache
  /external/chromium_org/third_party/tcmalloc/vendor/src/
packed-cache-inl.h 159 array_[Hash(key)] = KeyToUpper(key) | value;
164 return KeyMatch(array_[Hash(key)], key);
168 // As with other code in this class, we touch array_ as few times
173 T entry = array_[Hash(key)];
181 array_[i] = kUseWholeKeys ? (value | KeyToUpper(i)) : value;
231 // array_ is the cache. Its elements are volatile because any
233 volatile T array_[1 << kHashbits]; member in class:PackedCache
pagemap.h 67 void** array_; member in class:TCMalloc_PageMap1
73 array_ = reinterpret_cast<void**>((*allocator)(sizeof(void*) << BITS));
74 memset(array_, 0, sizeof(void*) << BITS);
82 // ensure a number y where array_[y] would be an out-of-bounds
95 return array_[k];
103 array_[k] = v;
110 if (array_[k] != NULL) return array_[k];
  /external/sfntly/cpp/src/sfntly/data/
font_data.h 125 ByteArrayPtr array_; member in class:sfntly::FontData
  /external/chromium/testing/gtest/include/gtest/
gtest-test-part.h 137 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray
  /external/chromium_org/testing/gtest/include/gtest/
gtest-test-part.h 140 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray
  /external/chromium_org/third_party/cld/base/
scoped_ptr.h 187 explicit scoped_array(C* p = NULL) : array_(p) { }
193 delete[] array_;
200 if (p != array_) {
202 delete[] array_;
203 array_ = p;
211 assert(array_ != NULL);
212 return array_[i];
218 return array_;
224 bool operator==(const C* p) const { return array_ == p; }
225 bool operator!=(const C* p) const { return array_ != p;
246 C* array_; member in class:scoped_array
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
gtest-test-part.h 137 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray
  /external/chromium_org/v8/test/cctest/
test-declarative-accessors.cc 79 isolate_(NULL), array_(new AlignedArray), handle_array_(new HandleArray) {
85 SmartPointer<AlignedArray> array_; member in class:DescriptorTestHelper
179 helper->array_->Reset();
180 helper->array_->As<T*>()[index] = value;
181 VerifyRead(descriptor, internal_field, *helper->array_, expected);
227 AlignedArray* array = *helper->array_;
232 helper->array_->As<T*>()[index] = compare_value & bitmask;
255 AlignedArray* array = *helper.array_;
277 AlignedArray* array = *helper.array_;
  /external/gtest/include/gtest/
gtest-test-part.h 137 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest-test-part.h 137 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-test-part.h 137 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray

Completed in 562 milliseconds

1 2 3