HomeSort by relevance Sort by last modified time
    Searched refs:wch (Results 1 - 25 of 35) sorted by null

1 2

  /external/pdfium/core/fxcrt/
fx_unicode.cpp 16 wchar_t GetMirrorChar(wchar_t wch, uint32_t dwProps) {
19 return wch;
21 return idx < kFXTextLayoutBidiMirrorSize ? kFXTextLayoutBidiMirror[idx] : wch;
26 uint32_t FX_GetUnicodeProperties(wchar_t wch) {
27 size_t idx = static_cast<size_t>(wch);
33 wchar_t FX_GetMirrorChar(wchar_t wch) {
34 return GetMirrorChar(wch, FX_GetUnicodeProperties(wch));
38 wchar_t FX_GetMirrorChar(wchar_t wch, uint32_t dwProps) {
39 return GetMirrorChar(wch, dwProps)
    [all...]
fx_unicode.h 12 uint32_t FX_GetUnicodeProperties(wchar_t wch);
13 wchar_t FX_GetMirrorChar(wchar_t wch);
44 wchar_t FX_GetMirrorChar(wchar_t wch, uint32_t dwProps);
fx_extension.h 44 inline bool FXSYS_iswalpha(wchar_t wch) {
45 return FXSYS_isupper(wch) || FXSYS_islower(wch);
48 inline bool FXSYS_iswalnum(wchar_t wch) {
49 return FXSYS_iswalpha(wch) || std::iswdigit(wch);
fx_arabic.h 18 wchar_t GetFormChar(wchar_t wch, wchar_t prev, wchar_t next);
cfx_seekablestreamproxy.cpp 108 uint16_t wch; local
111 wch = static_cast<uint16_t>(*pStr);
112 wch = (wch >> 8) | (wch << 8);
113 wch &= 0x00FF;
114 *pStr = wch;
121 wch = static_cast<uint16_t>(*pStr);
122 wch = (wch >> 8) | (wch << 8)
    [all...]
fx_extension.cpp 31 wchar_t wch = pwsStr[iUsedLen]; local
32 if (!std::iswdigit(wch))
35 fValue = fValue * 10.0f + (wch - L'0');
42 wchar_t wch = pwsStr[iUsedLen]; local
43 if (!std::iswdigit(wch))
46 fValue += (wch - L'0') * fPrecise;
cfx_widetextbuf.h 16 void AppendChar(wchar_t wch);
fx_bidi.h 35 bool AppendChar(wchar_t wch);
  /external/pdfium/core/fxcrt/css/
cfx_cssvaluelistparser.cpp 30 wchar_t wch = *m_pCur; local
31 if (wch == '#') {
35 } else if (std::iswdigit(wch) || wch == '.' || wch == '-' || wch == '+') {
41 } else if (wch == '\"' || wch == '\'') {
44 *iLength = SkipTo(wch, false, false);
60 int32_t CFX_CSSValueListParser::SkipTo(wchar_t wch,
    [all...]
cfx_csssyntaxparser.cpp 19 bool IsSelectorStart(wchar_t wch) {
20 return wch == '.' || wch == '#' || wch == '*' || FXSYS_iswalpha(wch);
57 wchar_t wch; local
59 wch = m_TextPlane.GetChar();
62 switch (wch) {
77 if (wch <= ' ') {
79 } else if (IsSelectorStart(wch)) {
    [all...]
cfx_cssselector.cpp 19 wchar_t wch = *psz; local
20 if (!FXSYS_iswalnum(wch) && wch != '_' && wch != '-')
69 wchar_t wch = *psz; local
70 if (FXSYS_iswalpha(wch) || wch == '*') {
71 int32_t iNameLen = wch == '*' ? 1 : GetCSSNameLen(psz, pEnd);
80 } else if (wch == ' ') {
cfx_csstextbuf.h 18 void AppendChar(wchar_t wch);
cfx_cssvaluelistparser.h 23 int32_t SkipTo(wchar_t wch, bool breakOnSpace, bool matchBrackets);
cfx_csstextbuf.cpp 24 void CFX_CSSTextBuf::AppendChar(wchar_t wch) {
28 m_pBuffer[m_iDatLen++] = wch;
cfx_csssyntaxparser.h 57 bool AppendChar(wchar_t wch);
  /external/pdfium/xfa/fgas/layout/
cfx_txtbreak.cpp 51 wchar_t wch = pCurChar->char_code(); local
58 wForm = wch;
63 if (wch == 0x0651) {
69 } else if (wch >= 0x064C && wch <= 0x0650) {
71 wForm = FX_GetArabicFromShaddaTable(wch);
98 wchar_t wch = pCurChar->char_code(); local
99 switch (wch) {
111 if (wch == m_wParagraphBreakChar)
180 wchar_t wch = pCurChar->char_code() local
640 uint16_t wch; member in struct:FX_FORMCHAR
690 wchar_t wch; local
925 wchar_t wch; local
    [all...]
cfx_break.cpp 127 void CFX_Break::SetDefaultChar(wchar_t wch) {
128 m_wDefChar = wch;
140 void CFX_Break::SetParagraphBreakChar(wchar_t wch) {
141 if (wch != L'\r' && wch != L'\n')
143 m_wParagraphBreakChar = wch;
cfx_break.h 52 void SetParagraphBreakChar(wchar_t wch);
53 void SetDefaultChar(wchar_t wch);
cfx_rtfbreak.h 64 CFX_BreakType AppendChar(wchar_t wch);
cfx_txtbreak.h 71 CFX_BreakType AppendChar(wchar_t wch);
cfx_rtfbreak.cpp 67 CFX_BreakType CFX_RTFBreak::AppendChar(wchar_t wch) {
70 uint32_t dwProps = FX_GetUnicodeProperties(wch);
72 m_pCurLine->m_LineChars.emplace_back(wch, dwProps, m_iHorizontalScale,
695 wchar_t wch = pText->pStr[i]; local
697 uint32_t dwProps = FX_GetUnicodeProperties(wch);
713 wchar_t wForm = wch;
722 wForm = pdfium::arabic::GetFormChar(wch, wPrev, wNext);
724 wForm = FX_GetMirrorChar(wch, dwProps);
730 pCharPos->m_GlyphIndex = wch;
734 pCharPos->m_GlyphIndex = pFont->GetGlyphIndex(wch);
    [all...]
  /external/libcxx/include/
__bsd_locale_defaults.h 24 #define __libcpp_wctob_l(wch, loc) wctob_l(wch, loc)
  /external/pdfium/core/fpdftext/
cpdf_linkextract.cpp 283 wchar_t wch = (*str)[i]; local
284 if (wch == L'-' || FXSYS_iswalnum(wch))
287 if (wch != L'.' || i == pPos + 1) {
  /external/pdfium/xfa/fde/
cfde_textout.cpp 223 for (const wchar_t& wch : str) {
224 if (!break_char_is_set && (wch == L'\n' || wch == L'\r')) {
226 m_pTxtBreak->SetParagraphBreakChar(wch);
228 dwBreakStatus = m_pTxtBreak->AppendChar(wch);
340 for (const auto& wch : str) {
341 dwBreakStatus = m_pTxtBreak->AppendChar(wch);
  /external/pdfium/xfa/fxfa/
cxfa_textlayout.cpp 886 wchar_t wch = wsText[i]; local
887 if (wch == 0xA0)
888 wch = 0x20;
890 dwStatus = m_pBreak->AppendChar(wch);
923 wchar_t wch = 0, wPrev = 0; local
925 wch = psz[i];
926 if (wch < 0x20)
927 wch = 0x20;
928 if (wch == 0x20 && wPrev == 0x20)
931 wPrev = wch;
    [all...]

Completed in 341 milliseconds

1 2