Home
last modified time | relevance | path

Searched refs:funcGetDateInfo (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/base/global/i18n/interfaces/js/kits/src/
H A Dholiday_manager_addon.cpp215 napi_value funcGetDateInfo = nullptr; in GetDateValue() local
216 napi_status status = napi_get_named_property(env, value, method.c_str(), &funcGetDateInfo); in GetDateValue()
222 status = napi_call_function(env, value, funcGetDateInfo, 0, nullptr, &ret_value); in GetDateValue()
H A Di18n_calendar_addon.cpp630 napi_value funcGetDateInfo = nullptr; in IsWeekend() local
631 status = napi_get_named_property(env, argv[0], "valueOf", &funcGetDateInfo); in IsWeekend()
637 status = napi_call_function(env, argv[0], funcGetDateInfo, 0, nullptr, &value); in IsWeekend()
761 napi_value funcGetDateInfo = nullptr; in GetDate() local
762 napi_status status = napi_get_named_property(env, value, "valueOf", &funcGetDateInfo); in GetDate()
768 status = napi_call_function(env, value, funcGetDateInfo, 0, nullptr, &ret_value); in GetDate()
H A Dintl_addon.cpp647 napi_value funcGetDateInfo = nullptr; in GetMilliseconds() local
648 napi_status status = napi_get_named_property(env, argv[index], "getTime", &funcGetDateInfo); in GetMilliseconds()
654 status = napi_call_function(env, argv[index], funcGetDateInfo, 0, nullptr, &ret_value); in GetMilliseconds()