Home
last modified time | relevance | path

Searched full:name (Results 1 – 25 of 276) sorted by relevance

12345678910>>...12

/civetweb-2.7.6/src/third_party/duktape-1.8.0/debugger/
Dduk_opcodes.yaml10 - name: LDREG
14 - name: STREG
18 - name: LDCONST
22 - name: LDINT
26 - name: LDINTX
30 - name: MPUTOBJ
35 - name: MPUTOBJI
40 - name: MPUTARR
45 - name: MPUTARRI
50 - name: NEW
[all …]
Dduk_debug_meta.json8 "name": "LDREG" string
15 "name": "STREG" string
22 "name": "LDCONST" string
29 "name": "LDINT" string
36 "name": "LDINTX" string
44 "name": "MPUTOBJ" string
52 "name": "MPUTOBJI" string
60 "name": "MPUTARR" string
68 "name": "MPUTARRI" string
75 "name": "NEW" string
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.5.2/debugger/
Dduk_opcodes.yaml10 - name: LDREG
14 - name: STREG
18 - name: LDCONST
22 - name: LDINT
26 - name: LDINTX
30 - name: MPUTOBJ
35 - name: MPUTOBJI
40 - name: MPUTARR
45 - name: MPUTARRI
50 - name: NEW
[all …]
Dduk_debug_meta.json8 "name": "LDREG" string
15 "name": "STREG" string
22 "name": "LDCONST" string
29 "name": "LDINT" string
36 "name": "LDINTX" string
44 "name": "MPUTOBJ" string
52 "name": "MPUTOBJI" string
60 "name": "MPUTARR" string
68 "name": "MPUTARRI" string
75 "name": "NEW" string
[all …]
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dldebug.c42 const char **name);
128 TString *s = check_exp(uv < p->sizeupvalues, p->upvalues[uv].name); in upvalname()
140 return "(*vararg)"; /* generic name for any vararg */ in findvararg()
147 const char *name = NULL; in findlocal() local
154 name = luaF_getlocalname(ci_func(ci)->p, n, currentpc(ci)); in findlocal()
159 if (name == NULL) { /* no 'standard' name? */ in findlocal()
162 name = "(*temporary)"; /* generic name for any valid slot */ in findlocal()
164 return NULL; /* no name */ in findlocal()
167 return name; in findlocal()
172 const char *name; in lua_getlocal() local
[all …]
Dloadlib.c29 ** luaopen_ function name.
172 DWORD n = GetModuleFileNameA(NULL, buff, nsize); /* get exec. name */ in setprogdir()
176 *lb = '\0'; /* cut name on the last '\\' to get the path */ in setprogdir()
294 const char *path = getenv(nver); /* use versioned name */ in setpath()
296 path = getenv(envname); /* try unversioned name */ in setpath()
308 lua_pop(L, 1); /* pop versioned variable name */ in setpath()
435 static const char *searchpath (lua_State *L, const char *name, in searchpath() argument
442 name = luaL_gsub(L, name, sep, dirsep); /* replace it by 'dirsep' */ in searchpath()
445 LUA_PATH_MARK, name); in searchpath()
448 return filename; /* return that file name */ in searchpath()
[all …]
Dlua.c141 " -l name require library 'name' into global 'name'\n" in print_usage()
152 ** Prints an error message, adding the program name in front of it
221 ** it has 'argv[script]', which is the script name. The arguments
223 ** other arguments (before the script name) go to negative indices.
224 ** If there is no script name, assume interpreter's name as base.
228 if (script == argc) script = 0; /* no script name? */ in createargtable()
245 static int dofile (lua_State *L, const char *name) { in dofile() argument
246 return dochunk(L, luaL_loadfile(L, name)); in dofile()
250 static int dostring (lua_State *L, const char *s, const char *name) { in dostring() argument
251 return dochunk(L, luaL_loadbuffer(L, s, strlen(s), name)); in dostring()
[all …]
Dlauxlib.c44 ** return 1 + string at top if find a good name.
53 lua_pop(L, 1); /* remove value (but keep name) */ in findfield()
57 lua_remove(L, -2); /* remove table (but keep name) */ in findfield()
71 ** Search for a name for a function in all loaded modules
78 const char *name = lua_tostring(L, -1); in pushglobalfuncname() local
79 if (strncmp(name, "_G.", 3) == 0) { /* name start with '_G.'? */ in pushglobalfuncname()
80 lua_pushstring(L, name + 3); /* push name without prefix */ in pushglobalfuncname()
81 lua_remove(L, -2); /* remove original name */ in pushglobalfuncname()
83 lua_copy(L, -1, top + 1); /* move name to proper place */ in pushglobalfuncname()
95 if (pushglobalfuncname(L, ar)) { /* try first a global name */ in pushfuncname()
[all …]
Dldblib.c180 settabss(L, "name", ar.name); in db_getinfo()
197 const char *name; in db_getlocal() local
201 lua_pushstring(L, lua_getlocal(L, NULL, nvar)); /* push local name */ in db_getlocal()
202 return 1; /* return only name (there is no value) */ in db_getlocal()
209 name = lua_getlocal(L1, &ar, nvar); in db_getlocal()
210 if (name) { in db_getlocal()
212 lua_pushstring(L, name); /* push name */ in db_getlocal()
217 lua_pushnil(L); /* no name (nor value) */ in db_getlocal()
226 const char *name; in db_setlocal() local
237 name = lua_setlocal(L1, &ar, nvar); in db_setlocal()
[all …]
Dlparser.c175 static void new_localvar (LexState *ls, TString *name) { in new_localvar() argument
178 int reg = registerlocalvar(ls, name); in new_localvar()
187 static void new_localvarliteral_ (LexState *ls, const char *name, size_t sz) { in new_localvarliteral_() argument
188 new_localvar(ls, luaX_newstring(ls, name, sz)); in new_localvarliteral_()
218 static int searchupvalue (FuncState *fs, TString *name) { in searchupvalue() argument
222 if (eqstr(up[i].name, name)) return i; in searchupvalue()
228 static int newupvalue (FuncState *fs, TString *name, expdesc *v) { in newupvalue() argument
235 f->upvalues[oldsize++].name = NULL; in newupvalue()
238 f->upvalues[fs->nups].name = name; in newupvalue()
239 luaC_objbarrier(fs->ls->L, f, name); in newupvalue()
[all …]
Dlundump.c35 const char *name; member
40 luaO_pushfstring(S->L, "%s: %s precompiled chunk", S->name, why); in error()
172 f->upvalues[i].name = NULL; in LoadUpvalues()
198 f->upvalues[i].name = LoadString(S); in LoadDebug()
258 LClosure *luaU_undump(lua_State *L, ZIO *Z, const char *name) { in luaU_undump() argument
261 if (*name == '@' || *name == '=') in luaU_undump()
262 S.name = name + 1; in luaU_undump()
263 else if (*name == LUA_SIGNATURE[0]) in luaU_undump()
264 S.name = "binary string"; in luaU_undump()
266 S.name = name; in luaU_undump()
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/
Dldebug.c36 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);
111 TString *s = check_exp(uv < p->sizeupvalues, p->upvalues[uv].name); in upvalname()
123 return "(*vararg)"; /* generic name for any vararg */ in findvararg()
130 const char *name = NULL; in findlocal() local
137 name = luaF_getlocalname(ci_func(ci)->p, n, currentpc(ci)); in findlocal()
142 if (name == NULL) { /* no 'standard' name? */ in findlocal()
145 name = "(*temporary)"; /* generic name for any valid slot */ in findlocal()
147 return NULL; /* no name */ in findlocal()
150 return name; in findlocal()
155 const char *name; in lua_getlocal() local
[all …]
Dloadlib.c57 ** luaopen_ function name.
349 static const char *searchpath (lua_State *L, const char *name, in searchpath() argument
356 name = luaL_gsub(L, name, sep, dirsep); /* replace it by 'dirsep' */ in searchpath()
359 LUA_PATH_MARK, name); in searchpath()
362 return filename; /* return that file name */ in searchpath()
364 lua_remove(L, -2); /* remove file name */ in searchpath()
386 static const char *findfile (lua_State *L, const char *name, in findfile() argument
394 return searchpath(L, name, path, ".", dirsep); in findfile()
401 return 2; /* return open function and file name */ in checkload()
412 const char *name = luaL_checkstring(L, 1); in searcher_Lua() local
[all …]
Dlparser.c178 static void new_localvar (LexState *ls, TString *name) { in new_localvar() argument
181 int reg = registerlocalvar(ls, name); in new_localvar()
190 static void new_localvarliteral_ (LexState *ls, const char *name, size_t sz) { in new_localvarliteral_() argument
191 new_localvar(ls, luaX_newstring(ls, name, sz)); in new_localvarliteral_()
221 static int searchupvalue (FuncState *fs, TString *name) { in searchupvalue() argument
225 if (luaS_eqstr(up[i].name, name)) return i; in searchupvalue()
231 static int newupvalue (FuncState *fs, TString *name, expdesc *v) { in newupvalue() argument
237 while (oldsize < f->sizeupvalues) f->upvalues[oldsize++].name = NULL; in newupvalue()
240 f->upvalues[fs->nups].name = name; in newupvalue()
241 luaC_objbarrier(fs->ls->L, f, name); in newupvalue()
[all …]
/civetweb-2.7.6/test/
Dform.html31 A text: <input type="text" name="textin"><br />
32 A password: <input type="password" name="passwordin"><br />
37 <input type="radio" name="radio1" value="val1" checked>val1<br />
38 <input type="radio" name="radio1" value="val2">val2<br />
39 <input type="radio" name="radio1" value="val3">val3<br />
44 <input type="radio" name="radio2" value="val1" checked>val1<br />
45 <input type="radio" name="radio2" value="val2">val2<br />
46 <input type="radio" name="radio2" value="val3">val3<br />
51 <input type="checkbox" name="check1" value="val1" checked>val1<br />
52 <input type="checkbox" name="check2" value="val2">val2<br />
[all …]
DMethodTest.xhtml142 <input id="proto_http" type="radio" name="protocol" value="http" /> http <br />
143 <input id="proto_https" type="radio" name="protocol" value="https" /> https
146 <input id="server" type="text" name="server" value="" />
149 <input id="resource" type="text" name="resource" value="" />
163 <input id="method_opt" type="radio" name="method" value="OPTIONS" onclick="noBody()" /> OPTIONS <br…
164 <input id="method_get" type="radio" name="method" value="GET" onclick="noBody()" /> GET <br />
165 <input id="method_hea" type="radio" name="method" value="HEAD" onclick="noBody()" /> HEAD <br />
166 <input id="method_tra" type="radio" name="method" value="TRACE" /> TRACE <br />
167 <input id="method_pro" type="radio" name="method" value="PROPFIND" /> PROPFIND <br />
170 <input id="method_put" type="radio" name="method" value="PUT" /> PUT <br />
[all …]
/civetweb-2.7.6/src/third_party/lua-5.1.5/doc/
Dmanual.html43 <h1>1 - <a name="1">Introduction</a></h1>
89 <h1>2 - <a name="2">The Language</a></h1>
113 <h2>2.1 - <a name="2.1">Lexical Conventions</a></h2>
125 Identifiers are used to name variables and table fields.
248 <h2>2.2 - <a name="2.2">Values and Types</a></h2>
324 To represent records, Lua uses the field name as an index.
326 providing <code>a.name</code> as syntactic sugar for <code>a["name"]</code>.
355 <h3>2.2.1 - <a name="2.2.1">Coercion</a></h3>
374 <h2>2.3 - <a name="2.3">Variables</a></h2>
384 A single name can denote a global variable or a local variable
[all …]
/civetweb-2.7.6/src/third_party/lua-5.2.4/doc/
Dmanual.html41 <h1>1 &ndash; <a name="1">Introduction</a></h1>
88 <h1>2 &ndash; <a name="2">Basic Concepts</a></h1>
95 <h2>2.1 &ndash; <a name="2.1">Values and Types</a></h2>
185 To represent records, Lua uses the field name as an index.
187 providing <code>a.name</code> as syntactic sugar for <code>a["name"]</code>.
234 <h2>2.2 &ndash; <a name="2.2">Environments and the Global Environment</a></h2>
238 any reference to a global name <code>var</code> is syntactically translated
242 so <code>_ENV</code> itself is never a global name in a chunk.
248 <code>_ENV</code> is a completely regular name.
250 you can define new variables and parameters with that name.
[all …]
/civetweb-2.7.6/src/third_party/lua-5.3.5/doc/
Dmanual.html43 <h1>1 &ndash; <a name="1">Introduction</a></h1>
107 <h1>2 &ndash; <a name="2">Basic Concepts</a></h1>
114 <h2>2.1 &ndash; <a name="2.1">Values and Types</a></h2>
221 To represent records, Lua uses the field name as an index.
223 providing <code>a.name</code> as syntactic sugar for <code>a["name"]</code>.
275 <h2>2.2 &ndash; <a name="2.2">Environments and the Global Environment</a></h2>
279 any reference to a free name
280 (that is, a name not bound to any declaration) <code>var</code>
284 so <code>_ENV</code> itself is never a free name in a chunk.
290 <code>_ENV</code> is a completely regular name.
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/
Dduk_js_var.c233 * Named function expression, name needs to be bound in duk_js_push_closure()
414 * "name" is a non-standard property found in at least V8, Rhino, smjs. in duk_js_push_closure()
418 * We could also leave name 'undefined' for anonymous functions but that would in duk_js_push_closure()
427 /* [ ... closure template name ] */ in duk_js_push_closure()
752 /* lookup name from an open declarative record's registers */
755 duk_hstring *name, in duk__getid_open_decl_env_regs() argument
767 DUK_ASSERT(name != NULL); in duk__getid_open_decl_env_regs()
796 tv = duk_hobject_find_existing_entry_tval_ptr(thr->heap, varmap, name); in duk__getid_open_decl_env_regs()
837 /* lookup name from current activation record's functions' registers */
840 duk_hstring *name, in duk__getid_activation_regs() argument
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/
Dduk_js_var.c233 * Named function expression, name needs to be bound in duk_js_push_closure()
414 * "name" is a non-standard property found in at least V8, Rhino, smjs. in duk_js_push_closure()
418 * We could also leave name 'undefined' for anonymous functions but that would in duk_js_push_closure()
427 /* [ ... closure template name ] */ in duk_js_push_closure()
748 /* lookup name from an open declarative record's registers */
751 duk_hstring *name, in duk__getid_open_decl_env_regs() argument
763 DUK_ASSERT(name != NULL); in duk__getid_open_decl_env_regs()
792 tv = duk_hobject_find_existing_entry_tval_ptr(thr->heap, varmap, name); in duk__getid_open_decl_env_regs()
833 /* lookup name from current activation record's functions' registers */
836 duk_hstring *name, in duk__getid_activation_regs() argument
[all …]
/civetweb-2.7.6/unittest/
Dprivate.c200 ck_assert_str_eq("A", ri.http_headers[0].name); in START_TEST()
202 ck_assert_str_eq("B", ri.http_headers[1].name); in START_TEST()
940 ck_assert_ptr_eq(NULL, config_options[NUM_OPTIONS].name); in START_TEST()
952 ck_assert_str_eq("cgi_pattern", config_options[CGI_EXTENSIONS].name); in START_TEST()
953 ck_assert_str_eq("cgi_environment", config_options[CGI_ENVIRONMENT].name); in START_TEST()
955 config_options[PUT_DELETE_PASSWORDS_FILE].name); in START_TEST()
956 ck_assert_str_eq("cgi_interpreter", config_options[CGI_INTERPRETER].name); in START_TEST()
957 ck_assert_str_eq("protect_uri", config_options[PROTECT_URI].name); in START_TEST()
959 config_options[AUTHENTICATION_DOMAIN].name); in START_TEST()
961 config_options[ENABLE_AUTH_DOMAIN_CHECK].name); in START_TEST()
[all …]
/civetweb-2.7.6/src/third_party/lua-5.1.5/src/
Dloadlib.c351 static const char *findfile (lua_State *L, const char *name, in findfile() argument
354 name = luaL_gsub(L, name, ".", LUA_DIRSEP); in findfile()
362 filename = luaL_gsub(L, lua_tostring(L, -1), LUA_PATH_MARK, name); in findfile()
365 return filename; /* return that file name */ in findfile()
367 lua_remove(L, -2); /* remove file name */ in findfile()
382 const char *name = luaL_checkstring(L, 1); in loader_Lua() local
383 filename = findfile(L, name, "path"); in loader_Lua()
404 const char *name = luaL_checkstring(L, 1); in loader_C() local
405 const char *filename = findfile(L, name, "cpath"); in loader_C()
407 funcname = mkfuncname(L, name); in loader_C()
[all …]
Dldebug.c33 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);
113 const char *name; in findlocal() local
115 if (fp && (name = luaF_getlocalname(fp, n, currentpc(L, ci))) != NULL) in findlocal()
116 return name; /* is a local variable in a Lua function */ in findlocal()
129 const char *name = findlocal(L, ci, n); in lua_getlocal() local
131 if (name) in lua_getlocal()
134 return name; in lua_getlocal()
140 const char *name = findlocal(L, ci, n); in lua_setlocal() local
142 if (name) in lua_setlocal()
146 return name; in lua_setlocal()
[all …]
/civetweb-2.7.6/src/
Dmain.c300 for (i = 0; options[i].name != NULL; i++) { in show_usage_and_exit()
303 options[i].name, in show_usage_and_exit()
310 for (i = 0; options[i].name != NULL; i++) { in show_usage_and_exit()
313 options[i].name, in show_usage_and_exit()
379 for (i = 0; options[i].name != NULL; i++) { in create_config_file()
380 value = mg_get_option(ctx, options[i].name); in create_config_file()
383 options[i].name, in create_config_file()
565 set_option(char **options, const char *name, const char *value) in set_option() argument
571 for (i = 0; main_config_options[i].name != NULL; i++) { in set_option()
574 if (!strcmp(name, main_config_options[OPTION_TITLE].name)) { in set_option()
[all …]

12345678910>>...12