Home
last modified time | relevance | path

Searched refs:get_doc (Results 1 – 6 of 6) sorted by relevance

/external/autotest/client/site_tests/firmware_TouchMTB/
Dreport_html.py122 def get_doc(self, test_version): member in TemplateHtml
153 report_file.write(self.doc.get_doc(self.test_version))
/external/libxml2/python/
Dlibxml.py329 def get_doc(self): member in xmlCore
399 doc = property(get_doc, None, None, "The document this node belongs to")
433 self.get_doc()._o,
447 self.get_doc()._o,
/external/python/cpython2/Objects/
Ddescrobject.c1332 PyObject *get_doc = PyObject_GetAttrString(get, "__doc__"); in property_init() local
1333 if (get_doc) { in property_init()
1335 Py_XSETREF(prop->prop_doc, get_doc); in property_init()
1342 int err = PyObject_SetAttrString(self, "__doc__", get_doc); in property_init()
1343 Py_DECREF(get_doc); in property_init()
/external/python/cpython3/Objects/
Ddescrobject.c1493 PyObject *get_doc = _PyObject_GetAttrId(fget, &PyId___doc__); in property_init_impl() local
1494 if (get_doc) { in property_init_impl()
1496 Py_XSETREF(self->prop_doc, get_doc); in property_init_impl()
1503 int err = _PyObject_SetAttrId((PyObject *)self, &PyId___doc__, get_doc); in property_init_impl()
1504 Py_DECREF(get_doc); in property_init_impl()
/external/pdfium/fxjs/
Dcjs_field.h103 CJS_Return get_doc(CJS_Runtime* pRuntime);
Dcjs_field.cpp1025 CJS_Return Field::get_doc(CJS_Runtime* pRuntime) { in get_doc() function in Field