/external/llvm-project/polly/lib/External/isl/ |
D | isl_multi_explicit_domain.c | 42 static __isl_keep DOM *FN(MULTI(BASE),peek_explicit_domain)( in FN() 52 static __isl_give DOM *FN(MULTI(BASE),get_explicit_domain)( in FN() 55 return FN(DOM,copy)(FN(MULTI(BASE),peek_explicit_domain)(multi)); in FN() 61 __isl_take MULTI(BASE) *multi, __isl_take DOM *dom) in MULTI() 68 FN(DOM,free)(multi->u.dom); in MULTI() 75 FN(DOM,free)(dom); in MULTI() local 90 DOM *dom; in MULTI() 93 is_params = FN(DOM,is_params)(dom); in MULTI() 97 dom = FN(DOM,copy)(dom); in MULTI() 103 params = FN(DOM,params)(dom); in MULTI() [all …]
|
D | isl_multi_intersect.c | 17 __isl_keep MULTI(BASE) *multi, __isl_keep DOM *domain) in FN() 22 domain_space = FN(DOM,get_space)(domain); in FN() 35 __isl_keep MULTI(BASE) *multi, __isl_keep DOM *domain) in FN() 43 isl_die(FN(DOM,get_ctx)(domain), isl_error_invalid, in FN() 60 __isl_take MULTI(BASE) *multi, __isl_take DOM *domain) in MULTI() 63 DOM *multi_dom; in MULTI() 69 is_params = FN(DOM,is_params)(multi->u.dom); in MULTI() 74 domain = FN(DOM,intersect)(multi_dom, domain); in MULTI() 78 params = FN(DOM,params)(multi_dom); in MULTI() 79 domain = FN(DOM,intersect_params)(domain, params); in MULTI() [all …]
|
D | isl_multi_bind_templ.c | 16 __isl_give DOM *FN(MULTI(BASE),bind)(__isl_take MULTI(BASE) *multi, in FN() 25 DOM *bnd; in FN() 47 DOM *bnd_i; in FN() 53 bnd_i = FN(DOM,align_params)(bnd_i, FN(DOM,get_space)(bnd)); in FN() 54 bnd = FN(DOM,align_params)(bnd, FN(DOM,get_space)(bnd_i)); in FN() 55 bnd = FN(DOM,intersect)(bnd, bnd_i); in FN()
|
D | isl_multi_union_add_templ.c | 59 is_params1 = FN(DOM,is_params)(multi1->u.dom); in MULTI() 60 is_params2 = FN(DOM,is_params)(multi2->u.dom); in MULTI() 71 multi1->u.dom = FN(DOM,union)(multi1->u.dom, in MULTI() 72 FN(DOM,copy)(multi2->u.dom)); in MULTI()
|
D | isl_multi_macro.h | 7 #undef DOM 8 #define DOM CAT(isl_,DOMBASE) macro
|
/external/autotest/frontend/client/src/autotest/common/table/ |
D | FragmentedTable.java | 7 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 …]
|
D | TableRenderer.java | 8 import com.google.gwt.user.client.DOM; 83 Element tempDiv = DOM.createDiv(); in renderBody()
|
/external/python/cpython2/Doc/library/ |
D | xml.dom.minidom.rst | 1 :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 …]
|
D | xml.dom.rst | 13 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 …]
|
D | xml.dom.pulldom.rst | 1 :mod:`xml.dom.pulldom` --- Support for building partial DOM trees 5 :synopsis: Support for building partial DOM trees from SAX events.
|
D | xml.rst | 26 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/python/cpython3/Doc/library/ |
D | xml.dom.minidom.rst | 1 :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 …]
|
D | xml.dom.rst | 14 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 …]
|
D | xml.rst | 31 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
|
D | xml.dom.pulldom.rst | 1 :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.
|
/external/autotest/frontend/client/src/autotest/common/ui/ |
D | ElementWidget.java | 3 import com.google.gwt.user.client.DOM; 20 DOM.removeChild(DOM.getParent(element), element); in ElementWidget() 24 this(DOM.getElementById(elementId)); in ElementWidget()
|
D | RightClickTable.java | 8 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);
|
D | RealHyperlink.java | 4 import com.google.gwt.user.client.DOM; 11 link = DOM.createAnchor(); in RealHyperlink()
|
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/ |
D | README.md | 12 **Shadow DOM**: provides encapsulation by hiding DOM subtrees under shadow roots ([spec](https://w3… 23 `webcomponents-lite.js` includes all polyfills except for shadow DOM. 35 | Shadow DOM | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | 41 ~Indicates support may be flaky. If using Custom Elements or HTML Imports with Shadow DOM, 42 you will get the non-flaky Mutation Observer polyfill that Shadow DOM includes. 80 …their upgrade asynchronously. If prematurely fetching the element from the DOM before it has an op… 100 * [execCommand isn't supported under Shadow DOM](#execcommand) 103 Under native Shadow DOM, CSS selectors cannot cross the shadow boundary. This means document level … 105 …DOM polyfill can't prevent document styles from leaking into shadow roots. It can, however, encaps… 111 ... where `shadowRoot` is the shadow root of a DOM element, and `scope` is the name of the scope us… [all …]
|
/external/libxml2/doc/ |
D | DOM.fig | 63 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
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_ssa.cpp | 62 #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/icu/android_icu4j/src/main/java/android/icu/util/ |
D | DateTimeRule.java | 29 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/ |
D | DateTimeRule.java | 30 public static final int DOM = 0; field in DateTimeRule 104 dateRuleType = DOM; in DateTimeRule() 274 case DOM: in toString()
|
/external/skia/experimental/skrive/src/reader/ |
D | JsonReader.cpp | 58 explicit JsonReader(std::unique_ptr<skjson::DOM> dom) in JsonReader() 245 const std::unique_ptr<skjson::DOM> fDom; 253 auto dom = std::make_unique<skjson::DOM>(json, len); in MakeJsonStreamReader()
|
/external/autotest/frontend/client/src/autotest/tko/ |
D | TkoUtils.java | 15 import com.google.gwt.user.client.DOM; 55 DOM.getElementById(elementId).getStyle().setProperty("display", visible ? "" : "none"); in setElementVisible()
|