/external/pdfium/xfa/fxfa/parser/ |
D | xfa_localevalue.cpp | 110 auto pFormat = pdfium::MakeUnique<CFX_FormatString>(m_pLocaleMgr, false); in ValidateValue() local 112 pFormat->SplitFormatString(wsPattern, wsPatterns); in ValidateValue() 119 FX_LOCALECATEGORY eCategory = pFormat->GetCategory(wsFormat); in ValidateValue() 123 bRet = pFormat->ParseNull(wsValue, wsFormat); in ValidateValue() 129 bRet = pFormat->ParseZero(wsValue, wsFormat); in ValidateValue() 136 bRet = pFormat->ParseNum(wsValue, wsFormat, fNum); in ValidateValue() 138 bRet = pFormat->FormatNum(wsValue, wsFormat, wsOutput); in ValidateValue() 143 bRet = pFormat->ParseText(wsValue, wsFormat, wsOutput); in ValidateValue() 146 bRet = pFormat->FormatText(wsValue, wsFormat, wsOutput); in ValidateValue() 153 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Date, in ValidateValue() [all …]
|
D | cxfa_widgetdata.cpp | 1545 if (CXFA_Node* pFormat = m_pNode->GetChild(0, XFA_Element::Format)) { in GetPictureContent() local 1546 if (CXFA_Node* pPicture = pFormat->GetChild(0, XFA_Element::Picture)) { in GetPictureContent()
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
D | PVRTString.cpp | 1620 CPVRTString CPVRTString::format(const char *pFormat, ...) in format() argument 1624 va_start(arg, pFormat); in format() 1626 size_t bufSize = _vscprintf(pFormat,arg); in format() 1628 size_t bufSize = vsnprintf(NULL,0,pFormat,arg); in format() 1634 va_start(arg, pFormat); in format() 1635 vsnprintf(buf, bufSize + 1, pFormat, arg); in format() 1887 CPVRTString PVRTStringFromFormattedStr(const char *pFormat, ...) in PVRTStringFromFormattedStr() argument 1891 va_start(arg, pFormat); in PVRTStringFromFormattedStr() 1893 size_t bufSize = _vscprintf(pFormat,arg); in PVRTStringFromFormattedStr() 1895 size_t bufSize = vsnprintf(NULL,0,pFormat,arg); in PVRTStringFromFormattedStr() [all …]
|
D | PVRTString.h | 741 CPVRTString format(const char *pFormat, ...); 896 CPVRTString PVRTStringFromFormattedStr(const char *pFormat, ...);
|
/external/pdfium/core/fxcrt/ |
D | fx_basic_wstring.cpp | 406 void CFX_WideString::FormatV(const FX_WCHAR* pFormat, va_list argList) { in FormatV() argument 417 for (const FX_WCHAR* pStr = pFormat; *pStr != 0; pStr++) { in FormatV() 439 pFormat = L"Bad width"; in FormatV() 456 pFormat = L"Bad precision"; in FormatV() 610 (const wchar_t*)pFormat, argListSave); in FormatV() 616 void CFX_WideString::Format(const FX_WCHAR* pFormat, ...) { in Format() argument 618 va_start(argList, pFormat); in Format() 619 FormatV(pFormat, argList); in Format()
|
D | fx_basic_bstring.cpp | 441 void CFX_ByteString::FormatV(const FX_CHAR* pFormat, va_list argList) { in FormatV() argument 452 for (const FX_CHAR* pStr = pFormat; *pStr != 0; pStr++) { in FormatV() 474 pFormat = "Bad width"; in FormatV() 491 pFormat = "Bad precision"; in FormatV() 646 FXSYS_vsnprintf(m_pData->m_String, nMaxLen - 1, pFormat, argListSave); in FormatV() 652 void CFX_ByteString::Format(const FX_CHAR* pFormat, ...) { in Format() argument 654 va_start(argList, pFormat); in Format() 655 FormatV(pFormat, argList); in Format()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_format.c | 1595 enum pipe_format pFormat; in st_ChooseTextureFormat_renderable() local 1612 pFormat = st_choose_format(screen, internalFormat, format, type, in st_ChooseTextureFormat_renderable() 1615 if (pFormat == PIPE_FORMAT_NONE) { in st_ChooseTextureFormat_renderable() 1617 pFormat = st_choose_format(screen, internalFormat, format, type, in st_ChooseTextureFormat_renderable() 1621 if (pFormat == PIPE_FORMAT_NONE) { in st_ChooseTextureFormat_renderable() 1626 return st_pipe_format_to_mesa_format(pFormat); in st_ChooseTextureFormat_renderable()
|
/external/icu/icu4c/source/test/intltest/ |
D | numfmtst.cpp | 1495 NumberFormat *pFormat = NumberFormat::createPercentInstance(en_US, status); in TestLenientParse() local 1497 if (pFormat == NULL || U_FAILURE(status)) { in TestLenientParse() 1500 pFormat->setLenient(TRUE); in TestLenientParse() 1504 pFormat->parse(testCase, n, status); in TestLenientParse() 1517 pFormat->parse(testCase, n, status); in TestLenientParse() 1527 delete pFormat; in TestLenientParse()
|