HomeSort by relevance Sort by last modified time
    Searched defs:dom (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/dom/
nodetype.js 16 * @fileoverview Definition of goog.dom.NodeType.
19 goog.provide('goog.dom.NodeType');
32 * See http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1950641247
35 goog.dom.NodeType = {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
unittestresults.py 30 import xml.dom.minidom namespace
41 dom = xml.dom.minidom.parseString(string)
43 for testcase in dom.getElementsByTagName('testcase'):
  /external/chromium_org/tools/gyp/pylib/gyp/
xml_fix.py 5 """Applies a fix to CR LF TAB handling in xml.dom.
13 import xml.dom.minidom namespace
52 """Object to manage temporary patching of xml.dom.minidom."""
55 # Preserve current xml.dom.minidom functions.
56 self.write_data = xml.dom.minidom._write_data
57 self.writexml = xml.dom.minidom.Element.writexml
59 xml.dom.minidom._write_data = _Replacement_write_data
60 xml.dom.minidom.Element.writexml = _Replacement_writexml
64 xml.dom.minidom._write_data = self.write_data
65 xml.dom.minidom.Element.writexml = self.writexm
    [all...]
  /cts/tools/utils/
android_api_description_splitter.py 24 # 1. Read the xml file and generate DOM tree
80 import xml.dom.minidom; namespace
86 self.doc = xml.dom.minidom.parse(xmlfile)
106 if child.nodeType == xml.dom.minidom.Node.ELEMENT_NODE:
125 doc = xml.dom.minidom.Document()
buildCts.py 25 import xml.dom.minidom as dom namespace
  /development/testrunner/
android_manifest.py 26 import xml.dom.minidom namespace
65 self._dom = xml.dom.minidom.parse(self._manifest_path)
100 the DOM element for manifest or None.
  /external/chromium_org/components/policy/resources/
PRESUBMIT.py 10 import xml.dom.minidom namespace
82 tree = xml.dom.minidom.parseString(f.read())
  /external/chromium_org/remoting/tools/
verify_resources.py 32 import xml.dom.minidom as minidom namespace
  /external/chromium_org/third_party/webtreemap/src/
webtreemap.js 36 if (sibling.dom)
37 sibling.dom.style.zIndex = 0;
40 var width = root.dom.offsetWidth;
41 var height = root.dom.offsetHeight;
46 position(t.dom, -kBorderWidth, -kBorderWidth, width, height);
47 t.dom.style.zIndex = 1;
54 var dom = document.createElement('div');
55 dom.style.zIndex = 1;
56 dom.className = 'webtreemap-node webtreemap-level' + Math.min(level, 4);
58 dom.className += (' webtreemap-symbol-'
    [all...]
  /external/chromium_org/tools/findit/
git_repository_parser.py 6 import xml.dom.minidom as minidom namespace
58 dom = minidom.parseString(response)
67 divs = dom.getElementsByTagName('div')[2:-1]
68 pres = dom.getElementsByTagName('pre')
69 uls = dom.getElementsByTagName('ul')
svn_repository_parser.py 5 import xml.dom.minidom as minidom namespace
  /external/chromium_org/tools/metrics/common/
pretty_print_xml.py 13 import xml.dom.minidom namespace
68 if node.nodeType == xml.dom.minidom.Node.DOCUMENT_NODE:
72 if node.nodeType == xml.dom.minidom.Node.TEXT_NODE:
98 if node.nodeType == xml.dom.minidom.Node.ELEMENT_NODE:
186 if node.nodeType == xml.dom.minidom.Node.COMMENT_NODE:
  /external/owasp/sanitizer/tools/
cut_release.py 12 import xml.dom.minidom namespace
70 svn_info = xml.dom.minidom.parseString(svn_info_xml)
  /development/testrunner/test_defs/
test_defs.py 21 import xml.dom.minidom namespace
55 doc = xml.dom.minidom.parse(file_path)
69 doc = xml.dom.minidom.parseString(xml_string)
77 if element.nodeType != xml.dom.Node.ELEMENT_NODE:
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
xmlreport.py 4 import xml.dom.minidom namespace
37 # Create the DOM that will store the data.
38 impl = xml.dom.minidom.getDOMImplementation()
62 # Populate the XML DOM with the package info.
85 # Use the DOM to write the output file.
140 # Finalize the statistics that are collected in the XML DOM.
  /external/chromium_org/tools/metrics/histograms/
extract_histograms.py 59 import xml.dom.minidom namespace
108 if node.nodeType == xml.dom.minidom.Node.ELEMENT_NODE:
302 tree: XML dom tree.
430 tree = xml.dom.minidom.parse(file_handle)
pretty_print.py 21 import xml.dom.minidom namespace
53 parent of child is discarded (to avoid non-tree DOM graphs).
74 if node.nodeType != xml.dom.minidom.Node.ELEMENT_NODE:
86 if (c.nodeType == xml.dom.minidom.Node.ELEMENT_NODE and
129 tree = xml.dom.minidom.parseString(raw_xml)
  /bionic/libc/kernel/uapi/xen/
privcmd.h 39 domid_t dom; member in struct:privcmd_mmap
45 domid_t dom; member in struct:privcmd_mmapbatch
55 domid_t dom; member in struct:privcmd_mmapbatch_v2
  /cts/tools/utils/cts/
tools.py 20 import xml.dom.minidom as minidom namespace
30 to XML is done via a DOM tree that gets created on demand.
32 TODO: Instead of using an internal data structure, using a DOM tree directly would increase
  /development/testrunner/coverage/
coverage_targets.py 17 import xml.dom.minidom namespace
64 doc = xml.dom.minidom.parse(file_path)
  /external/chromium_org/build/android/gyp/
generate_v14_compatible_resources.py 27 import xml.dom.minidom as minidom namespace
86 def WriteDomToFile(dom, filename):
87 """Write the given dom to filename."""
90 dom.writexml(f, '', ' ', '\n', encoding='utf-8')
93 def HasStyleResource(dom):
94 """Return True if the dom is a style resource, False otherwise."""
95 root_node = IterateXmlElements(dom).next()
103 dom = minidom.parse(input_filename)
104 if HasStyleResource(dom):
111 def GenerateV14LayoutResourceDom(dom, filename, assert_not_deprecated=True)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
subversion_file_system.py 7 import xml.dom.minidom as xml namespace
31 '''Like node.innerText in JS DOM, but strips surrounding whitespace.
130 dom = xml.parseString(directory)
132 for elem in dom.getElementsByTagName('a')]
  /external/chromium_org/chrome/test/chromedriver/test/
run_java_tests.py 18 import xml.dom.minidom as minidom namespace
  /external/chromium_org/third_party/skia/samplecode/
SampleAnimator.cpp 65 static const SkDOMNode* find_nodeID(const SkDOM& dom,
68 node = dom.getRootNode();
71 const char* idval = dom.findAttr(node, "id");
75 const SkDOMNode* child = dom.getFirstChild(node);
77 const SkDOMNode* found = find_nodeID(dom, child, name);
82 } while ((node = dom.getNextSibling(node)) != NULL);
100 SkDOM dom; local
101 const SkDOM::Node* root = dom.build(text, len);
105 if (!fAnimator->decodeDOM(dom, root)) {
113 const SkDOM::Node* node = find_nodeID(dom, NULL, name.c_str())
    [all...]
  /external/chromium_org/third_party/skia/src/views/
SkViewInflate.cpp 20 void SkViewInflate::rInflate(const SkDOM& dom, const SkDOM::Node* node, SkView* parent)
22 const char* str = dom.findAttr(node, "id");
26 const SkDOM::Node* child = dom.getFirstChild(node);
29 SkView* view = this->createView(dom, child);
32 this->rInflate(dom, child, view);
37 const char* name = dom.getName(child);
40 if (!strcmp(name, "listenTo") && (target = dom.findAttr(child, "target")) != NULL)
43 if (!strcmp(name, "broadcastTo") && (target = dom.findAttr(child, "target")) != NULL)
46 child = dom.getNextSibling(child);
50 this->inflateView(parent, dom, node)
103 SkDOM dom; local
    [all...]

Completed in 697 milliseconds

1 2 3