HomeSort by relevance Sort by last modified time
    Searched defs:m_array (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ArrayValue.h 40 : m_array(array)
60 v8::Local<v8::Array> m_array; member in class:WebCore::ArrayValue
  /external/chromium_org/third_party/WebKit/Source/wtf/
TerminatedArrayBuilder.h 17 : 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/
IDBKeyPath.h 60 return m_array;
76 Vector<String> m_array; member in class:WebCore::IDBKeyPath
IDBKey.h 115 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:WebCore::IDBKey
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementData.h 51 : m_array(array)
55 const_iterator begin() const { return m_array; }
56 const_iterator end() const { return m_array + m_size; }
61 const Attribute* m_array; member in class:WebCore::AttributeCollection
  /external/lldb/tools/lldb-perf/lib/
Results.h 153 collection m_array; member in class:lldb_perf::Results::Array
  /external/apache-xml/src/main/java/org/apache/xml/utils/
FastStringBuffer.java 135 * 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[0] = new char[m_chunkSize]
    [all...]
  /external/deqp/framework/delibs/decpp/
dePoolArray.hpp 129 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/pdfium/core/src/fxge/agg/agg23/
agg_array.h 27 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/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 58 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
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp 59 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
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
HeapTest.cpp 368 m_array[i] = i % 128;
372 int8_t at(size_t i) { return m_array[i]; }
376 int8_t m_array[s_arraySize]; member in class:WebCore::HeapAllocatedArray
    [all...]
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 568 milliseconds