Home
last modified time | relevance | path

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

/external/pdfium/fxjs/
Dcjs_publicmethods.cpp729 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 …]
Dcjs_util.cpp369 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()
Dcfxjse_formcalc_context.cpp1364 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 …]
Dcjs_publicmethods.h26 static WideString MakeFormatDate(double dDate, const WideString& format);
/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.cpp1393 int32_t dDate = 22; in TestFields060() local
1395 calendar = new GregorianCalendar(year, month, dDate, status); in TestFields060()