Home
last modified time | relevance | path

Searched refs:docstring (Results 1 – 13 of 13) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
DREADME13 docstring.py -- sample source file containing only a module docstring.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
DbgenGenerator.py67 docstring = self.docstring()
72 Output(" PyDoc_STR(%s)},", stringify(docstring))
76 def docstring(self): member in BaseFunctionGenerator
145 def docstring(self): member in FunctionGenerator
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
Dtemplate.py58 docstring = """\ variable
Dfunction.py141 p(template.docstring)
Dbases.py120 p(template.docstring)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
DDocXMLRPCServer.py97 docstring = object[1] or ""
99 docstring = pydoc.getdoc(object)
105 docstring, self.preformat, funcs, classes, methods)
Ddoctest.py478 def __init__(self, examples, globs, name, filename, lineno, docstring): argument
486 self.docstring = docstring
964 docstring = obj
968 docstring = ''
970 docstring = obj.__doc__
971 if not isinstance(docstring, basestring):
972 docstring = str(docstring)
974 docstring = ''
980 if self._exclude_empty and not docstring:
990 return self._parser.get_doctest(docstring, globs, name,
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/
DREADME10 Put as much info into a docstring or comments to help determine the cause of the
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dmathmodule.c791 #define FUNC1(funcname, func, can_overflow, docstring) \ argument
795 PyDoc_STRVAR(math_##funcname##_doc, docstring);
797 #define FUNC1A(funcname, func, docstring) \ argument
801 PyDoc_STRVAR(math_##funcname##_doc, docstring);
803 #define FUNC2(funcname, func, docstring) \ argument
807 PyDoc_STRVAR(math_##funcname##_doc, docstring);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dmathmodule.c791 #define FUNC1(funcname, func, can_overflow, docstring) \ argument
795 PyDoc_STRVAR(math_##funcname##_doc, docstring);
797 #define FUNC1A(funcname, func, docstring) \ argument
801 PyDoc_STRVAR(math_##funcname##_doc, docstring);
803 #define FUNC2(funcname, func, docstring) \ argument
807 PyDoc_STRVAR(math_##funcname##_doc, docstring);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dpyassem.py261 self.docstring = None
288 self.docstring = doc
408 self.consts.insert(0, self.docstring)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dcompile.c1368 int i, n, docstring; in compiler_function() local
1381 docstring = compiler_isdocstring(st); in compiler_function()
1382 if (docstring && Py_OptimizeFlag < 2) in compiler_function()
1395 for (i = docstring; i < n; i++) { in compiler_function()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dcompile.c1391 int i, n, docstring; in compiler_function() local
1404 docstring = compiler_isdocstring(st); in compiler_function()
1405 if (docstring && Py_OptimizeFlag < 2) in compiler_function()
1418 for (i = docstring; i < n; i++) { in compiler_function()