HomeSort by relevance Sort by last modified time
    Searched refs:docstring (Results 26 - 50 of 59) sorted by null

12 3

  /prebuilts/gdb/darwin-x86/lib/python2.7/
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/
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/
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/
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."""
193 not require a "@param" docstring.
207 docstring = node.doc
209 key = 'missing-docstring'
213 if (docstring is not None and
222 self.linter._messages[key].msg = ('Docstring needs '
427 # C0111: Docstring needed. Also checks @param for each arg.
428 # C0112: Non-empty Docstring needed.
449 '--no-docstring-rgx=%s' % no_docstring_rgx,]
456 '--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()
  /external/python/cpython2/Mac/Modules/ctl/
ctlsupport.py 545 f.docstring = lambda: "(Point startPoint [,trackercallback]) -> (ControlPartCode _rv)"
581 f.docstring = lambda: "(Point startPoint, Integer modifiers, [,trackercallback]) -> (ControlPartCode _rv)"
611 f.docstring = lambda: "(stuff) -> None"
656 f.docstring = lambda: "(part, type) -> String"
685 f.docstring = lambda: "(ResObj) -> None"
728 f.docstring = lambda: "(part, type) -> ResObj"
760 f.docstring = lambda: "(callbackfunc) -> None"
821 f.docstring = lambda: "(WindowPtr window, Rect boundsRect, UInt16 size, UInt16 direction, ControlTabEntry tabArray) -> (ControlHandle outControl)"
  /external/python/cpython2/Tools/pynche/
PyncheWidget.py 207 from Main import docstring
233 'using docstring instead.\n')
234 contents = docstring()
  /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...]
  /external/python/cpython2/Modules/
mathmodule.c 790 #define FUNC1(funcname, func, can_overflow, docstring) \
794 PyDoc_STRVAR(math_##funcname##_doc, docstring);
796 #define FUNC1A(funcname, func, docstring) \
800 PyDoc_STRVAR(math_##funcname##_doc, docstring);
802 #define FUNC2(funcname, func, docstring) \
806 PyDoc_STRVAR(math_##funcname##_doc, docstring);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
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__))
  /external/python/cpython2/Mac/Modules/qd/
qdsupport.py 293 f.docstring = lambda: """(int start, int size) -> string. Return bytes from the bitmap"""
310 f.docstring = lambda: """(int start, string data). Store bytes into the bitmap"""
343 f.docstring = lambda: """Take (string, int, Rect) argument and create BitMap"""
371 f.docstring = lambda: """Take string BitMap and turn into BitMap object"""
  /external/python/cpython2/Tools/framer/framer/
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/Lib/compiler/
pyassem.py 261 self.docstring = None
288 self.docstring = doc
408 self.consts.insert(0, self.docstring)
  /external/python/cpython2/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)
  /build/make/tools/releasetools/
common.py 848 def Usage(docstring):
849 print(docstring.rstrip("\n"))
854 docstring,
858 flags. docstring is the calling module's docstring, to be displayed
874 Usage(docstring)
880 Usage(docstring)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
compile.c 1391 int i, n, docstring; local
    [all...]

Completed in 903 milliseconds

12 3