Searched defs:array_ (Results 1 - 25 of 48) sorted by relevance

12

/external/chromium_org/content/common/indexed_db/
H A Dindexed_db_key_path.h35 std::vector<base::string16> array_; member in class:content::IndexedDBKeyPath
H A Dindexed_db_key.h42 const std::vector<IndexedDBKey>& array() const { return array_; }
54 std::vector<IndexedDBKey> array_; member in class:content::IndexedDBKey
/external/chromium_org/ppapi/shared_impl/
H A Dscoped_pp_var.h68 PP_Var* get() { return array_; }
73 const PP_Var& operator[](size_t index) { return array_[index]; }
79 PP_Var* array_; member in class:ppapi::ScopedPPVarArray
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daudio_vector.h26 : array_(new int16_t[kDefaultInitialSize]),
32 : array_(new int16_t[initial_size]),
35 memset(array_.get(), 0, initial_size * sizeof(int16_t));
111 scoped_ptr<int16_t[]> array_; member in class:webrtc::AudioVector
112 size_t first_free_ix_; // The first index after the last sample in array_.
113 // Note that this index may point outside of array_.
H A Daudio_multi_vector_unittest.cc46 array_[i] = static_cast<int16_t>(i);
61 return sizeof(array_) / sizeof(array_[0]);
66 int16_t array_[10]; member in class:webrtc::AudioMultiVectorTest
H A Daudio_vector_unittest.cc28 array_[i] = i;
33 return sizeof(array_) / sizeof(array_[0]);
36 int16_t array_[10]; member in class:webrtc::AudioVectorTest
67 vec.PushBack(array_, array_length());
72 EXPECT_EQ(array_[i], vec[i]);
73 EXPECT_EQ(array_[i], vec_copy[i]);
89 vec.PushBack(array_, array_length());
115 vec.PushFront(array_, array_length());
118 EXPECT_EQ(array_[
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dfont_data.h125 ByteArrayPtr array_; member in class:sfntly::FontData
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dsystem-alloc_unittest.cc65 void *result = &array_[ptr_];
90 char array_[kArraySize]; member in class:ArraySysAllocator
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dsystem-alloc_unittest.cc65 void *result = &array_[ptr_];
90 char array_[kArraySize]; member in class:ArraySysAllocator
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_data.h125 ByteArrayPtr array_; member in class:sfntly::FontData
/external/ceres-solver/include/ceres/internal/
H A Dfixed_array.h110 inline const T* get() const { return &array_[0].element; }
111 inline T* get() { return &array_[0].element; }
117 return array_[i].element;
124 return array_[i].element;
127 inline iterator begin() { return &array_[0].element; }
128 inline iterator end() { return &array_[size_].element; }
130 inline const_iterator begin() const { return &array_[0].element; }
131 inline const_iterator end() const { return &array_[size_].element; }
154 InnerContainer* const array_; member in class:ceres::internal::FixedArray
166 array_((
[all...]
H A Dscoped_ptr.h202 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_ !
261 C* array_; member in class:ceres::internal::scoped_array
[all...]
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest-test-part.h140 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray
/external/chromium_org/third_party/cld/base/
H A Dscoped_ptr.h187 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_ !
246 C* array_; member in class:scoped_array
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest-test-part.h137 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpacked-cache-inl.h161 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
H A Dpagemap.h73 void** array_; member in class:TCMalloc_PageMap1
79 array_ = reinterpret_cast<void**>((*allocator)(sizeof(void*) << BITS));
80 memset(array_, 0, sizeof(void*) << BITS);
88 // ensure a number y where array_[y] would be an out-of-bounds
101 return array_[k];
109 array_[k] = v;
116 if (array_[k] != NULL) return array_[k];
133 // Dimension of our page map array_.
139 void** array_; member in class:TCMalloc_PageMap1_LazyCommit
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpacked-cache-inl.h159 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
H A Dpagemap.h67 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/gtest/include/gtest/
H A Dgtest-test-part.h140 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-test-part.h137 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-test-part.h137 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray
/external/protobuf/gtest/include/gtest/
H A Dgtest-test-part.h140 internal::Vector<TestPartResult>* const array_; member in class:testing::TestPartResultArray::internal
/external/chromium_org/ppapi/proxy/
H A Dserialized_var.h476 PP_Var* array_; member in class:ppapi::proxy::SerializedVarVectorOutParam
/external/chromium_org/v8/src/
H A Dunique.h136 UniqueSet() : size_(0), capacity_(0), array_(NULL) { }
141 array_(zone->NewArray<Unique<T> >(capacity)) {
147 : size_(1), capacity_(1), array_(zone->NewArray<Unique<T> >(1)) {
148 array_[0] = uniq;
156 if (array_[i] == uniq) return;
157 if (array_[i].raw_address_ > uniq.raw_address_) {
160 for (int j = size_ - 1; j >= i; j--) array_[j + 1] = array_[j];
161 array_[i] = uniq;
168 array_[size
327 Unique<T>* array_; member in class:v8::internal::FINAL
[all...]

Completed in 1089 milliseconds

12