Searched refs:m_array (Results 1 - 10 of 10) sorted by relevance

/external/pdfium/xfa/fxfa/parser/
H A Dcxfa_arraynodelist.cpp16 m_array.Copy(srcArray);
21 return m_array.GetSize();
25 m_array.Add(pNode);
31 m_array.Add(pNewNode);
33 int32_t iSize = m_array.GetSize();
35 if (m_array[i] == pBeforeNode) {
36 m_array.InsertAt(i, pNewNode);
45 int32_t iSize = m_array.GetSize();
47 if (m_array[i] == pNode) {
48 m_array
[all...]
H A Dxfa_object.h746 CXFA_NodeArray m_array; member in class:CXFA_ArrayNodeList
/external/pdfium/xfa/fxbarcode/qrcode/
H A DBC_QRCoderBitVector.cpp32 m_array = FX_Alloc(uint8_t, m_size);
35 FX_Free(m_array);
38 FX_Free(m_array);
41 m_array = FX_Alloc(uint8_t, m_size);
48 int32_t value = m_array[index >> 3] & 0xff;
67 m_array[m_sizeInBits >> 3] |= (bit << (7 - numBitsInLastByte));
111 m_array[i] ^= (other->GetArray())[i];
115 return m_array;
120 FXSYS_memcpy(newArray, m_array, m_size);
121 FX_Free(m_array);
[all...]
H A DBC_QRCoderBitVector.h15 uint8_t* m_array; member in class:CBC_QRCoderBitVector
/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/pdfium/third_party/agg23/
H A Dagg_array.h30 FX_Free(m_array);
32 pod_array() : m_size(0), m_capacity(0), m_array(0) {}
45 FXSYS_memset(m_array, 0, sizeof(T) * m_size);
49 m_array[m_size++] = v;
65 return m_array[i];
69 return m_array[i];
73 return m_array[i];
77 return m_array[i];
81 return m_array[i];
85 return m_array;
104 T* m_array; member in class:agg::pod_array
[all...]
/external/deqp/framework/delibs/decpp/
H A DdePoolArray.hpp138 const PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; }
141 const T* operator-> (void) const throw() { return &(*m_array)[this->m_ndx]; }
142 const T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; }
143 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; }
161 const PoolArray<T, Alignment>* m_array; member in class:de::PoolArrayConstIterator
174 PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; }
177 T* operator-> (void) const throw() { return &(*m_array)[this->m_ndx]; }
178 T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; }
179 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; }
194 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.cpp62 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {}
65 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; }
66 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; }
69 tcu::Vector<T, Size>* m_array; member in struct:deqp::gles31::Functional::VecArrayAccess
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderCommonFunctionTests.cpp67 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {}
70 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; }
71 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; }
74 tcu::Vector<T, Size>* m_array; member in struct:vkt::shaderexecutor::__anon3951::VecArrayAccess

Completed in 411 milliseconds