Searched refs:dDate (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/fxjs/ |
D | cjs_publicmethods.cpp | 729 WideString CJS_PublicMethods::MakeFormatDate(double dDate, in MakeFormatDate() argument 734 int nYear = JS_GetYearFromTime(dDate); in MakeFormatDate() 735 int nMonth = JS_GetMonthFromTime(dDate) + 1; in MakeFormatDate() 736 int nDay = JS_GetDayFromTime(dDate); in MakeFormatDate() 737 int nHour = JS_GetHourFromTime(dDate); in MakeFormatDate() 738 int nMin = JS_GetMinFromTime(dDate); in MakeFormatDate() 739 int nSec = JS_GetSecFromTime(dDate); in MakeFormatDate() 1162 double dDate; in AFDate_FormatEx() local 1166 dDate = MakeInterDate(strValue); in AFDate_FormatEx() 1168 dDate = MakeRegularDate(strValue, sFormat, nullptr); in AFDate_FormatEx() [all …]
|
D | cjs_util.cpp | 369 double dDate = JS_GetDateTime(); in scand() local 371 dDate = CJS_PublicMethods::MakeRegularDate(sDate, sFormat, nullptr); in scand() 373 if (std::isnan(dDate)) in scand() 375 return CJS_Return(pRuntime->NewDate(dDate)); in scand()
|
D | cfxjse_formcalc_context.cpp | 1364 int32_t dDate = (int32_t)ValueToFloat(pThis, dateValue.get()); in Num2Date() local 1365 if (dDate < 1) { in Num2Date() 1394 while (dDate > 0) { in Num2Date() 1397 if (dDate > 29) { in Num2Date() 1404 dDate -= 29; in Num2Date() 1406 iDay += static_cast<int32_t>(dDate) - 1; in Num2Date() 1407 dDate = 0; in Num2Date() 1410 if (dDate > 28) { in Num2Date() 1417 dDate -= 28; in Num2Date() 1419 iDay += static_cast<int32_t>(dDate) - 1; in Num2Date() [all …]
|
D | cjs_publicmethods.h | 26 static WideString MakeFormatDate(double dDate, const WideString& format);
|
/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 | 1393 int32_t dDate = 22; in TestFields060() local 1395 calendar = new GregorianCalendar(year, month, dDate, status); in TestFields060()
|