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

  /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_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_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...]
  /external/pdfium/core/fxcrt/
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_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...]
  /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/fxjs/
cfxjse_resolveprocessor.cpp 47 wchar_t wch = rnd.m_wsName[0]; local
48 switch (wch) {
  /external/pdfium/xfa/fgas/layout/
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...]
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...]
  /external/python/cpython3/Python/
fileutils.c 159 wchar_t wch; local
163 res = mbstowcs(&wch, (char*)&ch, 1);
    [all...]
  /external/pdfium/xfa/fde/
cfde_texteditengine.cpp 913 wchar_t wch = GetChar(pos); local
914 if (wch == L'\n' || wch == L'\r') {
915 if (wch == L'\n' && pos > 0 && GetChar(pos - 1) == L'\r')
    [all...]
  /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...]
  /external/python/cpython3/Modules/
_cursesmodule.c 275 - 2 if obj is a character (written into *wch)
282 , wchar_t *wch
300 *wch = buffer[0];
337 - 2 if obj is a character string (written into *wch)
3160 wchar_t wch; local
    [all...]
posixmodule.c 3486 wchar_t wch = wnamebuf[len-1]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c 2122 Py_UNICODE wch = wnamebuf[len-1]; local
    [all...]
  /external/libxml2/
trio.c 5684 trio_wchar_t wch; local
    [all...]
  /external/python/cpython2/Modules/
posixmodule.c 2315 Py_UNICODE wch = wnamebuf[len-1]; local
    [all...]

Completed in 4462 milliseconds