Home | History | Annotate | Download | only in etree

Lines Matching full:subelement

67     "SubElement",
93 # or the {@link #SubElement} factory function.
167 # @see SubElement
190 # (Attribute) Text before first subelement. This is either a
259 # Returns the given subelement, by index.
261 # @param index What subelement to return.
262 # @return The given subelement.
269 # Replaces the given subelement, by index.
271 # @param index What subelement to replace.
284 # Deletes the given subelement, by index.
286 # @param index What subelement to delete.
293 # Adds a subelement to the end of this element. In document order,
294 # the new element will appear after the last existing subelement (or
295 # directly after the text, if it's the first subelement), but before
316 # Inserts a subelement at the given position in this element.
318 # @param index Where to insert the new subelement.
325 # Removes a matching subelement. Unlike the <b>find</b> methods,
355 # Finds the first matching subelement, by tag name or path.
366 # Finds text for the first matching subelement, by tag name or path.
514 # Subelement factory. This function creates an element instance, and
521 # @param tag The subelement name.
527 def SubElement(parent, tag, attrib={}, **extra):