Home
last modified time | relevance | path

Searched refs:JS_PROP_CONFIGURABLE (Results 1 – 3 of 3) sorted by relevance

/third_party/quickjs/
Dquickjs.h263 #define JS_PROP_CONFIGURABLE (1 << 0) 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 …_MAGIC_DEF(name, length, func1, magic) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF_CFU…
1019 …ECIAL_DEF(name, length, cproto, func1) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF_CFU…
1020 …R_NEXT_DEF(name, length, func1, magic) { name, JS_PROP_WRITABLE | JS_PROP_CONFIGURABLE, JS_DEF_CFU…
1021 #define JS_CGETSET_DEF(name, fgetter, fsetter) { name, JS_PROP_CONFIGURABLE, JS_DEF_CGETSET, 0, .u …
1022 #define JS_CGETSET_MAGIC_DEF(name, fgetter, fsetter, magic) { name, JS_PROP_CONFIGURABLE, JS_DEF_CG…
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.c4949 JS_PROP_CONFIGURABLE); in js_function_set_properties()
4951 JS_AtomToString(ctx, name), JS_PROP_CONFIGURABLE); in js_function_set_properties()
5028 JS_PROP_CONFIGURABLE) < 0) in js_method_set_properties()
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()
7739 JS_PROP_CONFIGURABLE; in JS_GetOwnPropertyInternal()
8100 if (!(pr->flags & JS_PROP_CONFIGURABLE)) in delete_property()
8252 !(pr->flags & JS_PROP_CONFIGURABLE)) { in set_array_length()
[all …]
Dquickjs-libc.c1468 #define DEF(x) JS_PROP_INT32_DEF(#x, x, JS_PROP_CONFIGURABLE )
1505 JS_PROP_INT32_DEF("SEEK_SET", SEEK_SET, JS_PROP_CONFIGURABLE ),
1506 JS_PROP_INT32_DEF("SEEK_CUR", SEEK_CUR, JS_PROP_CONFIGURABLE ),
1507 JS_PROP_INT32_DEF("SEEK_END", SEEK_END, JS_PROP_CONFIGURABLE ),
1508 JS_OBJECT_DEF("Error", js_std_error_props, countof(js_std_error_props), JS_PROP_CONFIGURABLE),
3533 #define OS_FLAG(x) JS_PROP_INT32_DEF(#x, x, JS_PROP_CONFIGURABLE )