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

  /external/pdfium/xfa/fde/css/
cfde_cssvaluelistparser.cpp 28 FX_WCHAR wch = *m_pCur; local
29 if (wch == '#') {
33 } else if ((wch >= '0' && wch <= '9') || wch == '.' || wch == '-' ||
34 wch == '+') {
40 } else if (wch == '\"' || wch == '\'') {
43 iLength = SkipTo(wch, false, false)
    [all...]
cfde_cssselector.cpp 15 bool IsCSSChar(FX_WCHAR wch) {
16 return (wch >= 'a' && wch <= 'z') || (wch >= 'A' && wch <= 'Z');
22 FX_WCHAR wch = *psz; local
23 if (IsCSSChar(wch) || (wch >= '0' && wch <= '9') || wch == '_' |
75 FX_WCHAR wch = *psz; local
    [all...]
cfde_csssyntaxparser.cpp 17 bool IsSelectorStart(FX_WCHAR wch) {
18 return wch == '.' || wch == '#' || wch == '*' || (wch >= 'a' && wch <= 'z') ||
19 (wch >= 'A' && wch <= 'Z');
68 FX_WCHAR wch; local
70 wch = m_TextPlane.GetChar()
    [all...]
  /external/pdfium/core/fpdftext/
cpdf_linkextract.cpp 140 FX_WCHAR wch = str.GetAt(i); local
141 if (wch == L'-' || FXSYS_iswalnum(wch))
144 if (wch != L'.' || i == pPos + 1) {
  /external/pdfium/xfa/fgas/crt/
fgas_codepage.cpp 349 uint16_t wch; local
352 wch = (uint16_t)*pStr;
353 wch = (wch >> 8) | (wch << 8);
354 wch &= 0x00FF;
355 *pStr++ = wch;
359 wch = (uint16_t)*pStr;
360 wch = (wch >> 8) | (wch << 8)
    [all...]
  /external/pdfium/core/fxcrt/
fx_arabic.cpp 289 bool IsArabicChar(FX_WCHAR wch) {
291 kTextLayoutCodeProperties[(uint16_t)wch] & FX_CHARTYPEBITSMASK;
295 bool IsArabicFormChar(FX_WCHAR wch) {
296 return (kTextLayoutCodeProperties[(uint16_t)wch] & FX_CHARTYPEBITSMASK) ==
300 FX_WCHAR GetFormChar(FX_WCHAR wch, FX_WCHAR prev, FX_WCHAR next) {
301 CFX_Char c(wch, kTextLayoutCodeProperties[(uint16_t)wch]);
350 FX_WCHAR wch; local
355 wch = *pStart;
357 *pEnd-- = wch;
    [all...]
fx_extension.cpp 464 FX_WCHAR wch = pwsStr[iUsedLen]; local
465 if (wch >= L'0' && wch <= L'9') {
466 fValue = fValue * 10.0f + (wch - L'0');
475 FX_WCHAR wch = pwsStr[iUsedLen]; local
476 if (wch >= L'0' && wch <= L'9') {
477 fValue += (wch - L'0') * fPrecise;
  /external/pdfium/xfa/fxfa/parser/
cxfa_resolveprocessor.cpp 37 FX_WCHAR wch = rnd.m_wsName.GetAt(0); local
38 switch (wch) {
  /external/pdfium/xfa/fde/tto/
fde_textout.cpp 99 void CFDE_TextOut::SetParagraphBreakChar(FX_WCHAR wch) {
100 m_wParagraphBkChar = wch;
101 m_pTxtBreak->SetParagraphBreakChar(wch);
201 FX_WCHAR wch; local
204 wch = *pStr++;
205 if (wBreak == 0 && (wch == L'\n' || wch == L'\r')) {
206 wBreak = wch;
207 m_pTxtBreak->SetParagraphBreakChar(wch);
209 if (bHotKey && wch == L'&' && wPreChar != L'&')
408 FX_WCHAR wch; local
458 FX_WCHAR wch; local
654 FX_WCHAR wch; local
    [all...]
  /external/pdfium/xfa/fgas/layout/
fgas_rtfbreak.cpp 228 CFX_RTFBreakType CFX_RTFBreak::AppendChar(FX_WCHAR wch) {
231 uint32_t dwProps = kTextLayoutCodeProperties[static_cast<uint16_t>(wch)];
237 pCurChar->m_wCharCode = wch;
881 FX_WCHAR wch; local
904 wch = pText->pStr[i];
906 dwProps = FX_GetUnicodeProperties(wch);
922 wForm = wch;
931 wForm = pdfium::arabic::GetFormChar(wch, wPrev, wNext);
933 wForm = FX_GetMirrorChar(wch, dwProps, bRTLPiece, false);
939 pCharPos->m_GlyphIndex = wch;
    [all...]
fgas_textbreak.cpp 144 void CFX_TxtBreak::SetDefaultChar(FX_WCHAR wch) {
145 m_wDefChar = wch;
157 void CFX_TxtBreak::SetParagraphBreakChar(FX_WCHAR wch) {
158 if (wch != L'\r' && wch != L'\n')
160 m_wParagBreakChar = wch;
336 FX_WCHAR wch = pCurChar->m_wCharCode; local
346 wForm = wch;
352 if (wch == 0x0651) {
358 } else if (wch >= 0x064C && wch <= 0x0650)
415 FX_WCHAR wch = pCurChar->m_wCharCode; local
509 FX_WCHAR wch = pCurChar->m_wCharCode; local
600 FX_WCHAR wch, wForm; local
1136 uint16_t wch; member in struct:FX_FORMCHAR
1204 FX_WCHAR wch; local
1544 FX_WCHAR wch; local
    [all...]
  /external/pdfium/xfa/fxfa/app/
cxfa_textlayout.cpp 900 FX_WCHAR wch = wsText.GetAt(i); local
901 if (wch == 0xA0)
902 wch = 0x20;
904 dwStatus = m_pBreak->AppendChar(wch);
938 FX_WCHAR wch = 0, wPrev = 0; local
940 wch = psz[i];
941 if (wch < 0x20)
942 wch = 0x20;
943 if (wch == 0x20 && wPrev == 0x20)
946 wPrev = wch;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
shlwapi.h 126 LWSTDAPI_(WINBOOL) IsCharSpaceA(CHAR wch); variable
127 LWSTDAPI_(WINBOOL) IsCharSpaceW(WCHAR wch); variable
    [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 2309 Py_UNICODE wch = wnamebuf[len-1]; local
    [all...]

Completed in 874 milliseconds