Lines Matching refs:date
5 …Date** objects in C/C++. These APIs are useful for working with time- and date-related logic in th…
11 …date and time in ArkTS. With the **Date** object, you can create an object that represents a speci…
13 … be closely integrated with the ArkTS environment to perform more complex date- and time-related o…
17 The following table lists the APIs for manipulating ArkTS date in C/C++.
26 …api-process.md). The following demonstrates only the C++ and ArkTS code related to date management.
41 …// Call napi_create_date to convert the double value to date and time, create an ArkTS object, and…
102 export const getDateValue: (date: Date) => number | void;
111 const date = new Date();
112 hilog.info(0x0000, 'testTag', 'Node-API: output the Unix Time Stamp: %{public}d', date.getTime());
113 …o(0x0000, 'testTag', 'Test Node-API napi_get_date_value: %{public}d', testNapi.getDateValue(date));
154 export const isDate: <T>(date: T) => boolean | void;
164 let date = "123";
166 hilog.info(0x0000, 'testTag', 'Test Node-API napi_is_date: %{public}s', testNapi.isDate(date));