Searched refs:DUK_COMPILE_NOSOURCE (Results 1 – 2 of 2) sorted by relevance
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/ |
A D | duktape.h | 371 #define DUK_COMPILE_NOSOURCE (1U << 9) /* (internal) no source string on stack */ macro 1261 …((void) duk_eval_raw((ctx), (src), 0, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_NOSOURCE | DUK_C… 1273 …((void) duk_compile_raw((ctx), (src), 0, 0 /*args*/ | (flags) | DUK_COMPILE_NOSOURCE | DUK_COMPILE… 1276 …((void) duk_compile_raw((ctx), (src), 0, 1 /*args*/ | (flags) | DUK_COMPILE_NOSOURCE | DUK_COMPILE… 1282 …(duk_compile_raw((ctx), (src), 0, 1 /*args*/ | (flags) | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE |… 1286 …((void) duk_eval_raw((ctx), buf, len, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_NOSOURCE | DUK_C… 1292 …(duk_eval_raw((ctx), buf, len, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_NOSOURCE | DUK_COMPILE_… 1298 …((void) duk_compile_raw((ctx), buf, len, 0 /*args*/ | (flags) | DUK_COMPILE_NOSOURCE | DUK_COMPILE… 1301 ((void) duk_compile_raw((ctx), buf, len, 1 /*args*/ | (flags) | DUK_COMPILE_NOSOURCE)) 1304 …(duk_compile_raw((ctx), buf, len, 0 /*args*/ | (flags) | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE |… [all …]
|
A D | duktape.c | 21837 if ((flags & DUK_COMPILE_NOSOURCE) || /* args incorrect */ in duk__do_compile() 21858 if (flags & DUK_COMPILE_NOSOURCE) { in duk__do_compile() 21908 DUK_ASSERT(nargs == ((flags & DUK_COMPILE_NOSOURCE) ? 0 : 1) + in duk_compile_raw()
|
Completed in 250 milliseconds