HomeSort by relevance Sort by last modified time
    Searched refs:m_PendingChar (Results 1 - 2 of 2) sorted by null

  /external/pdfium/core/fxcrt/
cfx_utf8decoder.cpp 27 m_PendingChar |= (byte & 0x3f) << (m_PendingBytes * 6);
29 AppendCodePoint(m_PendingChar);
33 m_PendingChar = (byte & 0x1f) << 6;
36 m_PendingChar = (byte & 0x0f) << 12;
39 m_PendingChar = (byte & 0x07) << 18;
42 m_PendingChar = (byte & 0x03) << 24;
45 m_PendingChar = (byte & 0x01) << 30;
cfx_utf8decoder.h 24 uint32_t m_PendingChar;

Completed in 514 milliseconds