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

  /external/pdfium/core/fxcrt/
fx_basic_util.cpp 15 bool FX_atonum(const CFX_ByteStringC& strc, void* pData) {
16 if (strc.Find('.') != -1) {
18 *pFloat = FX_atof(strc);
31 if (strc[0] == '+') {
34 } else if (strc[0] == '-') {
40 while (cc < strc.GetLength() && std::isdigit(strc[cc])) {
41 integer = integer * 10 + FXSYS_toDecimalDigit(strc.CharAt(cc));
85 FX_FLOAT FX_atof(const CFX_ByteStringC& strc) {
86 if (strc.IsEmpty()
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Shell/OS/Windows/
PVRShellOS.cpp 513 wchar_t strc[1024]; local
516 for(i = 0; (str[i] != '\0') && (i < (sizeof(strc) / sizeof(*strc))); ++i)
518 strc[i] = (wchar_t)str[i];
521 strc[i] = '\0';
523 OutputDebugString(strc);

Completed in 82 milliseconds