OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_iDatLen
(Results
1 - 4
of
4
) sorted by null
/external/pdfium/core/fxcrt/css/
cfx_cssexttextbuf.cpp
10
: m_pExtBuffer(nullptr),
m_iDatLen
(0), m_iDatPos(0) {}
16
m_iDatLen
= iBufLen;
cfx_csstextbuf.cpp
12
: m_pBuffer(nullptr), m_iBufLen(0),
m_iDatLen
(0) {}
17
m_iDatLen
= m_iBufLen;
25
if (
m_iDatLen
>= m_iBufLen)
28
m_pBuffer[
m_iDatLen
++] = wch;
32
while (
m_iDatLen
> 0 && m_pBuffer[
m_iDatLen
- 1] <= ' ')
33
--
m_iDatLen
;
35
return --
m_iDatLen
;
cfx_cssexttextbuf.h
19
bool IsEOF() const { return m_iDatPos >=
m_iDatLen
; }
23
return (m_iDatPos + 1 >=
m_iDatLen
) ? 0 : m_pExtBuffer[m_iDatPos + 1];
30
int32_t
m_iDatLen
;
cfx_csstextbuf.h
20
void Clear() {
m_iDatLen
= 0; }
24
int32_t GetLength() const { return
m_iDatLen
; }
32
int32_t
m_iDatLen
;
Completed in 141 milliseconds