Searched refs:isNecessaryProp (Results 1 - 2 of 2) sorted by relevance
/base/customization/enterprise_device_management/interfaces/kits/common/include/ |
H A D | napi_edm_common.h | 74 bool JsObjectToInt(napi_env env, napi_value object, const char *filedStr, bool isNecessaryProp, int32_t &result); 75 bool JsObjectToUint(napi_env env, napi_value object, const char *filedStr, bool isNecessaryProp, uint32_t &result); 76 bool JsObjectToLong(napi_env env, napi_value object, const char *filedStr, bool isNecessaryProp, int64_t &result); 77 bool JsObjectToBool(napi_env env, napi_value object, const char *filedStr, bool isNecessaryProp, bool &result); 78 bool JsObjectToString(napi_env env, napi_value object, const char *filedStr, bool isNecessaryProp, 85 bool JsObjectToStringVector(napi_env env, napi_value object, const char *fieldStr, bool isNecessaryProp,
|
/base/customization/enterprise_device_management/interfaces/kits/common/src/ |
H A D | napi_edm_common.cpp | 280 bool JsObjectToInt(napi_env env, napi_value object, const char *filedStr, bool isNecessaryProp, int32_t &result) in JsObjectToInt() argument 287 if (isNecessaryProp && !hasProperty) { in JsObjectToInt() 297 bool JsObjectToUint(napi_env env, napi_value object, const char *filedStr, bool isNecessaryProp, uint32_t &result) in JsObjectToUint() argument 304 if (isNecessaryProp && !hasProperty) { in JsObjectToUint() 314 bool JsObjectToLong(napi_env env, napi_value object, const char *filedStr, bool isNecessaryProp, int64_t &result) in JsObjectToLong() argument 321 if (isNecessaryProp && !hasProperty) { in JsObjectToLong() 331 bool JsObjectToBool(napi_env env, napi_value object, const char *filedStr, bool isNecessaryProp, bool &result) in JsObjectToBool() argument 338 if (isNecessaryProp && !hasProperty) { in JsObjectToBool() 348 bool JsObjectToString(napi_env env, napi_value object, const char *filedStr, bool isNecessaryProp, in JsObjectToString() argument 356 if (isNecessaryProp in JsObjectToString() 375 bool isNecessaryProp = false; JsObjectToCharArray() local 433 JsObjectToStringVector(napi_env env, napi_value object, const char *filedStr, bool isNecessaryProp, std::vector<std::string> &vec) JsObjectToStringVector() argument [all...] |
Completed in 2 milliseconds