Home
last modified time | relevance | path

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

/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/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/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.c1495 PyObject *get_doc = _PyObject_GetAttrId(get, &PyId___doc__); in property_init() local
1496 if (get_doc) { in property_init()
1498 Py_XSETREF(prop->prop_doc, get_doc); in property_init()
1505 int err = _PyObject_SetAttrId(self, &PyId___doc__, get_doc); in property_init()
1506 Py_DECREF(get_doc); in property_init()
/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