|
| WINE_DEFAULT_DEBUG_CHANNEL (jscript) |
|
static HRESULT | Object_toString (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
static HRESULT | Object_toLocaleString (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
static HRESULT | Object_valueOf (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
static HRESULT | Object_hasOwnProperty (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
static HRESULT | Object_propertyIsEnumerable (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
static HRESULT | Object_isPrototypeOf (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
static HRESULT | Object_get_value (script_ctx_t *ctx, jsdisp_t *jsthis, jsval_t *r) |
|
static void | Object_destructor (jsdisp_t *dispex) |
|
static void | release_property_descriptor (property_desc_t *desc) |
|
static HRESULT | to_property_descriptor (script_ctx_t *ctx, jsdisp_t *attr_obj, property_desc_t *desc) |
|
static HRESULT | jsdisp_define_properties (script_ctx_t *ctx, jsdisp_t *obj, jsval_t list_val) |
|
static HRESULT | Object_defineProperty (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
static HRESULT | Object_defineProperties (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
static HRESULT | Object_getOwnPropertyDescriptor (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
static HRESULT | Object_create (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
static HRESULT | Object_getPrototypeOf (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
static HRESULT | ObjectConstr_value (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) |
|
HRESULT | create_object_constr (script_ctx_t *ctx, jsdisp_t *object_prototype, jsdisp_t **ret) |
|
HRESULT | create_object_prototype (script_ctx_t *ctx, jsdisp_t **ret) |
|
HRESULT | create_object (script_ctx_t *ctx, jsdisp_t *constr, jsdisp_t **ret) |
|
|
static const WCHAR | toStringW [] = {'t','o','S','t','r','i','n','g',0} |
|
static const WCHAR | toLocaleStringW [] = {'t','o','L','o','c','a','l','e','S','t','r','i','n','g',0} |
|
static const WCHAR | valueOfW [] = {'v','a','l','u','e','O','f',0} |
|
static const WCHAR | hasOwnPropertyW [] = {'h','a','s','O','w','n','P','r','o','p','e','r','t','y',0} |
|
static const WCHAR | propertyIsEnumerableW [] |
|
static const WCHAR | isPrototypeOfW [] = {'i','s','P','r','o','t','o','t','y','p','e','O','f',0} |
|
static const WCHAR | createW [] = {'c','r','e','a','t','e',0} |
|
static const WCHAR | getOwnPropertyDescriptorW [] |
|
static const WCHAR | getPrototypeOfW [] |
|
static const WCHAR | definePropertyW [] = {'d','e','f','i','n','e','P','r','o','p','e','r','t','y',0} |
|
static const WCHAR | definePropertiesW [] = {'d','e','f','i','n','e','P','r','o','p','e','r','t','i','e','s',0} |
|
static const WCHAR | default_valueW [] = {'[','o','b','j','e','c','t',' ','O','b','j','e','c','t',']',0} |
|
static const WCHAR | configurableW [] = {'c','o','n','f','i','g','u','r','a','b','l','e',0} |
|
static const WCHAR | enumerableW [] = {'e','n','u','m','e','r','a','b','l','e',0} |
|
static const WCHAR | valueW [] = {'v','a','l','u','e',0} |
|
static const WCHAR | writableW [] = {'w','r','i','t','a','b','l','e',0} |
|
static const WCHAR | getW [] = {'g','e','t',0} |
|
static const WCHAR | setW [] = {'s','e','t',0} |
|
static const builtin_prop_t | Object_props [] |
|
static const builtin_info_t | Object_info |
|
static const builtin_info_t | ObjectInst_info |
|
static const builtin_prop_t | ObjectConstr_props [] |
|
static const builtin_info_t | ObjectConstr_info |
|