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

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mspcoll.h 18 int m_nSize;
22 CTapiIfCollection(void) : m_nSize(0),m_Var(NULL) { }
28 m_nSize = dwSize;
29 m_Var = new CComVariant[m_nSize];
54 *retval = m_nSize;
73 if((Index < 1) || (Index > m_nSize)) return E_INVALIDARG;
91 hr = p->Init(&m_Var[0],&m_Var[m_nSize],NULL,AtlFlagCopy);
msputils.h 37 int m_nSize;
40 CMSPArray() : m_aT(NULL),m_nSize(0),m_nAllocSize(0) { }
42 int GetSize() const { return m_nSize; }
45 int nNewAllocSize = (m_nAllocSize==0) ? dwInitial : (m_nSize + DELTA);
53 if(m_nSize==m_nAllocSize) {
56 m_nSize++;
57 SetAtIndex(m_nSize - 1,t);
66 if(nIndex!=(m_nSize - 1))
67 memmove((void*)&m_aT[nIndex],(void*)&m_aT[nIndex + 1],(m_nSize - (nIndex + 1))*sizeof(T));
68 m_nSize--
    [all...]
dxtmpl.h 112 int m_nSize;
120 inline int CDXArray<TYPE,ARG_TYPE>::GetSize() const { return m_nSize; }
122 inline int CDXArray<TYPE,ARG_TYPE>::GetUpperBound() const { return m_nSize-1; }
126 inline TYPE CDXArray<TYPE,ARG_TYPE>::GetAt(int nIndex) const { _ASSERT((nIndex >= 0 && nIndex < m_nSize)); return m_pData[nIndex]; }
128 inline void CDXArray<TYPE,ARG_TYPE>::SetAt(int nIndex,ARG_TYPE newElement) { _ASSERT((nIndex >= 0 && nIndex < m_nSize)); m_pData[nIndex] = newElement; }
130 inline TYPE &CDXArray<TYPE,ARG_TYPE>::ElementAt(int nIndex) { _ASSERT((nIndex >= 0 && nIndex < m_nSize)); return m_pData[nIndex]; }
137 int nIndex = m_nSize;
146 CDXArray<TYPE,ARG_TYPE>::CDXArray() { m_pData = NULL; m_nSize = m_nMaxSize = m_nGrowBy = 0; }
151 DXDestructElements(m_pData,m_nSize);
163 DXDestructElements(m_pData,m_nSize);
    [all...]
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_parser_imp.h 116 size_t m_nSize[2];
  /external/pdfium/core/include/fxcrt/
fx_basic.h 310 int m_nSize;
321 int GetSize() const { return m_nSize; }
323 int GetUpperBound() const { return m_nSize - 1; }
330 if (nIndex < 0 || nIndex >= m_nSize) {
337 if (nIndex < 0 || nIndex >= m_nSize) {
345 if (nIndex < 0 || nIndex >= m_nSize) {
359 if (nIndex >= m_nSize)
368 if (m_nSize < m_nMaxSize) {
369 m_nSize++;
370 } else if (!SetSize(m_nSize + 1))
    [all...]

Completed in 2540 milliseconds