/external/webkit/Source/WebCore/editing/ |
D | InsertListCommand.cpp | 40 static Node* enclosingListChild(Node* node, Node* listNode) in enclosingListChild() argument 43 while (listChild && enclosingList(listChild) != listNode) in enclosingListChild() 92 Element* listNode = enclosingList(start.deepEquivalent().deprecatedNode()); in selectionHasListOfType() local 93 if (!listNode || !listNode->hasTagName(listTag)) in selectionHasListOfType() 199 RefPtr<HTMLElement> listNode = enclosingList(listChildNode); in doApplyForSingleParagraph() local 200 if (!listNode) { in doApplyForSingleParagraph() 201 listNode = fixOrphanedListChild(listChildNode); in doApplyForSingleParagraph() 202 listNode = mergeWithNeighboringLists(listNode); in doApplyForSingleParagraph() 204 if (!listNode->hasTagName(listTag)) in doApplyForSingleParagraph() 213 if (switchListType && isNodeVisiblyContainedWithin(listNode.get(), currentSelection)) { in doApplyForSingleParagraph() [all …]
|
D | ModifySelectionListLevel.cpp | 263 Element* listNode = startListChild->parentElement(); in doApply() local 267 insertSiblingNodeRangeBefore(startListChild, endListChild, listNode); in doApply() 270 removeNode(listNode); in doApply() 273 insertSiblingNodeRangeAfter(startListChild, endListChild, listNode); in doApply() 274 } else if (listNode) { in doApply() 276 splitElement(listNode, startListChild); in doApply() 277 insertSiblingNodeRangeBefore(startListChild, endListChild, listNode); in doApply()
|
D | CompositeEditCommand.cpp | 1047 ContainerNode* listNode = emptyListItem->parentNode(); in breakOutOfEmptyListItem() local 1049 if (!listNode in breakOutOfEmptyListItem() 1050 || (!listNode->hasTagName(ulTag) && !listNode->hasTagName(olTag)) in breakOutOfEmptyListItem() 1051 || !listNode->rendererIsEditable() in breakOutOfEmptyListItem() 1052 || listNode == emptyListItem->rootEditableElement()) in breakOutOfEmptyListItem() 1056 if (ContainerNode* blockEnclosingList = listNode->parentNode()) { in breakOutOfEmptyListItem() 1058 … if (visiblePositionAfterNode(blockEnclosingList) == visiblePositionAfterNode(listNode)) { in breakOutOfEmptyListItem() 1063 splitElement(static_cast<Element*>(blockEnclosingList), listNode); in breakOutOfEmptyListItem() 1064 removeNodePreservingChildren(listNode->parentNode()); in breakOutOfEmptyListItem() 1077 splitElement(static_cast<Element*>(listNode), emptyListItem); in breakOutOfEmptyListItem() [all …]
|
D | IndentOutdentCommand.cpp | 63 RefPtr<Element> listNode = enclosingList(lastNodeInSelectedParagraph); in tryIndentingAsListItem() local 64 if (!listNode) in tryIndentingAsListItem() 78 RefPtr<Element> newList = document()->createElement(listNode->tagQName(), false); in tryIndentingAsListItem()
|
D | InsertListCommand.h | 58 …void unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChi…
|
/external/webkit/Source/WebCore/html/ |
D | HTMLLIElement.cpp | 100 Node* listNode = 0; in attach() local 102 while (!listNode && (n = n->parentNode())) { in attach() 104 listNode = n; in attach() 109 if (!listNode) in attach()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderListItem.cpp | 391 Node* listNode = enclosingList(this); in explicitValueChanged() local 393 if (listNode) in explicitValueChanged() 394 listRenderer = listNode->renderer(); in explicitValueChanged() 431 Node* listNode = enclosingList(this); in updateListMarkerNumbers() local 432 ASSERT(listNode && listNode->renderer()); in updateListMarkerNumbers() 433 if (!listNode || !listNode->renderer()) in updateListMarkerNumbers() 436 RenderObject* list = listNode->renderer(); in updateListMarkerNumbers()
|
/external/icu4c/common/ |
D | stringtriebuilder.cpp | 280 ListBranchNode *listNode=new ListBranchNode(); in makeBranchSubNode() local 281 if(listNode==NULL) { in makeBranchSubNode() 292 listNode->add(unit, getElementValue(start)); in makeBranchSubNode() 294 listNode->add(unit, makeNode(start, i, unitIndex+1, errorCode)); in makeBranchSubNode() 301 listNode->add(unit, getElementValue(start)); in makeBranchSubNode() 303 listNode->add(unit, makeNode(start, limit, unitIndex+1, errorCode)); in makeBranchSubNode() 305 Node *node=registerNode(listNode, errorCode); in makeBranchSubNode()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | treeoutline.js | 29 function TreeOutline(listNode) argument 33 this._childrenListNode = listNode; 335 var listNode = node.enclosingNodeOrSelfWithNodeNameInArray(["ol", "li"]); 336 if (listNode) 337 return listNode.parentTreeElement || listNode.treeElement;
|
D | ResourcesPanel.js | 778 var listNode = nodeUnderMouse.enclosingNodeOrSelfWithNodeName("li"); 779 if (!listNode) 782 var element = listNode.treeElement;
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | NodeConstructors.h | 206 …inline ArgumentListNode::ArgumentListNode(JSGlobalData* globalData, ArgumentListNode* listNode, Ex… in ArgumentListNode() argument 211 listNode->m_next = this; in ArgumentListNode() 219 inline ArgumentsNode::ArgumentsNode(JSGlobalData*, ArgumentListNode* listNode) in ArgumentsNode() argument 220 : m_listNode(listNode) in ArgumentsNode()
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/ |
D | Parser.java | 40 …private void push(int numstate, ArrayList listNode) throws ParserException, LexerException, IOExce… in push() argument 42 this.nodeList = listNode; in push()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2008-08-10 | 34426 (TreeOutline.prototype.treeElementFromPoint): Check listNode for null/undefined 34427 before accessing any properties. Return null if listNode is null. 65141 it and listNode, if they exists, so that moving listChildNode doesn't put it out
|