Home
last modified time | relevance | path

Searched refs:attname (Results 1 – 9 of 9) sorted by relevance

/external/autotest/frontend/afe/
Drdb_model_extensions.py52 if (field.attname != field.name and
53 field.attname in data):
54 data[field.name] = data[field.attname]
55 del data[field.attname]
Dmodel_logic.py214 rhs_ids = join_to_query.values_list(rhs_id_field.attname, flat=True)
384 base_object_id = getattr(related_object, foreign_key_field.attname)
632 getattr(self, f.attname, f.get_default()))
641 setattr(self, f.attname, python_value)
939 serialized[field.attname] = field._get_val_from_obj(self)
/external/python/cpython2/Lib/xml/dom/
Dminidom.py525 def __setitem__(self, attname, value): argument
528 node = self._attrs[attname]
530 node = Attr(attname)
672 def getAttribute(self, attname): argument
674 return self._attrs[attname].value
684 def setAttribute(self, attname, value): argument
685 attr = self.getAttributeNode(attname)
687 attr = Attr(attname)
/external/libxml2/
Dparser.c8439 const xmlChar *attname; in xmlParseStartTag() local
8470 attname = xmlParseAttribute(ctxt, &attvalue); in xmlParseStartTag()
8471 if ((attname != NULL) && (attvalue != NULL)) { in xmlParseStartTag()
8478 if (xmlStrEqual(atts[i], attname)) { in xmlParseStartTag()
8479 xmlErrAttributeDup(ctxt, NULL, attname); in xmlParseStartTag()
8515 atts[nbatts++] = attname; in xmlParseStartTag()
8534 (attname == NULL) && (attvalue == NULL)) { in xmlParseStartTag()
9181 const xmlChar *attname; in xmlParseStartTag2() local
9236 attname = xmlParseAttribute2(ctxt, prefix, localname, in xmlParseStartTag2()
9238 if ((attname == NULL) || (attvalue == NULL)) in xmlParseStartTag2()
[all …]
/external/python/cpython2/Modules/expat/
Dexpat.h169 const XML_Char *attname,
/external/expat/lib/
Dexpat.h169 const XML_Char *attname,
/external/python/cpython2/Modules/
Dpyexpat.c768 const XML_Char *attname,
773 string_intern(self, elname), string_intern(self, attname),
/external/python/cpython2/Doc/library/
Dpyexpat.rst367 .. method:: xmlparser.AttlistDeclHandler(elname, attname, type, default, required)
372 declaration applies and *attname* is the name of the attribute declared. The
/external/expat/tests/
Druntests.c158 const XML_Char *UNUSED_P(attname), in dummy_attlist_decl_handler() argument