/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | FastStringBuffer.java | 142 char[][] m_array; field in FastStringBuffer 210 m_array = new char[16][]; in FastStringBuffer() 221 m_array[0] = new char[m_chunkSize]; in FastStringBuffer() 308 m_array = new char[16][0]; in reset() 309 m_array[0] = new char[m_chunkSize]; in reset() 376 rootFSB.m_array = m_array; in setLength() 425 chunk = m_array[m_lastChunk]; in append() 430 int i = m_array.length; in append() 436 System.arraycopy(m_array, 0, newarray, 0, i); in append() 438 m_array = newarray; in append() [all …]
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_arraynodelist.cpp | 16 m_array.Copy(srcArray); in SetArrayNodeList() 21 return m_array.GetSize(); in GetLength() 25 m_array.Add(pNode); in Append() 31 m_array.Add(pNewNode); in Insert() 33 int32_t iSize = m_array.GetSize(); in Insert() 35 if (m_array[i] == pBeforeNode) { in Insert() 36 m_array.InsertAt(i, pNewNode); in Insert() 45 int32_t iSize = m_array.GetSize(); in Remove() 47 if (m_array[i] == pNode) { in Remove() 48 m_array.RemoveAt(i); in Remove() [all …]
|
D | xfa_object.h | 746 CXFA_NodeArray m_array;
|
/external/pdfium/xfa/fxbarcode/qrcode/ |
D | BC_QRCoderBitVector.cpp | 32 m_array = FX_Alloc(uint8_t, m_size); in Init() 35 FX_Free(m_array); in ~CBC_QRCoderBitVector() 38 FX_Free(m_array); in Clear() 41 m_array = FX_Alloc(uint8_t, m_size); in Clear() 48 int32_t value = m_array[index >> 3] & 0xff; in At() 67 m_array[m_sizeInBits >> 3] |= (bit << (7 - numBitsInLastByte)); in AppendBit() 111 m_array[i] ^= (other->GetArray())[i]; in XOR() 115 return m_array; in GetArray() 120 FXSYS_memcpy(newArray, m_array, m_size); in AppendByte() 121 FX_Free(m_array); in AppendByte() [all …]
|
D | BC_QRCoderBitVector.h | 15 uint8_t* m_array; variable
|
/external/pdfium/third_party/agg23/ |
D | agg_array.h | 30 FX_Free(m_array); in ~pod_array() 32 pod_array() : m_size(0), m_capacity(0), m_array(0) {} in pod_array() 45 FXSYS_memset(m_array, 0, sizeof(T) * m_size); in zero() 49 m_array[m_size++] = v; in add() 65 return m_array[i]; 69 return m_array[i]; 73 return m_array[i]; in at() 77 return m_array[i]; in at() 81 return m_array[i]; in value_at() 85 return m_array; in data() [all …]
|
/external/deqp/framework/delibs/decpp/ |
D | dePoolArray.hpp | 138 const PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; } in getArray() 141 const T* operator-> (void) const throw() { return &(*m_array)[this->m_ndx]; } in operator ->() 142 const T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; } in operator *() 143 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []() 161 const PoolArray<T, Alignment>* m_array; member in de::PoolArrayConstIterator 174 PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; } in getArray() 177 T* operator-> (void) const throw() { return &(*m_array)[this->m_ndx]; } in operator ->() 178 T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; } in operator *() 179 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []() 194 PoolArray<T, Alignment>* m_array; member in de::PoolArrayIterator [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderCommonFunctionTests.cpp | 58 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} in VecArrayAccess() 61 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } in operator []() 62 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } in operator []() 65 tcu::Vector<T, Size>* m_array; member
|
/external/deqp/modules/gles31/functional/ |
D | es31fShaderCommonFunctionTests.cpp | 62 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} in VecArrayAccess() 65 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } in operator []() 66 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } in operator []() 69 tcu::Vector<T, Size>* m_array; member
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderCommonFunctionTests.cpp | 67 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} in VecArrayAccess() 70 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } in operator []() 71 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } in operator []() 74 tcu::Vector<T, Size>* m_array; member
|