/external/collada/ |
D | Android.mk | 52 src/1.4/dom/domAccessor.cpp \ 53 src/1.4/dom/domAnimation.cpp \ 54 src/1.4/dom/domAnimation_clip.cpp \ 55 src/1.4/dom/domAsset.cpp \ 56 src/1.4/dom/domBind_material.cpp \ 57 src/1.4/dom/domBool_array.cpp \ 58 src/1.4/dom/domBox.cpp \ 59 src/1.4/dom/domCOLLADA.cpp \ 60 src/1.4/dom/domCamera.cpp \ 61 src/1.4/dom/domCapsule.cpp \ [all …]
|
/external/webkit/LayoutTests/platform/android/ |
D | layout_test_directories.txt | 3 dom/html 4 dom/xhtml 7 fast/dom/Attr 8 fast/dom/CSSStyleDeclaration 9 fast/dom/DOMImplementation 10 fast/dom/DeviceMotion 11 fast/dom/DeviceOrientation 12 fast/dom/EntityReference 13 fast/dom/Geolocation 14 fast/dom/HTMLAnchorElement [all …]
|
/external/skia/src/views/ |
D | SkParsePaint.cpp | 7 static SkShader* inflate_shader(const SkDOM& dom, const SkDOM::Node* node) in inflate_shader() argument 9 if ((node = dom.getFirstChild(node, "shader")) == NULL) in inflate_shader() 14 if (dom.hasAttr(node, "type", "linear-gradient")) in inflate_shader() 20 if ((str = dom.findAttr(node, "c0")) != NULL && in inflate_shader() 22 (str = dom.findAttr(node, "c1")) != NULL && in inflate_shader() 24 dom.findScalars(node, "p0", &pts[0].fX, 2) && in inflate_shader() 25 dom.findScalars(node, "p1", &pts[1].fX, 2)) in inflate_shader() 30 if ((index = dom.findList(node, "tile-mode", "clamp,repeat,mirror")) >= 0) in inflate_shader() 35 else if (dom.hasAttr(node, "type", "bitmap")) in inflate_shader() 37 if ((str = dom.findAttr(node, "src")) == NULL) in inflate_shader() [all …]
|
D | SkViewInflate.cpp | 13 void SkViewInflate::rInflate(const SkDOM& dom, const SkDOM::Node* node, SkView* parent) in rInflate() argument 15 const char* str = dom.findAttr(node, "id"); in rInflate() 19 const SkDOM::Node* child = dom.getFirstChild(node); in rInflate() 22 SkView* view = this->createView(dom, child); in rInflate() 25 this->rInflate(dom, child, view); in rInflate() 30 const char* name = dom.getName(child); in rInflate() 33 if (!strcmp(name, "listenTo") && (target = dom.findAttr(child, "target")) != NULL) in rInflate() 36 if (!strcmp(name, "broadcastTo") && (target = dom.findAttr(child, "target")) != NULL) in rInflate() 39 child = dom.getNextSibling(child); in rInflate() 43 this->inflateView(parent, dom, node); in rInflate() [all …]
|
D | SkStaticTextView.cpp | 5 static void assert_no_attr(const SkDOM& dom, const SkDOM::Node* node, const char attr[]) in assert_no_attr() argument 7 const char* value = dom.findAttr(node, attr); in assert_no_attr() 12 #define assert_no_attr(dom, node, attr) argument 144 void SkStaticTextView::onInflate(const SkDOM& dom, const SkDOM::Node* node) in onInflate() argument 147 this->INHERITED::onInflate(dom, node); in onInflate() 150 if ((index = dom.findList(node, "mode", "fixed,auto-width,auto-height")) >= 0) in onInflate() 153 assert_no_attr(dom, node, "mode"); in onInflate() 155 if ((index = dom.findList(node, "spacing-align", "start,center,end")) >= 0) in onInflate() 158 assert_no_attr(dom, node, "spacing-align"); in onInflate() 161 if (dom.findScalars(node, "margin", s, 2)) in onInflate() [all …]
|
D | SkWidgets.cpp | 11 static void assert_no_attr(const SkDOM& dom, const SkDOM::Node* node, const char attr[]) 13 const char* value = dom.findAttr(node, attr); 18 #define assert_no_attr(dom, node, attr) 122 void SkWidget::onInflate(const SkDOM& dom, const SkDOM::Node* node) 124 this->INHERITED::onInflate(dom, node); 126 if ((node = dom.getFirstChild(node, "event")) != NULL) 127 fEvent.inflate(dom, node); 170 void SkHasLabelWidget::onInflate(const SkDOM& dom, const SkDOM::Node* node) 172 this->INHERITED::onInflate(dom, node); 174 const char* text = dom.findAttr(node, "label"); [all …]
|
D | SkStackViewLayout.cpp | 181 static void assert_no_attr(const SkDOM& dom, const SkDOM::Node* node, const char attr[]) in assert_no_attr() argument 183 const char* value = dom.findAttr(node, attr); in assert_no_attr() 188 #define assert_no_attr(dom, node, attr) argument 191 void SkStackViewLayout::onInflate(const SkDOM& dom, const SkDOM::Node* node) in onInflate() argument 196 if ((index = dom.findList(node, "orient", "horizontal,vertical")) >= 0) in onInflate() 199 assert_no_attr(dom, node, "orient"); in onInflate() 201 if (dom.findScalars(node, "margin", value, 4)) in onInflate() 208 assert_no_attr(dom, node, "margin"); in onInflate() 210 if (dom.findScalar(node, "spacer", value)) in onInflate() 213 assert_no_attr(dom, node, "spacer"); in onInflate() [all …]
|
D | SkListWidget.cpp | 428 void SkListView::onInflate(const SkDOM& dom, const SkDOM::Node* node) in onInflate() argument 430 this->INHERITED::onInflate(dom, node); in onInflate() 434 if (dom.findBool(node, "scrollBar", &hasScrollBar)) in onInflate() 440 if ((child = dom.getFirstChild(node, "bindings")) != NULL) in onInflate() 446 SkListSource* listSrc = SkListSource::Factory(dom.findAttr(child, "data-fields")); in onInflate() 448 fSkinName.set(dom.findAttr(child, "skin-slots")); in onInflate() 453 int count = dom.countChildren(child, "bind"); in onInflate() 459 child = dom.getFirstChild(child, "bind"); in onInflate() 462 const char* fieldName = dom.findAttr(child, "field"); in onInflate() 463 const char* slotName = dom.findAttr(child, "slot"); in onInflate() [all …]
|
D | SkListView.cpp | 120 SkDOMListSource(const SkDOM& dom, const SkDOM::Node* node) : fDirTail(">") 122 const SkDOM::Node* child = dom.getFirstChild(node, "item"); 128 child = dom.getNextSibling(child, "item"); 137 child = dom.getFirstChild(node, "item"); 140 rec->fLabel.set(dom.findAttr(child, "label")); 141 rec->fTail.set(dom.findAttr(child, "tail")); 142 rec->fAltTail.set(dom.findAttr(child, "alt-tail")); 143 rec->fTarget.set(dom.findAttr(child, "target")); 146 int index = dom.findList(child, "type", "dir,toggle"); 150 child = dom.getNextSibling(child, "item"); [all …]
|
D | SkViewPriv.cpp | 11 void SkView::Artist::inflate(const SkDOM& dom, const SkDOM::Node* node) in inflate() argument 13 SkASSERT(&dom && node); in inflate() 14 this->onInflate(dom, node); in inflate() 17 void SkView::Artist::onInflate(const SkDOM& dom, const SkDOM::Node* node) in onInflate() argument 57 void SkView::Layout::inflate(const SkDOM& dom, const SkDOM::Node* node) in inflate() argument 59 SkASSERT(&dom && node); in inflate() 60 this->onInflate(dom, node); in inflate() 63 void SkView::Layout::onInflate(const SkDOM& dom, const SkDOM::Node* node) in onInflate() argument
|
D | SkWidgetViews.cpp | 9 static void assert_no_attr(const SkDOM& dom, const SkDOM::Node* node, const char attr[]) in assert_no_attr() argument 11 const char* value = dom.findAttr(node, attr); in assert_no_attr() 16 #define assert_no_attr(dom, node, attr) argument 80 void inflate_paint(const SkDOM& dom, const SkDOM::Node* node, SkPaint* paint) in inflate_paint() argument 87 if (!anim.decodeDOM(dom, node)) in inflate_paint() 90 SkDEBUGCODE(dom.dump(node);) in inflate_paint() 155 /*virtual*/ void SkWidgetView::onInflate(const SkDOM& dom, const SkDOM::Node* node) in onInflate() argument 157 this->INHERITED::onInflate(dom, node); in onInflate() 159 const char* label = dom.findAttr(node, "label"); in onInflate() 163 if ((node = dom.getFirstChild(node, "event")) != NULL) in onInflate() [all …]
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2005-12-19 | 141 * khtml/dom/dom_string.cpp: 162 * khtml/dom/dom_string.h: 390 REGRESSION: dom/xhtml/level2/html//HTMLInputElement01.xhtml crashes 936 Test: fast/dom/css-shortHands.html 1075 Test: fast/dom/css-selectorText.html 1532 Test: fast/dom/inner-text-rtl.html 2299 Further dom/* cleanup, also removing extra forwarding headers 2302 * ForwardingHeaders/dom/dom2_views.h: Removed. 2303 * ForwardingHeaders/dom/dom_core.h: Removed. 2304 * ForwardingHeaders/dom/dom_doc.h: Removed. [all …]
|
D | Android.mk | 105 dom/ActiveDOMObject.cpp \ 106 dom/Attr.cpp \ 107 dom/Attribute.cpp \ 108 dom/BeforeTextInsertedEvent.cpp \ 109 dom/BeforeUnloadEvent.cpp \ 110 dom/CDATASection.cpp \ 111 dom/CSSMappedAttributeDeclaration.cpp \ 112 dom/CharacterData.cpp \ 113 dom/CheckedRadioButtons.cpp \ 114 dom/ChildNodeList.cpp \ [all …]
|
D | Android.derived.jscbindings.mk | 87 …-defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --ou… 99 $(intermediates)/dom/JSAttr.h \ 100 $(intermediates)/dom/JSBeforeLoadEvent.h \ 101 $(intermediates)/dom/JSCDATASection.h \ 102 $(intermediates)/dom/JSCharacterData.h \ 103 $(intermediates)/dom/JSClientRect.h \ 104 $(intermediates)/dom/JSClientRectList.h \ 105 $(intermediates)/dom/JSClipboard.h \ 106 $(intermediates)/dom/JSComment.h \ 107 $(intermediates)/dom/JSCustomEvent.h \ [all …]
|
D | CMakeLists.txt | 9 "${WEBCORE_DIR}/dom" 10 "${WEBCORE_DIR}/dom/default" 87 dom 129 dom/Attr.idl 130 dom/BeforeLoadEvent.idl 131 dom/CDATASection.idl 132 dom/CharacterData.idl 133 dom/ClientRect.idl 134 dom/ClientRectList.idl 135 dom/Clipboard.idl [all …]
|
D | CodeGenerators.pri | 100 dom/Attr.idl \ 101 dom/BeforeLoadEvent.idl \ 102 dom/BeforeProcessEvent.idl \ 103 dom/CharacterData.idl \ 104 dom/ClientRect.idl \ 105 dom/ClientRectList.idl \ 106 dom/Clipboard.idl \ 107 dom/CDATASection.idl \ 108 dom/Comment.idl \ 109 dom/CompositionEvent.idl \ [all …]
|
D | WebCore.pro | 449 dom/ActiveDOMObject.cpp \ 450 dom/Attr.cpp \ 451 dom/Attribute.cpp \ 452 dom/BeforeProcessEvent.cpp \ 453 dom/BeforeTextInsertedEvent.cpp \ 454 dom/BeforeUnloadEvent.cpp \ 455 dom/CDATASection.cpp \ 456 dom/CharacterData.cpp \ 457 dom/CheckedRadioButtons.cpp \ 458 dom/ChildNodeList.cpp \ [all …]
|
/external/skia/samplecode/ |
D | SampleAnimator.cpp | 57 static const SkDOMNode* find_nodeID(const SkDOM& dom, in find_nodeID() argument 60 node = dom.getRootNode(); in find_nodeID() 63 const char* idval = dom.findAttr(node, "id"); in find_nodeID() 67 const SkDOMNode* child = dom.getFirstChild(node); in find_nodeID() 69 const SkDOMNode* found = find_nodeID(dom, child, name); in find_nodeID() 74 } while ((node = dom.getNextSibling(node)) != NULL); in find_nodeID() 92 SkDOM dom; in decodeStream() local 93 const SkDOM::Node* root = dom.build(text, len); in decodeStream() 97 if (!fAnimator->decodeDOM(dom, root)) { in decodeStream() 105 const SkDOM::Node* node = find_nodeID(dom, NULL, name.c_str()); in decodeStream() [all …]
|
/external/skia/src/xml/ |
D | SkDOM.cpp | 24 bool SkXMLParser::parse(const SkDOM& dom, const SkDOMNode* node) in parse() argument 26 const char* elemName = dom.getName(node); in parse() 31 SkDOM::AttrIter iter(dom, node); in parse() 38 if ((node = dom.getFirstChild(node)) != NULL) in parse() 40 if (!this->parse(dom, node)) in parse() 42 } while ((node = dom.getNextSibling(node)) != NULL); in parse() 318 static void walk_dom(const SkDOM& dom, const SkDOM::Node* node, SkXMLParser* parser) in walk_dom() argument 320 const char* elem = dom.getName(node); in walk_dom() 324 SkDOM::AttrIter iter(dom, node); in walk_dom() 330 node = dom.getFirstChild(node, NULL); in walk_dom() [all …]
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/ |
D | script.js | 13 function computeDepth(dom) { argument 21 for (var i = 0; i < dom.length; i++) { 22 tempNode = dom[i]; 39 avgDepth = avgDepth / dom.length; 54 var dom = window.document.getElementsByTagName('*'); 58 depths = computeDepth(dom); 66 domNum: dom.length,
|
/external/kernel-headers/original/asm-arm/ |
D | domain.h | 50 #define domain_val(dom,type) ((type) << (2*(dom))) argument 62 #define modify_domain(dom,type) \ argument 66 domain &= ~domain_val(dom, DOMAIN_MANAGER); \ 67 thread->cpu_domain = domain | domain_val(dom, type); \ 73 #define modify_domain(dom,type) do { } while (0) argument
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | UnImplNode.java | 26 import org.w3c.dom.Attr; 27 import org.w3c.dom.CDATASection; 28 import org.w3c.dom.Comment; 29 import org.w3c.dom.DOMException; 30 import org.w3c.dom.DOMImplementation; 31 import org.w3c.dom.Document; 32 import org.w3c.dom.DocumentFragment; 33 import org.w3c.dom.DocumentType; 34 import org.w3c.dom.Element; 35 import org.w3c.dom.EntityReference; [all …]
|
/external/skia/include/views/ |
D | SkWidget.h | 44 virtual void onInflate(const SkDOM& dom, const SkDOM::Node* node); 66 virtual void onInflate(const SkDOM& dom, const SkDOM::Node*); 90 virtual void onInflate(const SkDOM& dom, const SkDOM::Node*); 118 virtual void onInflate(const SkDOM& dom, const SkDOM::Node*); 159 virtual void onInflate(const SkDOM& dom, const SkDOM::Node*); 240 virtual void onInflate(const SkDOM& dom, const SkDOM::Node*); 249 virtual void onInflate(const SkDOM& dom, const SkDOM::Node*); 266 virtual void onInflate(const SkDOM& dom, const SkDOM::Node*); 285 virtual void onInflate(const SkDOM& dom, const SkDOM::Node* node); 320 virtual void onInflate(const SkDOM& dom, const SkDOM::Node* node); [all …]
|
/external/icu4c/i18n/ |
D | gregoimp.h | 168 static double fieldsToDay(int32_t year, int32_t month, int32_t dom); 181 int32_t& dom, int32_t& dow, int32_t& doy); 193 int32_t& dom, int32_t& dow); 207 int32_t& dom, int32_t& dow, int32_t& doy, int32_t& mid); 224 static int32_t dayOfWeekInMonth(int32_t year, int32_t month, int32_t dom); 274 int32_t& dom, int32_t& dow) { in dayToFields() argument 276 dayToFields(day,year,month,dom,dow,doy_unused); in dayToFields()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
D | DOM2DTMdefaultNamespaceDeclarationNode.java | 26 import org.w3c.dom.Attr; 27 import org.w3c.dom.Document; 28 import org.w3c.dom.Element; 29 import org.w3c.dom.NamedNodeMap; 30 import org.w3c.dom.Node; 31 import org.w3c.dom.NodeList; 32 import org.w3c.dom.TypeInfo; 33 import org.w3c.dom.UserDataHandler; 34 import org.w3c.dom.DOMException;
|