Home
last modified time | relevance | path

Searched refs:JS_PROP_WRITABLE (Results 1 – 2 of 2) sorted by relevance

/third_party/quickjs/
Dquickjs.h264 #define JS_PROP_WRITABLE (1 << 1) macro
266 #define JS_PROP_C_W_E (JS_PROP_CONFIGURABLE | JS_PROP_WRITABLE | JS_PROP_ENUMERABLE)
1017 #define JS_CFUNC_DEF(name, length, func1) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF_C…
1018 #define JS_CFUNC_MAGIC_DEF(name, length, func1, magic) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURA…
1019 #define JS_CFUNC_SPECIAL_DEF(name, length, cproto, func1) { name, JS_PROP_WRITABLE | JS_PROP_CONFIG…
1020 #define JS_ITERATOR_NEXT_DEF(name, length, func1, magic) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGU…
1029 #define JS_ALIAS_DEF(name, from) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF_ALIAS, 0, …
1030 #define JS_ALIAS_BASE_DEF(name, from, base) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF…
Dquickjs.c4783 JS_PROP_WRITABLE | JS_PROP_LENGTH); in JS_NewObjectFromShape()
6514 JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE); in build_backtrace()
6516 JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE); in build_backtrace()
6574 JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE); in build_backtrace()
6611 JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE); in JS_ThrowError2()
7738 desc->flags = JS_PROP_WRITABLE | JS_PROP_ENUMERABLE | in JS_GetOwnPropertyInternal()
8204 if (unlikely(!(p->shape->prop[0].flags & JS_PROP_WRITABLE))) in set_array_length()
8297 if (unlikely(!(get_shape_prop(p->shape)->flags & JS_PROP_WRITABLE))) { in add_fast_array_element()
8371 if (!(desc.flags & JS_PROP_WRITABLE)) { in JS_SetPropertyGeneric()
8397 if (!(desc.flags & JS_PROP_WRITABLE) || in JS_SetPropertyGeneric()
[all …]