Lines Matching defs:global
115 /**Set object constructor function to global as attribute.*/
120 napi_value global = nullptr;
121 NAPI_CALL_BASE(env, napi_get_global(env, &global), NAPI_ERR);
122 NAPI_CALL_BASE(env, napi_set_named_property(env, global, name.c_str(), function), NAPI_ERR);
126 /**Get object constructor function from global as attribute.*/
131 napi_value global = nullptr;
132 NAPI_CALL_BASE(env, napi_get_global(env, &global), NAPI_ERR);
133 NAPI_CALL_BASE(env, napi_get_named_property(env, global, name.c_str(), pFunction), NAPI_ERR);
143 napi_value global = nullptr;
146 NAPI_CALL_BASE(env, napi_get_global(env, &global), NAPI_ERR);
147 NAPI_CALL_BASE(env, napi_get_named_property(env, global, "JSON", &jsonProp), NAPI_ERR);
432 /**Exports uitest js wrapper-classes and its global constructor.*/