(08e24b2ba6847221abd35e9b994206b764d6b322)
#include "fxjs/fx_date_helpers.h"
#include <math.h>
#include <time.h>
#include <wctype.h>
#include <array>
#include <iterator>
#include "build/build_config.h"
#include "core/fxcrt/fx_extension.h"
#include "core/fxcrt/fx_system.h"
#include "fpdfsdk/cpdfsdk_helpers.h"
Go to the source code of this file.
|
double | fxjs::FX_GetDateTime () |
int | fxjs::FX_GetYearFromTime (double dt) |
int | fxjs::FX_GetMonthFromTime (double dt) |
int | fxjs::FX_GetDayFromTime (double dt) |
int | fxjs::FX_GetHourFromTime (double dt) |
int | fxjs::FX_GetMinFromTime (double dt) |
int | fxjs::FX_GetSecFromTime (double dt) |
bool | fxjs::FX_IsValidMonth (int m) |
bool | fxjs::FX_IsValidDay (int d) |
bool | fxjs::FX_IsValid24Hour (int h) |
bool | fxjs::FX_IsValidMinute (int m) |
bool | fxjs::FX_IsValidSecond (int s) |
double | fxjs::FX_LocalTime (double d) |
double | fxjs::FX_MakeDay (int nYear, int nMonth, int nDay) |
double | fxjs::FX_MakeTime (int nHour, int nMin, int nSec, int nMs) |
double | fxjs::FX_MakeDate (double day, double time) |
int | fxjs::FX_ParseStringInteger (const WideString &str, size_t nStart, size_t *pSkip, size_t nMaxStep) |
ConversionStatus | fxjs::FX_ParseDateUsingFormat (const WideString &value, const WideString &format, double *result) |