Searched defs:m_array (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DArrayValue.h40 : m_array(array)
60 v8::Local<v8::Array> m_array; member in class:blink::ArrayValue
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTerminatedArrayBuilder.h17 : m_array(array)
21 if (!m_array)
23 m_capacity = m_count = m_array->size();
29 if (!m_array) {
33 m_array = ArrayType<T>::Allocator::create(m_capacity);
37 m_array = ArrayType<T>::Allocator::resize(m_array.release(), m_capacity);
38 m_array->at(m_count - 1).setLastInArray(false);
45 m_array->at(m_count++) = item;
51 if (m_array)
70 typename ArrayType<T>::Allocator::Ptr m_array; member in class:WTF::TerminatedArrayBuilder
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKeyPath.h60 return m_array;
76 Vector<String> m_array; member in class:blink::IDBKeyPath
H A DIDBKey.h115 return m_array;
151 explicit IDBKey(const KeyArray& keyArray) : m_type(ArrayType), m_array(keyArray), m_number(0) { }
154 const KeyArray m_array; member in class:blink::IDBKey
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DFastStringBuffer.java135 * Field m_array holds the string buffer's text contents, using an
142 char[][] m_array; field in class:FastStringBuffer
145 * Field m_lastChunk is an index into m_array[], pointing to the last
156 * Field m_firstFree is an index into m_array[m_lastChunk][], pointing to
158 * FastStringBuffer's current content. Since m_array[][] is zero-based,
166 * length equals m_chunkSize, and which replaces m_array[0]. This allows
210 m_array = new char[16][];
221 m_array[0] = new char[m_chunkSize];
308 m_array = new char[16][0];
309 m_array[
[all...]
/external/lldb/tools/lldb-perf/lib/
H A DResults.h153 collection m_array; member in class:lldb_perf::Results::Array
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_array.h27 FX_Free(m_array);
29 pod_array() : m_size(0), m_capacity(0), m_array(0) {}
42 FXSYS_memset(m_array, 0, sizeof(T) * m_size);
46 m_array[m_size++] = v;
62 return m_array[i];
66 return m_array[i];
70 return m_array[i];
74 return m_array[i];
78 return m_array[i];
82 return m_array;
101 T* m_array; member in class:agg::pod_array
[all...]
/external/deqp/framework/delibs/decpp/
H A DdePoolArray.hpp129 const PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; }
132 const T* operator-> (void) const throw() { return (*m_array)[this->m_ndx]; }
133 const T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; }
134 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; }
152 const PoolArray<T, Alignment>* m_array; member in class:de::PoolArrayConstIterator
165 PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; }
168 T* operator-> (void) const throw() { return (*m_array)[this->m_ndx]; }
169 T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; }
170 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; }
185 PoolArray<T, Alignment>* m_array; member in class:de::PoolArrayIterator
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderCommonFunctionTests.cpp58 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {}
61 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; }
62 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; }
65 tcu::Vector<T, Size>* m_array; member in struct:deqp::gles3::Functional::VecArrayAccess
/external/deqp/modules/gles31/functional/
H A Des31fShaderCommonFunctionTests.cpp59 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {}
62 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; }
63 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; }
66 tcu::Vector<T, Size>* m_array; member in struct:deqp::gles31::Functional::VecArrayAccess
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapTest.cpp361 m_array[i] = i % 128;
365 int8_t at(size_t i) { return m_array[i]; }
369 int8_t m_array[s_arraySize]; member in class:blink::HeapAllocatedArray

Completed in 5856 milliseconds