Searched refs:InsertSpaceAt (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/core/include/fxcrt/ |
D | fx_basic.h | 299 uint8_t* InsertSpaceAt(int nIndex, int nCount); 389 TYPE* AddSpace() { return (TYPE*)CFX_BasicArray::InsertSpaceAt(m_nSize, 1); } in AddSpace() 391 TYPE* InsertSpaceAt(int nIndex, int nCount) { in InsertSpaceAt() function 392 return (TYPE*)CFX_BasicArray::InsertSpaceAt(nIndex, nCount); in InsertSpaceAt() 410 if (!InsertSpaceAt(nIndex, nCount)) { 456 new ((void*)InsertSpaceAt(m_nSize, 1)) ObjectClass(data); in Add() 460 return *(ObjectClass*)new ((void*)InsertSpaceAt(m_nSize, 1)) ObjectClass(); in Add() 463 void* AddSpace() { return InsertSpaceAt(m_nSize, 1); } in AddSpace() 486 InsertSpaceAt(m_nSize, nCount);
|
/external/pdfium/core/src/fxcrt/ |
D | fx_basic_array.cpp | 83 uint8_t* CFX_BasicArray::InsertSpaceAt(int nIndex, int nCount) { in InsertSpaceAt() function in CFX_BasicArray 124 if (!InsertSpaceAt(nStartIndex, pNewArray->m_nSize)) { in InsertAt()
|
/external/pdfium/xfa/src/fxfa/src/app/ |
D | xfa_textlayout.h | 283 m_tabstops.InsertSpaceAt(i, 1); in Append()
|