Home
last modified time | relevance | path

Searched refs:pwsStr (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/xfa/fde/tto/
Dfde_textout.h101 void DrawText(const FX_WCHAR* pwsStr, int32_t iLength, int32_t x, int32_t y);
102 void DrawText(const FX_WCHAR* pwsStr,
106 void DrawText(const FX_WCHAR* pwsStr, int32_t iLength, const CFX_Rect& rect);
107 void DrawText(const FX_WCHAR* pwsStr, int32_t iLength, const CFX_RectF& rect);
110 void CalcLogicSize(const FX_WCHAR* pwsStr, int32_t iLength, CFX_SizeF& size);
111 void CalcLogicSize(const FX_WCHAR* pwsStr, int32_t iLength, CFX_RectF& rect);
112 void DrawLogicText(const FX_WCHAR* pwsStr,
116 void DrawLogicText(const FX_WCHAR* pwsStr,
122 void CalcTextSize(const FX_WCHAR* pwsStr, int32_t iLength, CFX_RectF& rect);
128 void DrawText(const FX_WCHAR* pwsStr,
[all …]
Dfde_textout.cpp168 void CFDE_TextOut::CalcLogicSize(const FX_WCHAR* pwsStr, in CalcLogicSize() argument
172 CalcLogicSize(pwsStr, iLength, rtText); in CalcLogicSize()
176 void CFDE_TextOut::CalcLogicSize(const FX_WCHAR* pwsStr, in CalcLogicSize() argument
179 if (!pwsStr || iLength < 1) { in CalcLogicSize()
183 CalcTextSize(pwsStr, iLength, rect); in CalcLogicSize()
187 void CFDE_TextOut::CalcTextSize(const FX_WCHAR* pwsStr, in CalcTextSize() argument
193 const FX_WCHAR* pStr = pwsStr; in CalcTextSize()
299 void CFDE_TextOut::DrawText(const FX_WCHAR* pwsStr, in DrawText() argument
305 DrawText(pwsStr, iLength, rtText); in DrawText()
308 void CFDE_TextOut::DrawText(const FX_WCHAR* pwsStr, in DrawText() argument
[all …]
/external/pdfium/core/fxcrt/
Dfx_extension.cpp443 FX_FLOAT FXSYS_wcstof(const FX_WCHAR* pwsStr, in FXSYS_wcstof() argument
446 ASSERT(pwsStr); in FXSYS_wcstof()
448 iLength = (int32_t)FXSYS_wcslen(pwsStr); in FXSYS_wcstof()
455 switch (pwsStr[iUsedLen]) { in FXSYS_wcstof()
464 FX_WCHAR wch = pwsStr[iUsedLen]; in FXSYS_wcstof()
472 if (iUsedLen < iLength && pwsStr[iUsedLen] == L'.') { in FXSYS_wcstof()
475 FX_WCHAR wch = pwsStr[iUsedLen]; in FXSYS_wcstof()
Dfx_ext.h23 FX_FLOAT FXSYS_wcstof(const FX_WCHAR* pwsStr,