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

  /external/pdfium/core/fpdfapi/page/
cpdf_textobject.h 45 CFX_PointF GetPos() const { return m_Pos; }
67 CFX_PointF m_Pos;
cpdf_streamparser.h 34 uint32_t GetPos() const { return m_Pos; }
35 void SetPos(uint32_t pos) { m_Pos = pos; }
55 uint32_t m_Pos; // Current byte position within m_pBuf.
  /external/lzma/CS/7zip/Common/
InBuffer.cs 8 uint m_Pos;
26 m_Pos = 0;
34 m_ProcessedSize += m_Pos;
36 m_Pos = 0;
51 if (m_Pos >= m_Limit)
54 b = m_Buffer[m_Pos++];
61 if (m_Pos >= m_Limit)
64 return m_Buffer[m_Pos++];
69 return m_ProcessedSize + m_Pos;
OutBuffer.cs 8 uint m_Pos;
27 m_Pos = 0;
32 m_Buffer[m_Pos++] = b;
33 if (m_Pos >= m_BufferSize)
39 if (m_Pos == 0)
41 m_Stream.Write(m_Buffer, 0, (int)m_Pos);
42 m_Pos = 0;
45 public ulong GetProcessedSize() { return m_ProcessedSize + m_Pos; }
  /external/pdfium/core/fpdfapi/parser/
cpdf_syntax_parser.h 32 FX_FILESIZE SavePos() const { return m_Pos; }
33 void RestorePos(FX_FILESIZE pos) { m_Pos = pos; }
90 FX_FILESIZE m_Pos;
cpdf_data_avail.h 219 FX_FILESIZE m_Pos;
  /external/pdfium/core/fpdfapi/edit/
cpdf_creator.h 95 FX_POSITION m_Pos;
  /frameworks/compile/mclinker/include/mcld/Support/
GCFactory.h 28 unsigned int m_Pos;
32 : m_pChunk(X), m_Pos(pPos) {}
35 ++m_Pos;
36 if ((m_Pos == m_pChunk->bound) && (0 == m_pChunk->next))
38 if (m_Pos == m_pChunk->bound) {
40 m_Pos = 0;
45 return ((this->m_pChunk == y.m_pChunk) && (this->m_Pos == y.m_Pos));
49 return ((this->m_pChunk != y.m_pChunk) || (this->m_Pos != y.m_Pos));
    [all...]

Completed in 242 milliseconds