Home
last modified time | relevance | path

Searched refs:cFormat (Results 1 – 10 of 10) sorted by relevance

/external/pdfium/fxjs/
Dcjs_util.cpp212 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 …]
Dcjs_util.h39 static WideString StringPrintx(const WideString& cFormat,
Dcjs_publicmethods.cpp1176 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/
DInterpreter.swift78 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/
Diotest.cpp207 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()
Dstrtst.c362 #define TestSPrintFormat(uFormat, uValue, cFormat, cValue) UPRV_BLOCK_MACRO_BEGIN { \ argument
369 cNumPrinted = sprintf(buffer, cFormat, cValue);\
Dfiletst.c1151 #define TestFPrintFormat(uFormat, uValue, cFormat, cValue) UPRV_BLOCK_MACRO_BEGIN { \ argument
1167 cNumPrinted = sprintf(buffer, cFormat, cValue);\
/external/fastrpc/src/
Dstd_dtoa.c374 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()
Dstd_dtoa.h127 int std_dtoa_hex( double dNumber, int nPrecision, char cFormat,
/external/icu/icu4c/source/test/intltest/
Dnumfmtst.cpp1207 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()