HomeSort by relevance Sort by last modified time
    Searched defs:has_e (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lua.c 351 #define has_e 2 /* -e */ macro
352 #define has_E 3 /* -E */
369 args[has_E] = 1;
379 args[has_e] = 1; /* go through */
443 args[has_i] = args[has_v] = args[has_e] = args[has_E] = 0;
451 if (args[has_E]) { /* option '-E'? */
460 if (!args[has_E] && handle_luainit(L) != LUA_OK)
468 else if (script == 0 && !args[has_e] && !args[has_v]) { /* no arguments? */
  /external/lua/src/
lua.c 456 #define has_e 8 /* -e */ macro
457 #define has_E 16 /* -E */
483 args |= has_E;
493 args |= has_e; /* FALLTHROUGH */
567 if (args & has_E) { /* option '-E'? */
573 if (!(args & has_E)) { /* no option '-E'? */
584 else if (script == argc && !(args & (has_e | has_v))) { /* no arguments? */

Completed in 686 milliseconds