Home
last modified time | relevance | path

Searched refs:DOM (Results 1 – 25 of 119) sorted by relevance

12345

/external/autotest/frontend/client/src/autotest/common/table/
DFragmentedTable.java7 import com.google.gwt.user.client.DOM;
57 Element tbody = DOM.getFirstChild(getElement()); in updateBodyElems()
58 for(; tbody != null; tbody = DOM.getNextSibling(tbody)) { in updateBodyElems()
85 Element tr = DOM.getParent(td); in getCellPosition()
86 Element body = DOM.getParent(tr); in getCellPosition()
87 int fragmentIndex = DOM.getChildIndex(getElement(), body); in getCellPosition()
88 int rowWithinFragment = DOM.getChildIndex(body, tr); in getCellPosition()
90 int column = DOM.getChildIndex(tr, td); in getCellPosition()
99 Element td = DOM.eventGetTarget(event); in getEventTargetCell()
100 for (; td != null; td = DOM.getParent(td)) { in getEventTargetCell()
[all …]
DTableRenderer.java8 import com.google.gwt.user.client.DOM;
83 Element tempDiv = DOM.createDiv(); in renderBody()
/external/python/cpython3/Doc/library/
Dxml.dom.minidom.rst1 :mod:`xml.dom.minidom` --- Minimal DOM implementation
5 :synopsis: Minimal Document Object Model (DOM) implementation.
17 to be simpler than the full DOM and also significantly smaller. Users who are
18 not already proficient with the DOM should consider using the
29 DOM applications typically start by parsing some XML into a DOM. With
65 parser with a "DOM builder" that can accept parse events from any SAX parser and
66 convert them into a DOM tree. The name of the functions are perhaps misleading,
71 You can also create a :class:`Document` by calling a method on a "DOM
75 can add child nodes to it to populate the DOM::
86 Once you have a DOM document object, you can access the parts of your XML
[all …]
Dxml.dom.rst14 The Document Object Model, or "DOM," is a cross-language API from the World Wide
15 Web Consortium (W3C) for accessing and modifying XML documents. A DOM
20 The DOM is extremely useful for random-access applications. SAX only allows you
30 but the DOM allows you to avoid writing that code. The DOM is a standard tree
35 DOM Level 2 recommendation.
37 .. What if your needs are somewhere between SAX and the DOM? Perhaps
42 features that allow you to find your way around the DOM.
45 DOM applications typically start by parsing some XML into a DOM. How this is
46 accomplished is not covered at all by DOM Level 1, and Level 2 provides only
51 :class:`Document` object. In Python, each DOM implementation will provide a
[all …]
Dxml.dom.pulldom.rst1 :mod:`xml.dom.pulldom` --- Support for building partial DOM trees
5 :synopsis: Support for building partial DOM trees from SAX events.
14 asked to produce DOM-accessible fragments of the document where necessary. The
75 and switch to DOM-related processing.
Dxml.rst31 definition of the Python bindings for the DOM and SAX interfaces.
40 * :mod:`xml.dom`: the DOM API definition
41 * :mod:`xml.dom.minidom`: a minimal DOM implementation
42 * :mod:`xml.dom.pulldom`: support for building partial DOM trees
/external/python/cpython2/Doc/library/
Dxml.dom.minidom.rst1 :mod:`xml.dom.minidom` --- Minimal DOM implementation
5 :synopsis: Minimal Document Object Model (DOM) implementation.
19 to be simpler than the full DOM and also significantly smaller. Users who are
20 not already proficient with the DOM should consider using the
31 DOM applications typically start by parsing some XML into a DOM. With
67 parser with a "DOM builder" that can accept parse events from any SAX parser and
68 convert them into a DOM tree. The name of the functions are perhaps misleading,
73 You can also create a :class:`Document` by calling a method on a "DOM
81 :class:`Document`, you can add child nodes to it to populate the DOM::
92 Once you have a DOM document object, you can access the parts of your XML
[all …]
Dxml.dom.rst13 The Document Object Model, or "DOM," is a cross-language API from the World Wide
14 Web Consortium (W3C) for accessing and modifying XML documents. A DOM
19 The DOM is extremely useful for random-access applications. SAX only allows you
29 but the DOM allows you to avoid writing that code. The DOM is a standard tree
34 DOM Level 2 recommendation.
41 with that package for information on the current state of DOM Level 3 support.
43 .. What if your needs are somewhere between SAX and the DOM? Perhaps
48 features that allow you to find your way around the DOM.
51 DOM applications typically start by parsing some XML into a DOM. How this is
52 accomplished is not covered at all by DOM Level 1, and Level 2 provides only
[all …]
Dxml.dom.pulldom.rst1 :mod:`xml.dom.pulldom` --- Support for building partial DOM trees
5 :synopsis: Support for building partial DOM trees from SAX events.
Dxml.rst26 definition of the Python bindings for the DOM and SAX interfaces.
35 * :mod:`xml.dom`: the DOM API definition
36 * :mod:`xml.dom.minidom`: a minimal DOM implementation
37 * :mod:`xml.dom.pulldom`: support for building partial DOM trees
/external/autotest/frontend/client/src/autotest/common/ui/
DElementWidget.java3 import com.google.gwt.user.client.DOM;
20 DOM.removeChild(DOM.getParent(element), element); in ElementWidget()
24 this(DOM.getElementById(elementId)); in ElementWidget()
DRightClickTable.java8 import com.google.gwt.user.client.DOM;
61 Element tr = DOM.getParent(td);
62 Element body = DOM.getParent(tr);
63 int row = DOM.getChildIndex(body, tr);
64 int column = DOM.getChildIndex(tr, td);
DRealHyperlink.java4 import com.google.gwt.user.client.DOM;
11 link = DOM.createAnchor(); in RealHyperlink()
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_ssa.cpp62 #define DOM(i) (data[(i) + 4 * count]) macro
72 INFO("DOM(%i) = %i\n", i, DOM(i)); in debugPrint()
159 DOM(v) = (SEMI(u) < SEMI(v)) ? u : p; in build()
163 if (DOM(w) != SEMI(w)) in build()
164 DOM(w) = DOM(DOM(w)); in build()
166 DOM(0) = 0; in build()
172 nw = &BasicBlock::get(vert[DOM(v)])->dom; in build()
188 #undef DOM
/external/libxml2/doc/
DDOM.fig63 4 0 0 0 0 0 18 0.0000 4 195 1395 2175 1575 DOM server\001
64 4 0 0 0 0 0 18 0.0000 4 195 1335 4200 1650 DOM client\001
Dstructure.fig234 4 0 0 0 0 -1 20 0.0000 4 255 4665 5175 825 A DOM tree as built by the XML parser\001
/external/icu/android_icu4j/src/main/java/android/icu/util/
DDateTimeRule.java29 public static final int DOM = 0; field in DateTimeRule
89 dateRuleType = DOM; in DateTimeRule()
239 case DOM: in toString()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DDateTimeRule.java30 public static final int DOM = 0; field in DateTimeRule
104 dateRuleType = DOM; in DateTimeRule()
274 case DOM: in toString()
/external/libxml2/
DTODO136 - DOM needs
144 - DOM needs
252 interface. Currently the DOM-like representation is built but
257 - DOM support, instead of using a proprietary in memory
259 call a DOM API to actually build the resulting document.
265 very near a direct DOM implementation. The DOM glue is implemented
/external/autotest/frontend/client/src/autotest/tko/
DTkoUtils.java15 import com.google.gwt.user.client.DOM;
55 DOM.getElementById(elementId).getStyle().setProperty("display", visible ? "" : "none"); in setElementVisible()
DFilterStringViewer.java11 import com.google.gwt.user.client.DOM;
130 DOM.eventGetCurrentEvent().stopPropagation(); in changeEditable()
/external/skia/fuzz/oss_fuzz/
DFuzzJSON.cpp13 skjson::DOM dom(static_cast<const char*>(bytes->data()), bytes->size()); in FuzzJSON()
/external/skqp/fuzz/oss_fuzz/
DFuzzJSON.cpp13 skjson::DOM dom(static_cast<const char*>(bytes->data()), bytes->size()); in FuzzJSON()
/external/selinux/checkpolicy/
Dpolicy_scan.l180 DOM { return(DOM);}
/external/skia/modules/canvaskit/
Dparticles_bindings.cpp40 skjson::DOM dom(json.c_str(), json.length()); in EMSCRIPTEN_BINDINGS()

12345