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

  /external/pdfium/xfa/fgas/layout/
fgas_textbreak.h 109 int32_t iCharRotation;
222 void SetCharRotation(int32_t iCharRotation);
fgas_textbreak.cpp 167 void CFX_TxtBreak::SetCharRotation(int32_t iCharRotation) {
168 if (iCharRotation < 0)
169 iCharRotation += (-iCharRotation / 4 + 1) * 4;
170 else if (iCharRotation > 3)
171 iCharRotation -= (iCharRotation / 4) * 4;
173 if (m_iCharRotation == iCharRotation)
177 m_iCharRotation = iCharRotation;
    [all...]

Completed in 2248 milliseconds