Home
last modified time | relevance | path

Searched refs:dDate (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/fxjs/
Dcjs_publicmethods.cpp446 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 …]
Dcjs_util.cpp374 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()
Dcjs_publicmethods.h28 static WideString PrintDateUsingFormat(double dDate,
/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp2085 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/
DCompatibilityTest.java972 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/
DCompatibilityTest.java969 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/
Dcaltest.cpp1414 int32_t dDate = 22; in TestFields060() local
1416 calendar = new GregorianCalendar(year, month, dDate, status); in TestFields060()