HomeSort by relevance Sort by last modified time
    Searched refs:docstring (Results 1 - 25 of 32) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
template.py 40 %(Docstring)s},"""
58 docstring = """\
60 %(Docstring)s);
function.py 141 p(template.docstring)
166 v["Docstring"] = cstring(unindent(self.__doc__))
bases.py 120 p(template.docstring)
180 v["Docstring"] = cstring(unindent(self.__doc__))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
bgenGenerator.py 67 docstring = self.docstring()
72 Output(" PyDoc_STR(%s)},", stringify(docstring))
76 def docstring(self): member in class:BaseFunctionGenerator
145 def docstring(self): member in class:FunctionGenerator
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
DocXMLRPCServer.py 97 docstring = object[1] or ""
99 docstring = pydoc.getdoc(object)
105 docstring, self.preformat, funcs, classes, methods)
doctest.py 107 # - Example: a <source, want> pair, plus an intra-docstring line number.
108 # - DocTest: a collection of examples, parsed from a docstring, plus
109 # info about where the docstring came from (name, filename, lineno).
110 # - DocTestFinder: extracts DocTests from a given object's docstring and
398 ## a string (such as an object's docstring). The DocTest class also
465 the object whose docstring this DocTest was extracted from).
475 - docstring: The string that the examples were extracted from,
478 def __init__(self, examples, globs, name, filename, lineno, docstring):
486 self.docstring = docstring
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
DocXMLRPCServer.py 97 docstring = object[1] or ""
99 docstring = pydoc.getdoc(object)
105 docstring, self.preformat, funcs, classes, methods)
doctest.py 107 # - Example: a <source, want> pair, plus an intra-docstring line number.
108 # - DocTest: a collection of examples, parsed from a docstring, plus
109 # info about where the docstring came from (name, filename, lineno).
110 # - DocTestFinder: extracts DocTests from a given object's docstring and
398 ## a string (such as an object's docstring). The DocTest class also
484 the object whose docstring this DocTest was extracted from).
494 - docstring: The string that the examples were extracted from,
497 def __init__(self, examples, globs, name, filename, lineno, docstring):
505 self.docstring = docstring
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
DocXMLRPCServer.py 97 docstring = object[1] or ""
99 docstring = pydoc.getdoc(object)
105 docstring, self.preformat, funcs, classes, methods)
doctest.py 107 # - Example: a <source, want> pair, plus an intra-docstring line number.
108 # - DocTest: a collection of examples, parsed from a docstring, plus
109 # info about where the docstring came from (name, filename, lineno).
110 # - DocTestFinder: extracts DocTests from a given object's docstring and
398 ## a string (such as an object's docstring). The DocTest class also
484 the object whose docstring this DocTest was extracted from).
494 - docstring: The string that the examples were extracted from,
497 def __init__(self, examples, globs, name, filename, lineno, docstring):
505 self.docstring = docstring
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 97 docstring = object[1] or ""
99 docstring = pydoc.getdoc(object)
105 docstring, self.preformat, funcs, classes, methods)
doctest.py 107 # - Example: a <source, want> pair, plus an intra-docstring line number.
108 # - DocTest: a collection of examples, parsed from a docstring, plus
109 # info about where the docstring came from (name, filename, lineno).
110 # - DocTestFinder: extracts DocTests from a given object's docstring and
398 ## a string (such as an object's docstring). The DocTest class also
484 the object whose docstring this DocTest was extracted from).
494 - docstring: The string that the examples were extracted from,
497 def __init__(self, examples, globs, name, filename, lineno, docstring):
505 self.docstring = docstring
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 97 docstring = object[1] or ""
99 docstring = pydoc.getdoc(object)
105 docstring, self.preformat, funcs, classes, methods)
doctest.py 107 # - Example: a <source, want> pair, plus an intra-docstring line number.
108 # - DocTest: a collection of examples, parsed from a docstring, plus
109 # info about where the docstring came from (name, filename, lineno).
110 # - DocTestFinder: extracts DocTests from a given object's docstring and
398 ## a string (such as an object's docstring). The DocTest class also
484 the object whose docstring this DocTest was extracted from).
494 - docstring: The string that the examples were extracted from,
497 def __init__(self, examples, globs, name, filename, lineno, docstring):
505 self.docstring = docstring
    [all...]
  /external/autotest/utils/
run_pylint.py 155 """Modifies stock docstring checker to suit Autotest doxygen style."""
190 not require a "@param" docstring.
204 docstring = node.doc
206 key = 'missing-docstring'
210 if (docstring is not None and
219 self.linter._messages[key].msg = ('Docstring needs '
409 # C0111: Docstring needed. Also checks @param for each arg.
410 # C0112: Non-empty Docstring needed.
431 '--no-docstring-rgx=%s' % no_docstring_rgx,]
438 '--no-docstring-rgx=%s' % no_docstring_rgx,
    [all...]
  /external/chromium-trace/catapult/devil/devil/utils/
markdown.py 259 def md_docstring(docstring):
260 """Write a markdown-formatted docstring.
266 lines = textwrap.dedent(docstring).splitlines()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
mathmodule.c 791 #define FUNC1(funcname, func, can_overflow, docstring) \
795 PyDoc_STRVAR(math_##funcname##_doc, docstring);
797 #define FUNC1A(funcname, func, docstring) \
801 PyDoc_STRVAR(math_##funcname##_doc, docstring);
803 #define FUNC2(funcname, func, docstring) \
807 PyDoc_STRVAR(math_##funcname##_doc, docstring);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
mathmodule.c 791 #define FUNC1(funcname, func, can_overflow, docstring) \
795 PyDoc_STRVAR(math_##funcname##_doc, docstring);
797 #define FUNC1A(funcname, func, docstring) \
801 PyDoc_STRVAR(math_##funcname##_doc, docstring);
803 #define FUNC2(funcname, func, docstring) \
807 PyDoc_STRVAR(math_##funcname##_doc, docstring);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pyassem.py 261 self.docstring = None
288 self.docstring = doc
408 self.consts.insert(0, self.docstring)
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
pyassem.py 261 self.docstring = None
288 self.docstring = doc
408 self.consts.insert(0, self.docstring)
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
pyassem.py 261 self.docstring = None
288 self.docstring = doc
408 self.consts.insert(0, self.docstring)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 261 self.docstring = None
288 self.docstring = doc
408 self.consts.insert(0, self.docstring)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
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.10/Python/
compile.c 1391 int i, n, docstring; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
compile.c 1368 int i, n, docstring; local
    [all...]

Completed in 351 milliseconds

1 2