Searched refs:JS_PROP_WRITABLE (Results 1 – 2 of 2) sorted by relevance
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | quickjs.h | 264 #define JS_PROP_WRITABLE (1 << 1) 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 #define JS_CFUNC_MAGIC_DEF(name, length, func1, magic) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURA… 993 #define JS_CFUNC_SPECIAL_DEF(name, length, cproto, func1) { name, JS_PROP_WRITABLE | JS_PROP_CONFIG… 994 #define JS_ITERATOR_NEXT_DEF(name, length, func1, magic) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGU… 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 | 8300 if (!(desc.flags & JS_PROP_WRITABLE)) { in JS_SetPropertyGeneric() 8326 if (!(desc.flags & JS_PROP_WRITABLE) || in JS_SetPropertyGeneric() 9441 flags = JS_PROP_ENUMERABLE | JS_PROP_WRITABLE | in JS_DefineGlobalVar() 15570 JS_PROP_WRITABLE); in js_closure() 15578 JS_PROP_WRITABLE); in js_closure() 35689 flags |= JS_PROP_WRITABLE; in js_obj_to_desc() 36368 if (desc.flags & JS_PROP_WRITABLE) in js_object_seal() 41502 JS_PROP_WRITABLE); in js_regexp_constructor_internal() 44266 JS_PROP_WRITABLE && in js_proxy_define_own_property() 44267 !(flags & JS_PROP_WRITABLE)) { in js_proxy_define_own_property() [all …]
|
Completed in 98 milliseconds