HomeSort by relevance Sort by last modified time
    Searched full:elementtree (Results 1 - 25 of 44) sorted by null

1 2

  /external/markdown/markdown/
etree_loader.py 7 """Import the best implementation of ElementTree, return a module object."""
9 try: # Is it Python 2.5+ with C implemenation of ElementTree installed?
12 try: # Is it Python 2.5+ with Python implementation of ElementTree?
13 import xml.etree.ElementTree as etree
18 try: # An earlier version of Python with Python ElementTree?
19 import elementtree.ElementTree as etree namespace
21 message(CRITICAL, "Failed to import ElementTree")
29 message(CRITICAL, "For ElementTree version 1.1 or higher is required")
blockparser.py 38 """ Parse Markdown blocks into an ElementTree object.
41 looping through them and creating an ElementTree object.
49 """ Parse a markdown document into an ElementTree.
51 Given a list of lines, an ElementTree object (not just a parent Element)
53 The ElementTree object is returned.
58 # Create a ElementTree from the lines
61 return markdown.etree.ElementTree(self.root)
treeprocessors.py 15 Treeprocessors are run on the ElementTree object before serialization.
18 ElementTree, modifies it as necessary and returns an ElementTree
27 takes a root ElementTree. This method can return another ElementTree
28 object, and the existing root ElementTree will be replaced, or it can
135 Process string with placeholders and generate ElementTree tree.
139 * data: string with placeholders instead of ElementTree elements.
142 Returns: list with ElementTree elements with applied inline patterns.
210 Returns: String with placeholders instead of ElementTree elements
    [all...]
html4.py 4 # Taken from ElementTree 1.3 preview with slight modifications
12 # The ElementTree toolkit is
41 ElementTree = markdown.etree.ElementTree
273 write_html(ElementTree(element).getroot(),file,encoding)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/
__init__.py 14 etree -- The ElementTree XML library. This is a subset of the full
15 ElementTree XML release.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/
__init__.py 14 etree -- The ElementTree XML library. This is a subset of the full
15 ElementTree XML release.
  /external/chromium_org/tools/telemetry/third_party/davclient/
davclient.py 19 from xml.etree import ElementTree
21 from elementtree import ElementTree
32 ElementTree.SubElement(parent, '{%s}%s' % (namespace, obj))
34 ElementTree.SubElement(parent, obj)
40 key_etree = ElementTree.SubElement(parent, '{%s}%s' % (namespace, key))
43 key_etree = ElementTree.SubElement(parent, key)
100 self.response.tree = ElementTree.fromstring(self.response.body)
198 root = ElementTree.Element('{DAV:}propfind')
200 ElementTree.SubElement(root, '{DAV:}%s' % properties
    [all...]
  /external/markdown/docs/
INSTALL 7 Python-Markdown requires the ElementTree module to be installed. In Python2.5+
8 ElementTree is included as part of the standard library. For earlier versions
12 >>> import ElementTree
15 copy of ElementTree installed on your system. As cElementTree is faster, you
20 download the latest version of ElementTree.
28 easy_install ElementTree
release-2.0.2.txt 6 ElementTree on older versions of Python (< 2.5). There have also been a few
release-2.0.txt 26 * The old home-grown NanoDOM has been replaced with ElementTree. Therefore all
27 extensions must use ElementTree rather than the old NanoDOM.
38 ElementTree internally to build the (X)HTML document from markdown source text.
writing_extensions.txt 15 As the parser builds an [ElementTree][] object which is later rendered
27 * [Working with the ElementTree][]
74 Accepts a match object and returns an ElementTree element of a plain
149 For specifics on manipulating the ElementTree, see
150 [Working with the ElementTree][] below.
154 Postprocessors manipulate the document after the ElementTree has been
162 Postprocessors are run after the ElementTree has been serialized back into
178 That Blockprocessor parses the block and adds it to the ElementTree. The
273 Given a list of lines, an ElementTree object is returned. This should be
296 <h3 id="working_with_et">Working with the ElementTree</h3
    [all...]
AUTHORS 13 patterns, replaced the NanoDOM with ElementTree support and made various other
  /external/chromium_org/third_party/protobuf/
protobuf_lite_java_parse_pom.py 21 from xml.etree import ElementTree
40 for profile in ElementTree.parse(pom_path).getroot().findall(profile_path):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementInclude.py 2 # ElementTree
17 # The ElementTree toolkit is
48 # Limited XInclude support for the ElementTree package.
52 from . import ElementTree
72 # is an ElementTree instance. If the parse mode is "text", this
80 data = ElementTree.parse(file).getroot()
__init__.py 2 # elementtree package
5 # The ElementTree toolkit is
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementInclude.py 2 # ElementTree
17 # The ElementTree toolkit is
48 # Limited XInclude support for the ElementTree package.
52 from . import ElementTree
72 # is an ElementTree instance. If the parse mode is "text", this
80 data = ElementTree.parse(file).getroot()
__init__.py 2 # elementtree package
5 # The ElementTree toolkit is
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 11 # Don't re-import "xml.etree.ElementTree" module in the docstring,
20 from xml.etree import ElementTree as ET
60 >>> from xml.etree import ElementTree
72 tree = ET.ElementTree(elem)
144 >>> tree = ET.ElementTree(element)
148 >>> tree = ET.ElementTree(element)
262 >>> from xml.etree import ElementTree
264 >>> CurrentElementPath = ElementTree.ElementPath
265 >>> ElementTree.ElementPath = ElementTree._SimpleElementPath(
    [all...]
test_xml_etree_c.py 48 # Run the same test suite as xml.etree.ElementTree
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 11 # Don't re-import "xml.etree.ElementTree" module in the docstring,
20 from xml.etree import ElementTree as ET
60 >>> from xml.etree import ElementTree
72 tree = ET.ElementTree(elem)
144 >>> tree = ET.ElementTree(element)
148 >>> tree = ET.ElementTree(element)
262 >>> from xml.etree import ElementTree
264 >>> CurrentElementPath = ElementTree.ElementPath
265 >>> ElementTree.ElementPath = ElementTree._SimpleElementPath(
    [all...]
test_xml_etree_c.py 48 # Run the same test suite as xml.etree.ElementTree
  /external/chromium_org/v8/tools/testrunner/local/
junit_output.py 29 import xml.etree.ElementTree as xml
48 xml.ElementTree(self.root).write(file, "UTF-8")
  /frameworks/webview/chromium/tools/
generate_local_manifest.py 15 import xml.etree.ElementTree as ET
34 local_manifest_tree = ET.ElementTree(local_manifest_root)
  /external/chromium_org/android_webview/buildbot/
generate_local_manifest.py 15 import xml.etree.ElementTree as ET
53 local_manifest_tree = ET.ElementTree(local_manifest_root)
  /external/chromium_org/chrome/browser/nacl_host/test/
debug_stub_browser_tests.py 7 import xml.etree.ElementTree
16 tree = xml.etree.ElementTree.fromstring(reply[1:])

Completed in 432 milliseconds

1 2