Searched refs:dDate (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/fpdfsdk/javascript/ |
D | PublicMethods.cpp | 620 CFX_WideString CJS_PublicMethods::MakeFormatDate(double dDate, in MakeFormatDate() argument 624 int nYear = JS_GetYearFromTime(dDate); in MakeFormatDate() 625 int nMonth = JS_GetMonthFromTime(dDate) + 1; in MakeFormatDate() 626 int nDay = JS_GetDayFromTime(dDate); in MakeFormatDate() 627 int nHour = JS_GetHourFromTime(dDate); in MakeFormatDate() 628 int nMin = JS_GetMinFromTime(dDate); in MakeFormatDate() 629 int nSec = JS_GetSecFromTime(dDate); in MakeFormatDate() 1119 double dDate = 0.0f; in AFDate_FormatEx() local 1124 dDate = MakeInterDate(strValue); in AFDate_FormatEx() 1126 dDate = MakeRegularDate(strValue, sFormat, nullptr); in AFDate_FormatEx() [all …]
|
D | util.cpp | 430 double dDate = JS_GetDateTime(); in scand() local 432 dDate = CJS_PublicMethods::MakeRegularDate(sDate, sFormat, nullptr); in scand() 435 if (!JS_PortIsNan(dDate)) { in scand() 436 vRet = CJS_Value(pRuntime, CJS_Date(pRuntime, dDate)); in scand()
|
D | PublicMethods.h | 145 static CFX_WideString MakeFormatDate(double dDate,
|
/external/pdfium/xfa/fxfa/fm2js/ |
D | xfa_fm2jscontext.cpp | 1279 int32_t dDate = (int32_t)ValueToFloat(pThis, dateValue.get()); in Num2Date() local 1280 if (dDate < 1) { in Num2Date() 1309 while (dDate > 0) { in Num2Date() 1312 if (dDate > 29) { in Num2Date() 1319 dDate -= 29; in Num2Date() 1321 iDay += static_cast<int32_t>(dDate) - 1; in Num2Date() 1322 dDate = 0; in Num2Date() 1325 if (dDate > 28) { in Num2Date() 1332 dDate -= 28; in Num2Date() 1334 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 | 966 int dDate = 22; //DAYOFWEEK should return 3 for Wednesday in TestFields060() local 969 calendar = new GregorianCalendar( year, month, dDate); in TestFields060()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
D | CompatibilityTest.java | 965 int dDate = 22; //DAYOFWEEK should return 3 for Wednesday in TestFields060() local 968 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()
|