/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/ |
D | DOMStorageItemsView.js | 98 var childNode = children[i]; 99 if (childNode.data.key === storageData.key) { 100 rootNode.removeChild(childNode); 126 …var childNode = new WebInspector.DataGridNode({key: storageData.key, value: storageData.value}, fa… 127 rootNode.insertChild(childNode, children.length - 1); 146 var childNode = children[i]; 147 if (childNode.data.key === storageData.key) { 149 rootNode.removeChild(childNode); 153 if (childNode.data.value !== storageData.value) { 154 childNode.data.value = storageData.value; [all …]
|
/external/chromium_org/chrome/renderer/resources/extensions/automation/ |
D | automation_node.js | 462 var childNode = this.axNodeDataCache_[childId]; 463 if (childNode) { 464 if (childNode.parent() != node) { 466 if (childNode.parent()) { 467 var parentImpl = privates(childNode.parent()).impl; 483 childNode = new AutomationNode(this); 484 this.axNodeDataCache_[childId] = childNode; 485 privates(childNode).impl.id = childId; 486 updateState.pendingNodes[childId] = childNode; 487 updateState.newNodes[childId] = childNode; [all …]
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
D | PluralResourceLoader.java | 41 Node childNode = childNodes.item(j); in processNode() local 42 String value = childNode.getTextContent(); in processNode() 43 String quantity = childNode.getAttributes().getNamedItem("quantity").getTextContent(); in processNode()
|
D | StringArrayResourceLoader.java | 34 Node childNode = childNodes.item(j); in processNode() local 36 String value = childNode.getTextContent(); in processNode()
|
/external/chromium_org/ui/accessibility/extensions/caretbrowsing/ |
D | traverse_util.js | 161 var childNode = null; 170 childNode = node; 175 if (childNode) { 176 cursor.node = childNode; 243 var childNode = null; 252 childNode = node; 257 if (childNode) { 258 cursor.node = childNode;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
D | CanvasReplayStateView.js | 364 var childNode = this._createDataGridNode(descriptor); 365 parent.appendChild(childNode); 366 var oldChildrenItem = oldChildren[childNode.name] || {}; 368 … if (!oldChildNode || oldChildNode.element().textContent !== childNode.element().textContent) 369 nodesToHighlight.push(childNode); 370 … appendResourceStateDescriptors.call(this, descriptor.values, childNode, oldChildrenItem.children);
|
D | HeapSnapshotGridNodes.js | 768 _childHashForNode: function(childNode) argument 770 return childNode._edgeIndex; 982 _childHashForNode: function(childNode) argument 984 return childNode._edgeIndex; 1160 _childHashForNode: function(childNode) argument 1162 return childNode.snapshotNodeId; 1367 _childHashForNode: function(childNode) argument 1369 return childNode.snapshotNodeId;
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
D | traverse_util.js | 123 var childNode = null; 134 childNode = node; 139 if (childNode) { 140 cursor.node = childNode; 217 var childNode = null; 228 childNode = node; 233 if (childNode) { 234 cursor.node = childNode;
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | DOMBuilder.java | 481 Node childNode; in characters() local 482 childNode = m_currentNode != null ? m_currentNode.getLastChild(): null; in characters() 483 if( childNode != null && childNode.getNodeType() == Node.TEXT_NODE ){ in characters() 484 ((Text)childNode).appendData(s); in characters()
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | XMPNodeUtils.java | 168 XMPNode childNode = parent.findChildByName(childName); in findChildNode() local 170 if (childNode == null && createNodes) in findChildNode() 173 childNode = new XMPNode(childName, options); in findChildNode() 174 childNode.setImplicit(true); in findChildNode() 175 parent.addChild(childNode); in findChildNode() 178 assert childNode != null || !createNodes; in findChildNode() 180 return childNode; in findChildNode()
|
D | ParseRDF.java | 910 XMPNode childNode = addChildNode(xmp, xmpParent, xmlNode, "", isTopLevel); in rdf_EmptyPropertyElement() local 915 childNode.setValue(valueNode != null ? valueNode.getNodeValue() : ""); in rdf_EmptyPropertyElement() 919 childNode.getOptions().setURI(true); in rdf_EmptyPropertyElement() 924 childNode.getOptions().setStruct(true); in rdf_EmptyPropertyElement() 947 addQualifierNode(childNode, "rdf:resource", attribute.getNodeValue()); in rdf_EmptyPropertyElement() 954 childNode, attribute.getNodeName(), attribute.getNodeValue()); in rdf_EmptyPropertyElement() 958 addQualifierNode (childNode, XML_LANG, attribute.getNodeValue()); in rdf_EmptyPropertyElement() 962 addChildNode (xmp, childNode, attribute, attribute.getNodeValue(), false); in rdf_EmptyPropertyElement()
|
D | XMPNormalizer.java | 417 private static void transplantArrayItemAlias(Iterator propertyIt, XMPNode childNode, in transplantArrayItemAlias() argument 422 if (childNode.getOptions().getHasLanguage()) in transplantArrayItemAlias() 429 childNode.addQualifier(langQual); in transplantArrayItemAlias() 433 childNode.setName(XMPConst.ARRAY_ITEM_NAME); in transplantArrayItemAlias() 434 baseArray.addChild(childNode); in transplantArrayItemAlias()
|
/external/chromium_org/chrome/browser/ui/cocoa/content_settings/ |
D | cookie_tree_node.mm | 46 base::scoped_nsobject<CocoaCookieTreeNode> childNode( 48 [children_ addObject:childNode.get()];
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | plurrule.cpp | 735 childNode=NULL; in OrConstraint() 740 if ( other.childNode == NULL ) { in OrConstraint() 741 this->childNode = NULL; in OrConstraint() 744 this->childNode = new AndConstraint(*(other.childNode)); in OrConstraint() 755 if (childNode!=NULL) { in ~OrConstraint() 756 delete childNode; in ~OrConstraint() 771 U_ASSERT(curOrConstraint->childNode == NULL); in add() 772 curOrConstraint->childNode = new AndConstraint(); in add() 774 return curOrConstraint->childNode; in add() 784 AndConstraint* andRule = orRule->childNode; in isFulfilled() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | plurrule.cpp | 838 childNode=NULL; in OrConstraint() 843 if ( other.childNode == NULL ) { in OrConstraint() 844 this->childNode = NULL; in OrConstraint() 847 this->childNode = new AndConstraint(*(other.childNode)); in OrConstraint() 858 if (childNode!=NULL) { in ~OrConstraint() 859 delete childNode; in ~OrConstraint() 874 U_ASSERT(curOrConstraint->childNode == NULL); in add() 875 curOrConstraint->childNode = new AndConstraint(); in add() 877 return curOrConstraint->childNode; in add() 887 AndConstraint* andRule = orRule->childNode; in isFulfilled() [all …]
|
D | plurrule_impl.h | 240 AndConstraint *childNode;
|
/external/chromium_org/tools/grit/grit/tool/ |
D | android2grd.py | 384 for childNode in placeholder_node.childNodes: 385 if childNode.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE): 386 text.append(childNode.data) 387 elif childNode.nodeType != Node.COMMENT_NODE:
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/ |
D | RobolectricConfig.java | 149 Node childNode = node.getChildNodes().item(i); in getChildrenTags() local 150 if (childNode.getNodeName().equalsIgnoreCase(tagName)) { in getChildrenTags() 151 children.add(childNode); in getChildrenTags()
|
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_editor_base_controller.mm | 514 const BookmarkNode* childNode = node->GetChild(i); 515 if (childNode->is_folder() && childNode->IsVisible() && 516 client->CanBeEditedByUser(childNode)) { 517 NSString* childName = base::SysUTF16ToNSString(childNode->GetTitle()); 518 NSMutableArray* children = [self addChildFoldersFromNode:childNode]; 521 folderNode:childNode
|
/external/chromium_org/gpu/tools/compositor_model_bench/ |
D | render_tree.cc | 360 base::DictionaryValue* childNode; in InterpretContentLayer() local 361 children->GetDictionary(i, &childNode); in InterpretContentLayer() 362 RenderNode* child = InterpretNode(childNode); in InterpretContentLayer()
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
D | DateTimeEditElement.cpp | 695 …for (Node* childNode = fieldsWrapper->firstChild(); childNode; childNode = fieldsWrapper->firstChi… in layout() local 696 fieldsWrapper->removeChild(childNode); in layout() 697 if (childNode == lastChildToBeRemoved) in layout()
|
/external/deqp/framework/common/ |
D | tcuTestExecutor.cpp | 352 TestNode* childNode = iter.children[iter.curChildNdx]; in iterate() local 353 m_sessionStack.push_back(NodeIter(childNode)); in iterate()
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
D | Intermediate.cpp | 172 TOperator op, TIntermNode *childNode, const TSourceLoc &line) in addUnaryMath() argument 175 TIntermTyped *child = childNode->getAsTyped(); in addUnaryMath()
|
/external/chromium_org/third_party/readability/js/ |
D | readability.js | 596 var childNode = node.childNodes[i]; 597 if(childNode.nodeType === 3) { // Node.TEXT_NODE 599 var t = document.createTextNode(childNode.nodeValue); 603 childNode.parentNode.replaceChild(p, childNode);
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | ApplyStyleCommand.cpp | 1150 RefPtrWillBeRawPtr<Node> childNode = nullptr; in removeInlineStyle() local 1153 childNode = elem->firstChild(); in removeInlineStyle() 1174 for (; childNode; childNode = childNode->nextSibling()) in removeInlineStyle() 1175 applyInlineStyleToPushDown(childNode.get(), styleToPushDown.get()); in removeInlineStyle()
|