/external/pdfium/fxjs/ |
D | cjs_util.cpp | 212 std::basic_string<wchar_t> cFormat = in printd() local 214 cFormat.erase(std::remove(cFormat.begin(), cFormat.end(), '%'), in printd() 215 cFormat.end()); in printd() 220 while ((iEnd = cFormat.find(TbConvertTable[i].lpszJSMark, iStart)) != -1) { in printd() 221 cFormat.replace(iEnd, wcslen(TbConvertTable[i].lpszJSMark), in printd() 239 while ((iEnd = cFormat.find(cTableAd[i].lpszJSMark, iStart)) != -1) { in printd() 241 if (cFormat[iEnd - 1] == L'%') { in printd() 246 cFormat.replace(iEnd, wcslen(cTableAd[i].lpszJSMark), in printd() 261 FXSYS_wcsftime(buf, 64, cFormat.c_str(), &time); in printd() 262 cFormat = buf; in printd() [all …]
|
D | cjs_util.h | 39 static WideString StringPrintx(const WideString& cFormat,
|
D | cjs_publicmethods.cpp | 1176 const char* cFormat = ""; in AFSpecial_Keystroke() local 1179 cFormat = "99999"; in AFSpecial_Keystroke() 1182 cFormat = "999999999"; in AFSpecial_Keystroke() 1186 cFormat = "9999999999"; in AFSpecial_Keystroke() 1188 cFormat = "9999999"; in AFSpecial_Keystroke() 1191 cFormat = "999999999"; in AFSpecial_Keystroke() 1196 params2.push_back(pRuntime->NewString(cFormat)); in AFSpecial_Keystroke()
|
/external/tensorflow/tensorflow/lite/swift/Sources/ |
D | Interpreter.swift | 78 guard let cFormat = format, variable 80 let message = String(cFormat: cFormat, arguments: arguments) 339 init?(cFormat: UnsafePointer<CChar>, arguments: CVaListPointer) { 341 let length = Int(vsnprintf(nil, 0, cFormat, arguments) + 1) // null terminator 347 guard vsnprintf(buffer, length, cFormat, arguments) == length - 1 else { return nil } 351 guard vasprintf(&buffer, cFormat, arguments) != 0, let cString = buffer else { return nil }
|
/external/icu/icu4c/source/test/iotest/ |
D | iotest.cpp | 207 char cFormat[sizeof(cBuffer)]; in DataDrivenPrintf() local 301 u_austrncpy(cFormat, format, sizeof(cFormat)); in DataDrivenPrintf() 305 i, cFormat, cBuffer, cExpected); in DataDrivenPrintf() 330 u_austrncpy(cFormat, format, sizeof(cFormat)); in DataDrivenPrintf() 334 i, cFormat, cBuffer, cExpected); in DataDrivenPrintf() 612 char cFormat[sizeof(cBuffer)]; in DataDrivenPrintfPrecision() local 690 u_austrncpy(cFormat, format, sizeof(cFormat)); in DataDrivenPrintfPrecision() 694 i, cFormat, cBuffer, cExpected); in DataDrivenPrintfPrecision()
|
D | strtst.c | 362 #define TestSPrintFormat(uFormat, uValue, cFormat, cValue) UPRV_BLOCK_MACRO_BEGIN { \ argument 369 cNumPrinted = sprintf(buffer, cFormat, cValue);\
|
D | filetst.c | 1151 #define TestFPrintFormat(uFormat, uValue, cFormat, cValue) UPRV_BLOCK_MACRO_BEGIN { \ argument 1167 cNumPrinted = sprintf(buffer, cFormat, cValue);\
|
/external/fastrpc/src/ |
D | std_dtoa.c | 374 int std_dtoa_hex( double dNumber, int nPrecision, char cFormat, in std_dtoa_hex() argument 390 const char *pcDigitArray = ( cFormat == 'A' ) ? HexDigitsU : HexDigitsL; in std_dtoa_hex()
|
D | std_dtoa.h | 127 int std_dtoa_hex( double dNumber, int nPrecision, char cFormat,
|
/external/icu/icu4c/source/test/intltest/ |
D | numfmtst.cpp | 1207 NumberFormat *cFormat = NumberFormat::createInstance(en_US, UNUM_CURRENCY, status); in TestLenientParse() local 1209 if (cFormat == NULL || U_FAILURE(status)) { in TestLenientParse() 1212 cFormat->setLenient(TRUE); in TestLenientParse() 1216 cFormat->parse(testCase, n, status); in TestLenientParse() 1230 cFormat->parse(testCase, n, status); in TestLenientParse() 1241 delete cFormat; in TestLenientParse()
|