Searched refs:JS_PROP_CONFIGURABLE (Results 1 – 4 of 4) sorted by relevance
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | quickjs.h | 263 #define JS_PROP_CONFIGURABLE (1 << 0) macro 266 #define JS_PROP_C_W_E (JS_PROP_CONFIGURABLE | JS_PROP_WRITABLE | JS_PROP_ENUMERABLE) 991 #define JS_CFUNC_DEF(name, length, func1) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF_C… 992 …_MAGIC_DEF(name, length, func1, magic) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF_CFU… 993 …ECIAL_DEF(name, length, cproto, func1) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF_CFU… 994 …R_NEXT_DEF(name, length, func1, magic) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF_CFU… 995 #define JS_CGETSET_DEF(name, fgetter, fsetter) { name, JS_PROP_CONFIGURABLE, JS_DEF_CGETSET, 0, .u … 996 #define JS_CGETSET_MAGIC_DEF(name, fgetter, fsetter, magic) { name, JS_PROP_CONFIGURABLE, JS_DEF_CG… 1003 #define JS_ALIAS_DEF(name, from) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF_ALIAS, 0, … 1004 #define JS_ALIAS_BASE_DEF(name, from, base) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF…
|
A D | quickjs.c | 4922 JS_PROP_CONFIGURABLE); in js_function_set_properties() 8885 if (!(prop_flags & JS_PROP_CONFIGURABLE)) { in check_define_prop_flags() 9138 mask |= JS_PROP_CONFIGURABLE; in JS_DefineProperty() 9437 JS_PROP_CONFIGURABLE; in JS_DefineGlobalVar() 15642 JS_PROP_CONFIGURABLE); in js_op_define_class() 35384 prop_flags = JS_PROP_CONFIGURABLE; in JS_InstantiateFunctionListItem() 35681 flags |= JS_PROP_CONFIGURABLE; in js_obj_to_desc() 46855 0, JS_PROP_CONFIGURABLE); in JS_AddIntrinsicPromise() 46893 JS_PROP_CONFIGURABLE, JS_PROP_CONFIGURABLE); in JS_AddIntrinsicPromise() 46895 0, JS_PROP_CONFIGURABLE); in JS_AddIntrinsicPromise() [all …]
|
A D | quickjs-libc.c | 1388 #define DEF(x) JS_PROP_INT32_DEF(#x, x, JS_PROP_CONFIGURABLE ) 1422 JS_PROP_INT32_DEF("SEEK_SET", SEEK_SET, JS_PROP_CONFIGURABLE ), 1423 JS_PROP_INT32_DEF("SEEK_CUR", SEEK_CUR, JS_PROP_CONFIGURABLE ), 1424 JS_PROP_INT32_DEF("SEEK_END", SEEK_END, JS_PROP_CONFIGURABLE ), 1425 JS_OBJECT_DEF("Error", js_std_error_props, countof(js_std_error_props), JS_PROP_CONFIGURABLE), 3465 #define OS_FLAG(x) JS_PROP_INT32_DEF(#x, x, JS_PROP_CONFIGURABLE )
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/libc/ |
A D | quickjs_libc.c | 1560 #define DEF(x) JS_PROP_INT32_DEF(#x, x, JS_PROP_CONFIGURABLE ) 1599 JS_PROP_INT32_DEF("SEEK_SET", SEEK_SET, JS_PROP_CONFIGURABLE), 1600 JS_PROP_INT32_DEF("SEEK_CUR", SEEK_CUR, JS_PROP_CONFIGURABLE), 1601 JS_PROP_INT32_DEF("SEEK_END", SEEK_END, JS_PROP_CONFIGURABLE), 1602 JS_OBJECT_DEF("Error", js_std_error_props, countof(js_std_error_props), JS_PROP_CONFIGURABLE), 3806 #define OS_FLAG(x) JS_PROP_INT32_DEF(#x, x, JS_PROP_CONFIGURABLE )
|
Completed in 124 milliseconds