Home
last modified time | relevance | path

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

/external/rust/crates/paste/tests/
Dtest_doc.rs20 macro_rules! get_doc { macro
29 get_doc!(#[doc = "s\"" r#"r#""#]) in test_escaping()
39 get_doc!(#[doc = "int=" 0x1 " bool=" true " float=" 0.01]) in test_literals()
49 get_doc!(#[doc = "HTTP " get:upper "!"]) in test_case()
/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.c1703 PyObject *get_doc; in property_init_impl() local
1704 int rc = _PyObject_LookupAttrId(fget, &PyId___doc__, &get_doc); in property_init_impl()
1709 Py_XSETREF(self->prop_doc, get_doc); in property_init_impl()
1716 int err = _PyObject_SetAttrId((PyObject *)self, &PyId___doc__, get_doc); in property_init_impl()
1717 Py_DECREF(get_doc); in property_init_impl()
/external/autotest/server/cros/tradefed/
Dgenerate_controlfiles_common.py244 def get_doc(modules, abi, is_public): function
823 DOC=get_doc(modules, abi, is_public),
/external/pdfium/fxjs/
Dcjs_field.h196 CJS_Result get_doc(CJS_Runtime* pRuntime);
Dcjs_field.cpp1185 CJS_Result CJS_Field::get_doc(CJS_Runtime* pRuntime) { in get_doc() function in CJS_Field