/external/libxml2/python/tests/ |
reader7.py | 21 docstr="""<foo> 39 reader = libxml2.readerForDoc(docstr, "test1", None, 0) 57 docstr="""<foo> 75 reader.NewDoc(docstr, "test2", None, 0)
|
reader8.py | 14 docstr="""<foo> 19 reader = libxml2.readerForDoc(docstr, "test1", None, 0)
|
walker.py | 21 docstr="""<foo> 39 doc = libxml2.parseDoc(docstr) 60 docstr="""<foo> 78 doc = libxml2.parseDoc(docstr) 100 docstr="""<foo> 118 reader.NewDoc(docstr, "test3", None, 0)
|
reader6.py | 44 docstr="""<foo> 49 f = str_io(docstr) 68 docstr="""<foo> 92 f = str_io(docstr)
|
reader3.py | 14 docstr="""<?xml version='1.0'?> 26 f = str_io(docstr) 63 f = str_io(docstr)
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/ |
p11.cpp | 38 int &f(char const* name, Get fget, char const* docstr = 0); 41 float &f(char const* name, Get fget, Set fset, char const* docstr = 0);
|
/external/python/cpython3/Objects/ |
classobject.c | 119 static PyObject *docstr; local 120 if (docstr == NULL) { 121 docstr= PyUnicode_InternFromString("__doc__"); 122 if (docstr == NULL) 125 return PyObject_GetAttr(im->im_func, docstr); 444 static PyObject *docstr; local 445 if (docstr == NULL) { 446 docstr = PyUnicode_InternFromString("__doc__"); 447 if (docstr == NULL) 450 return PyObject_GetAttr(PyInstanceMethod_GET_FUNCTION(self), docstr); [all...] |
/external/python/cpython3/Lib/test/ |
test_funcattrs.py | 294 docstr = "A test method that does nothing" 295 self.b.__doc__ = docstr 296 self.F.a.__doc__ = docstr 297 self.assertEqual(self.b.__doc__, docstr) 298 self.assertEqual(self.fi.a.__doc__, docstr) 299 self.cannot_set_attr(self.fi.a, "__doc__", docstr, AttributeError)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_funcattrs.py | 314 docstr = "A test method that does nothing"
315 self.b.__doc__ = self.f.a.im_func.__doc__ = docstr
316 self.assertEqual(self.b.__doc__, docstr)
317 self.assertEqual(self.b.func_doc, docstr)
318 self.assertEqual(self.f.a.__doc__, docstr)
319 self.assertEqual(self.fi.a.__doc__, docstr)
320 self.cannot_set_attr(self.f.a, "__doc__", docstr, AttributeError)
321 self.cannot_set_attr(self.fi.a, "__doc__", docstr, AttributeError)
|
/external/python/cpython2/Lib/test/ |
test_funcattrs.py | 314 docstr = "A test method that does nothing" 315 self.b.__doc__ = self.f.a.im_func.__doc__ = docstr 316 self.assertEqual(self.b.__doc__, docstr) 317 self.assertEqual(self.b.func_doc, docstr) 318 self.assertEqual(self.f.a.__doc__, docstr) 319 self.assertEqual(self.fi.a.__doc__, docstr) 320 self.cannot_set_attr(self.f.a, "__doc__", docstr, AttributeError) 321 self.cannot_set_attr(self.fi.a, "__doc__", docstr, AttributeError)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_funcattrs.py | 314 docstr = "A test method that does nothing" 315 self.b.__doc__ = self.f.a.im_func.__doc__ = docstr 316 self.assertEqual(self.b.__doc__, docstr) 317 self.assertEqual(self.b.func_doc, docstr) 318 self.assertEqual(self.f.a.__doc__, docstr) 319 self.assertEqual(self.fi.a.__doc__, docstr) 320 self.cannot_set_attr(self.f.a, "__doc__", docstr, AttributeError) 321 self.cannot_set_attr(self.fi.a, "__doc__", docstr, AttributeError)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_funcattrs.py | 314 docstr = "A test method that does nothing" 315 self.b.__doc__ = self.f.a.im_func.__doc__ = docstr 316 self.assertEqual(self.b.__doc__, docstr) 317 self.assertEqual(self.b.func_doc, docstr) 318 self.assertEqual(self.f.a.__doc__, docstr) 319 self.assertEqual(self.fi.a.__doc__, docstr) 320 self.cannot_set_attr(self.f.a, "__doc__", docstr, AttributeError) 321 self.cannot_set_attr(self.fi.a, "__doc__", docstr, AttributeError)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_funcattrs.py | 314 docstr = "A test method that does nothing" 315 self.b.__doc__ = self.f.a.im_func.__doc__ = docstr 316 self.assertEqual(self.b.__doc__, docstr) 317 self.assertEqual(self.b.func_doc, docstr) 318 self.assertEqual(self.f.a.__doc__, docstr) 319 self.assertEqual(self.fi.a.__doc__, docstr) 320 self.cannot_set_attr(self.f.a, "__doc__", docstr, AttributeError) 321 self.cannot_set_attr(self.fi.a, "__doc__", docstr, AttributeError)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_funcattrs.py | 314 docstr = "A test method that does nothing" 315 self.b.__doc__ = self.f.a.im_func.__doc__ = docstr 316 self.assertEqual(self.b.__doc__, docstr) 317 self.assertEqual(self.b.func_doc, docstr) 318 self.assertEqual(self.f.a.__doc__, docstr) 319 self.assertEqual(self.fi.a.__doc__, docstr) 320 self.cannot_set_attr(self.f.a, "__doc__", docstr, AttributeError) 321 self.cannot_set_attr(self.fi.a, "__doc__", docstr, AttributeError)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
classobject.c | 33 static PyObject *docstr, *modstr, *namestr;
local 34 if (docstr == NULL) {
35 docstr= PyString_InternFromString("__doc__");
36 if (docstr == NULL)
59 if (PyDict_GetItem(dict, docstr) == NULL) {
60 if (PyDict_SetItem(dict, docstr, Py_None) < 0)
2306 static PyObject *docstr; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
classobject.c | 33 static PyObject *docstr, *modstr, *namestr;
local 34 if (docstr == NULL) {
35 docstr= PyString_InternFromString("__doc__");
36 if (docstr == NULL)
59 if (PyDict_GetItem(dict, docstr) == NULL) {
60 if (PyDict_SetItem(dict, docstr, Py_None) < 0)
2282 static PyObject *docstr; local [all...] |
/external/python/cpython2/Objects/ |
classobject.c | 33 static PyObject *docstr, *modstr, *namestr; local 34 if (docstr == NULL) { 35 docstr= PyString_InternFromString("__doc__"); 36 if (docstr == NULL) 59 if (PyDict_GetItem(dict, docstr) == NULL) { 60 if (PyDict_SetItem(dict, docstr, Py_None) < 0) 2306 static PyObject *docstr; local [all...] |
/external/python/cpython2/Lib/lib-tk/ |
turtle.py | [all...] |
/external/python/cpython3/Lib/ |
turtle.py | [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ |
turtle.py | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/ |
turtle.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
turtle.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
turtle.py | [all...] |