Home
last modified time | relevance | path

Searched refs:keyword (Results 1 – 25 of 42) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Difdef.py69 keyword = words[0]
70 if keyword not in keywords:
73 if keyword in ('ifdef', 'ifndef') and len(words) == 2:
74 if keyword == 'ifdef':
88 elif keyword == 'if':
91 elif keyword == 'else' and stack:
100 elif keyword == 'endif' and stack:
107 sys.stderr.write('Unknown keyword %s\n' % keyword)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Drlcompleter.py107 import keyword
110 for word in keyword.kwlist:
DBaseHTTPServer.py401 def send_header(self, keyword, value): argument
404 self.wfile.write("%s: %s\r\n" % (keyword, value))
406 if keyword.lower() == 'connection':
Dtarfile.py1161 for keyword, value in pax_headers.iteritems():
1162 keyword = keyword.encode("utf8")
1164 l = len(keyword) + len(value) + 3 # ' ' + '=' + '\n'
1171 records.append("%d %s=%s\n" % (p, keyword, value))
1387 length, keyword = match.groups()
1391 keyword = keyword.decode("utf8")
1394 pax_headers[keyword] = value
1423 for keyword, value in pax_headers.iteritems():
1424 if keyword not in PAX_FIELDS:
1427 if keyword == "path":
[all …]
Dsmtpd.py214 def __getaddr(self, keyword, arg): argument
216 keylen = len(keyword)
217 if arg[:keylen].upper() == keyword:
Dcgitb.py25 import keyword
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
Dcollections.py10 from keyword import iskeyword as _iskeyword
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_py3kwarn.py68 for keyword, expected in tests:
69 safe_exec("{0} = False".format(keyword))
73 safe_exec("obj.{0} = True".format(keyword))
78 safe_exec("def {0}(): pass".format(keyword))
81 safe_exec("class {0}: pass".format(keyword))
84 safe_exec("def f({0}=43): pass".format(keyword))
Dtest_pydoc.py9 import keyword
358 sorted(keyword.kwlist))
Dtest_sundry.py54 import keyword
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
DPython.asdl24 -- use 'orelse' because else is a keyword in target languages
69 | Call(expr func, expr* args, keyword* keywords,
110 -- keyword arguments supplied to call
111 keyword = (identifier arg, expr value)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
DBaseHTTPServer.py398 def send_header(self, keyword, value): argument
401 self.wfile.write("%s: %s\r\n" % (keyword, value))
403 if keyword.lower() == 'connection':
Dcollections.py10 from keyword import iskeyword as _iskeyword
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dgetargs.c1544 const char *fname, *msg, *custom_msg, *keyword; in vgetargskeywords() local
1586 keyword = kwlist[i]; in vgetargskeywords()
1599 current_arg = PyDict_GetItemString(keywords, keyword); in vgetargskeywords()
1608 keyword, i+1); in vgetargskeywords()
1630 keyword, i+1); in vgetargskeywords()
Dceval.c3101 PyObject *keyword = kws[2*i]; in PyEval_EvalCodeEx() local
3104 if (keyword == NULL || !(PyString_Check(keyword) in PyEval_EvalCodeEx()
3106 || PyUnicode_Check(keyword) in PyEval_EvalCodeEx()
3119 if (nm == keyword) in PyEval_EvalCodeEx()
3126 keyword, nm, Py_EQ); in PyEval_EvalCodeEx()
3133 PyObject *kwd_str = kwd_as_string(keyword); in PyEval_EvalCodeEx()
3144 PyDict_SetItem(kwdict, keyword, value); in PyEval_EvalCodeEx()
3148 PyObject *kwd_str = kwd_as_string(keyword); in PyEval_EvalCodeEx()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dgetargs.c1544 const char *fname, *msg, *custom_msg, *keyword; in vgetargskeywords() local
1586 keyword = kwlist[i]; in vgetargskeywords()
1599 current_arg = PyDict_GetItemString(keywords, keyword); in vgetargskeywords()
1608 keyword, i+1); in vgetargskeywords()
1630 keyword, i+1); in vgetargskeywords()
Dceval.c3086 PyObject *keyword = kws[2*i]; in PyEval_EvalCodeEx() local
3089 if (keyword == NULL || !(PyString_Check(keyword) in PyEval_EvalCodeEx()
3091 || PyUnicode_Check(keyword) in PyEval_EvalCodeEx()
3104 if (nm == keyword) in PyEval_EvalCodeEx()
3111 keyword, nm, Py_EQ); in PyEval_EvalCodeEx()
3118 PyObject *kwd_str = kwd_as_string(keyword); in PyEval_EvalCodeEx()
3129 PyDict_SetItem(kwdict, keyword, value); in PyEval_EvalCodeEx()
3133 PyObject *kwd_str = kwd_as_string(keyword); in PyEval_EvalCodeEx()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
Dfixer_util.py17 def KeywordArg(keyword, value): argument
19 [keyword, Leaf(token.EQUAL, u"="), value])
DGrammar.txt147 argument: test [comp_for] | test '=' test # Really [keyword '='] test
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/
Dsoftfloat-source.txt184 If an inlining attribute (such as an `inline' keyword) is provided by the
185 compiler, the macro `INLINE' should be defined to the appropriate keyword.
186 If not, `INLINE' can be set to the keyword `static'. The `INLINE' macro
189 good speed. Even if inlining cannot be forced with a language keyword,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Ddictnotes.txt8 Passing keyword arguments
82 That case is common when keyword arguments are passed.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Ddictnotes.txt8 Passing keyword arguments
82 That case is common when keyword arguments are passed.
/device/linaro/bootloader/edk2/CryptoPkg/Library/OpensslLib/
DEDKII_openssl-1.0.2j.patch2066 if ($keyword eq "FP_API" && $no_fp_api) { return 0; }
2067 if ($keyword eq "STATIC_ENGINE" && $no_static_engine) { return 0; }
2068 if ($keyword eq "GMP" && $no_gmp) { return 0; }
2069 + if ($keyword eq "SCT" && $no_sct) { return 0; }
2070 if ($keyword eq "RFC3779" && $no_rfc3779) { return 0; }
2071 if ($keyword eq "TLSEXT" && $no_tlsext) { return 0; }
2072 if ($keyword eq "PSK" && $no_psk) { return 0; }
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/
DPythonReadMe.txt220 ast.py keyword.py sre_constants.py
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/
DPy2710ReadMe.txt242 ast.py keyword.py sre_constants.py

12