/external/libxml2/doc/tutorial/ |
D | includexpath.c | 6 getdoc (char *docname) { 59 doc = getdoc(docname);
|
/external/python/parse_type/bin/ |
D | toxcmd.py | 211 return inspect.getdoc(self.func) 227 parser = argparse.ArgumentParser(description=inspect.getdoc(toxcmd_main),
|
/external/tensorflow/tensorflow/python/keras/utils/ |
D | tf_inspect.py | 301 def getdoc(object): # pylint: disable=redefined-builtin function 313 return _inspect.getdoc(object)
|
/external/tensorflow/tensorflow/python/util/ |
D | tf_inspect.py | 315 def getdoc(object): # pylint: disable=redefined-builtin function 327 return _inspect.getdoc(object)
|
D | tf_inspect_test.py | 515 tf_inspect.getdoc(test_decorated_function_with_defaults))
|
/external/pigweed/pw_rpc/py/pw_rpc/console_tools/ |
D | functions.py | 71 docs = inspect.getdoc(function) or '(no docstring)'
|
D | console.py | 79 return inspect.getdoc(item) or f'No documentation for {item!r}.'
|
/external/python/cpython2/Lib/ |
D | pydoc.py | 82 def getdoc(object): function 84 result = inspect.getdoc(object) or inspect.getcomments(object) 697 doc = self.markup(getdoc(object), self.preformat, fdict, cdict) 818 doc = self.markup(getdoc(value), self.preformat, 893 doc = self.markup(getdoc(object), self.preformat, funcs, classes, mdict) 952 getdoc(object), self.preformat, funcs, classes, methods) 963 doc = self.markup(getdoc(value), self.preformat) 1073 synop, desc = splitdoc(getdoc(object)) 1187 doc = getdoc(object) 1243 doc = getdoc(value) [all …]
|
D | DocXMLRPCServer.py | 99 docstring = pydoc.getdoc(object)
|
D | SimpleXMLRPCServer.py | 344 return pydoc.getdoc(method)
|
D | inspect.py | 354 def getdoc(object): function
|
/external/python/cpython3/Lib/ |
D | pydoc.py | 185 def getdoc(object): function 807 doc = self.markup(getdoc(object), self.preformat, fdict, cdict) 920 doc = getdoc(value) 924 doc = self.markup(getdoc(value), self.preformat, 1010 doc = getdoc(object) 1083 getdoc(object), self.preformat, funcs, classes, methods) 1094 doc = self.markup(getdoc(object), self.preformat) 1202 synop, desc = splitdoc(getdoc(object)) 1329 doc = getdoc(object) 1401 doc = getdoc(value) [all …]
|
/external/python/cpython3/Lib/idlelib/ |
D | calltip.py | 189 doc = inspect.getdoc(ob)
|
/external/clang/ |
D | update-prebuilts.py | 42 description=inspect.getdoc(sys.modules[__name__]))
|
/external/deqp-deps/SPIRV-Tools/utils/ |
D | check_copyright.py | 198 description=inspect.getdoc(sys.modules[__name__]))
|
/external/swiftshader/third_party/SPIRV-Tools/utils/ |
D | check_copyright.py | 198 description=inspect.getdoc(sys.modules[__name__]))
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/ |
D | check_copyright.py | 202 description=inspect.getdoc(sys.modules[__name__]))
|
/external/python/cpython3/Lib/xmlrpc/ |
D | server.py | 345 return pydoc.getdoc(method) 784 docstring = pydoc.getdoc(object)
|
/external/python/cpython2/Lib/test/ |
D | test_inspect.py | 262 self.assertEqual(inspect.getdoc(mod), 'A module docstring.') 263 self.assertEqual(inspect.getdoc(mod.StupidGit), 265 self.assertEqual(inspect.getdoc(git.abuse),
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
D | distribution.py | 196 class_special_attr_docstring = tf_inspect.getdoc(class_special_attr_value) 201 class_attr_docstring = tf_inspect.getdoc(base_attr_value)
|
/external/python/cpython3/Lib/test/ |
D | test_inspect.py | 432 self.assertEqual(inspect.getdoc(mod), 'A module docstring.') 433 self.assertEqual(inspect.getdoc(mod.StupidGit), 435 self.assertEqual(inspect.getdoc(git.abuse), 437 self.assertEqual(inspect.getdoc(SlotUser.power), 439 self.assertEqual(inspect.getdoc(SlotUser.distance), 445 self.assertEqual(inspect.getdoc(mod.FesteringGob), 447 self.assertEqual(inspect.getdoc(mod.FesteringGob.abuse), 449 self.assertEqual(inspect.getdoc(mod.FesteringGob().abuse), 451 self.assertEqual(inspect.getdoc(mod.FesteringGob.contradiction),
|
/external/pigweed/pw_rpc/py/pw_rpc/ |
D | callback_client.py | 139 docstring = inspect.getdoc(self.__call__)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a4.rst | 377 inspect.getdoc() now follows inheritance chains.
|
D | 3.9.0b1.rst | 284 Revert changes to :func:`inspect.getdoc`.
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6b1.rst | 384 Factored out the indentation cleaning from inspect.getdoc() into
|