Searched refs:dDate (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/fxjs/ |
D | cjs_publicmethods.cpp | 446 WideString CJS_PublicMethods::PrintDateUsingFormat(double dDate, in PrintDateUsingFormat() argument 451 int nYear = FX_GetYearFromTime(dDate); in PrintDateUsingFormat() 452 int nMonth = FX_GetMonthFromTime(dDate) + 1; in PrintDateUsingFormat() 453 int nDay = FX_GetDayFromTime(dDate); in PrintDateUsingFormat() 454 int nHour = FX_GetHourFromTime(dDate); in PrintDateUsingFormat() 455 int nMin = FX_GetMinFromTime(dDate); in PrintDateUsingFormat() 456 int nSec = FX_GetSecFromTime(dDate); in PrintDateUsingFormat() 892 double dDate; in AFDate_FormatEx() local 895 dDate = ParseDateAsGMT(strValue); in AFDate_FormatEx() 897 dDate = ParseDateUsingFormat(strValue, sFormat, nullptr); in AFDate_FormatEx() [all …]
|
D | cjs_util.cpp | 374 double dDate = FX_GetDateTime(); in scand() local 376 dDate = CJS_PublicMethods::ParseDateUsingFormat(sDate, sFormat, nullptr); in scand() 377 if (std::isnan(dDate)) in scand() 380 return CJS_Result::Success(pRuntime->NewDate(dDate)); in scand()
|
D | cjs_publicmethods.h | 28 static WideString PrintDateUsingFormat(double dDate,
|
/external/pdfium/fxjs/xfa/ |
D | cfxjse_formcalc_context.cpp | 2085 int32_t dDate = (int32_t)ValueToFloat(pThis, dateValue.get()); in Num2Date() local 2086 if (dDate < 1) { in Num2Date() 2115 while (dDate > 0) { in Num2Date() 2118 if (dDate > 29) { in Num2Date() 2125 dDate -= 29; in Num2Date() 2127 iDay += static_cast<int32_t>(dDate) - 1; in Num2Date() 2128 dDate = 0; in Num2Date() 2131 if (dDate > 28) { in Num2Date() 2138 dDate -= 28; in Num2Date() 2140 iDay += static_cast<int32_t>(dDate) - 1; in Num2Date() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/ |
D | CompatibilityTest.java | 972 int dDate = 22; //DAYOFWEEK should return 3 for Wednesday in TestFields060() local 975 calendar = new GregorianCalendar( year, month, dDate); in TestFields060()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
D | CompatibilityTest.java | 969 int dDate = 22; //DAYOFWEEK should return 3 for Wednesday in TestFields060() local 972 calendar = new GregorianCalendar( year, month, dDate); in TestFields060()
|
/external/icu/icu4c/source/test/intltest/ |
D | caltest.cpp | 1414 int32_t dDate = 22; in TestFields060() local 1416 calendar = new GregorianCalendar(year, month, dDate, status); in TestFields060()
|