/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/ |
D | README | 13 docstring.py -- sample source file containing only a module docstring.
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/ |
D | bgenGenerator.py | 67 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/ |
D | template.py | 58 docstring = """\ variable
|
D | function.py | 141 p(template.docstring)
|
D | bases.py | 120 p(template.docstring)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | DocXMLRPCServer.py | 97 docstring = object[1] or "" 99 docstring = pydoc.getdoc(object) 105 docstring, self.preformat, funcs, classes, methods)
|
D | doctest.py | 478 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/ |
D | README | 10 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/ |
D | mathmodule.c | 791 #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/ |
D | mathmodule.c | 791 #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/ |
D | pyassem.py | 261 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/ |
D | compile.c | 1368 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/ |
D | compile.c | 1391 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()
|