/external/libxml2/doc/tutorial/ |
D | includexpath.c | 6 getdoc (char *docname) { 59 doc = getdoc(docname);
|
/external/tensorflow/tensorflow/tools/docs/ |
D | parser_test.py | 183 tf_inspect.getdoc(TestClass).split('\n')[0], page_info.doc.brief) 381 tf_inspect.getdoc(test_module).split('\n')[0], page_info.doc.brief) 424 tf_inspect.getdoc(test_function).split('\n')[0], page_info.doc.brief) 463 tf_inspect.getdoc(test_function_with_args_kwargs).split('\n')[0],
|
D | parser.py | 142 return tf_inspect.getdoc(py_object) or ''
|
/external/tensorflow/tensorflow/python/util/ |
D | tf_inspect.py | 289 def getdoc(object): # pylint: disable=redefined-builtin function 301 return _inspect.getdoc(object)
|
D | tf_inspect_test.py | 497 tf_inspect.getdoc(test_decorated_function_with_defaults))
|
/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 | 92 def getdoc(object): function 94 result = inspect.getdoc(object) or inspect.getcomments(object) 722 doc = self.markup(getdoc(object), self.preformat, fdict, cdict) 842 doc = self.markup(getdoc(value), self.preformat, 926 doc = getdoc(object) 993 getdoc(object), self.preformat, funcs, classes, methods) 1004 doc = self.markup(getdoc(value), self.preformat) 1117 synop, desc = splitdoc(getdoc(object)) 1244 doc = getdoc(object) 1299 doc = getdoc(value) [all …]
|
D | inspect.py | 594 def getdoc(object): function
|
/external/clang/ |
D | update-prebuilts.py | 42 description=inspect.getdoc(sys.modules[__name__]))
|
/external/deqp-deps/SPIRV-Tools/utils/ |
D | check_copyright.py | 193 description=inspect.getdoc(sys.modules[__name__]))
|
/external/swiftshader/third_party/SPIRV-Tools/utils/ |
D | check_copyright.py | 193 description=inspect.getdoc(sys.modules[__name__]))
|
/external/python/cpython3/Lib/xmlrpc/ |
D | server.py | 344 return pydoc.getdoc(method) 783 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 | 402 self.assertEqual(inspect.getdoc(mod), 'A module docstring.') 403 self.assertEqual(inspect.getdoc(mod.StupidGit), 405 self.assertEqual(inspect.getdoc(git.abuse), 411 self.assertEqual(inspect.getdoc(mod.FesteringGob), 413 self.assertEqual(inspect.getdoc(mod.FesteringGob.abuse), 415 self.assertEqual(inspect.getdoc(mod.FesteringGob().abuse), 417 self.assertEqual(inspect.getdoc(mod.FesteringGob.contradiction),
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a4.rst | 377 inspect.getdoc() now follows inheritance chains.
|
D | 3.5.1rc1.rst | 323 Fixed inspect.getdoc() for inherited docstrings of properties. Original
|
D | 3.6.0a1.rst | 2573 Fixed inspect.getdoc() for inherited docstrings of properties. Original
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6b1.rst | 384 Factored out the indentation cleaning from inspect.getdoc() into
|
/external/python/cpython2/Doc/library/ |
D | inspect.rst | 397 .. function:: getdoc(object)
|
/external/python/cpython3/Doc/library/ |
D | inspect.rst | 450 .. function:: getdoc(object)
|
/external/v8/tools/ |
D | grokdump.py | 3458 doc = inspect.getdoc(method)
|