/external/jsoncpp/src/test_lib_json/ |
D | jsontest.cpp | 101 PredicateContext *lastNode = rootPredicateNode_.next_; in addFailure() local 102 for ( ; lastNode != 0; lastNode = lastNode->next_ ) in addFailure() 104 if ( lastNode->id_ > lastUsedPredicateId_ ) // new PredicateContext in addFailure() 106 lastUsedPredicateId_ = lastNode->id_; in addFailure() 107 addFailureInfo( lastNode->file_, lastNode->line_, lastNode->expr_, in addFailure() 111 lastNode->failure_ = &( failures_.back() ); in addFailure() 142 PredicateContext *lastNode = &rootPredicateNode_; in popPredicateContext() local 143 while ( lastNode->next_ != 0 && lastNode->next_->next_ != 0 ) in popPredicateContext() 145 lastNode = lastNode->next_; in popPredicateContext() 148 PredicateContext *tail = lastNode->next_; in popPredicateContext() [all …]
|
/external/chromium-trace/trace-viewer/src/tracing/analysis/ |
D | analysis_results_test.js | 36 node = table.lastNode; 42 node = table.lastNode; 48 node = table.lastNode; 54 node = table.lastNode; 60 node = table.lastNode;
|
D | stub_analysis_table.js | 25 get lastNode() { getter in StubAnalysisTable
|
/external/mesa3d/src/gallium/auxiliary/cso_cache/ |
D | cso_hash.c | 155 struct cso_node *lastNode = firstNode; in cso_data_rehash() local 159 while (lastNode->next != e && lastNode->next->key == h) in cso_data_rehash() 160 lastNode = lastNode->next; in cso_data_rehash() 162 afterLastNode = lastNode->next; in cso_data_rehash() 166 lastNode->next = *beforeFirstNode; in cso_data_rehash()
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/ |
D | cso_hash.c | 155 struct cso_node *lastNode = firstNode; in cso_data_rehash() local 159 while (lastNode->next != e && lastNode->next->key == h) in cso_data_rehash() 160 lastNode = lastNode->next; in cso_data_rehash() 162 afterLastNode = lastNode->next; in cso_data_rehash() 166 lastNode->next = *beforeFirstNode; in cso_data_rehash()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
D | CanvasProfileView.js | 268 var lastNode = this._logGrid.rootNode().children.peekLast(); 269 if (!lastNode) 271 while (lastNode.expanded) { 272 var lastChild = lastNode.children.peekLast(); 275 lastNode = lastChild; 277 lastNode.revealAndSelect(); 442 var lastNode; 443 while ((lastNode = drawCallGroup.children[splitIndex + 1])) 444 newDrawCallGroup.appendChild(lastNode);
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | CompositeEditCommand.cpp | 985 RefPtrWillBeRawPtr<Node> lastNode = nullptr; in cloneParagraphUnderNewElement() local 989 lastNode = blockElement; in cloneParagraphUnderNewElement() 991 lastNode = outerNode->cloneNode(isRenderedTableElement(outerNode.get())); in cloneParagraphUnderNewElement() 992 appendNode(lastNode, blockElement); in cloneParagraphUnderNewElement() 995 …if (start.anchorNode() != outerNode && lastNode->isElementNode() && start.anchorNode()->isDescenda… in cloneParagraphUnderNewElement() 1007 appendNode(child, toElement(lastNode)); in cloneParagraphUnderNewElement() 1008 lastNode = child.release(); in cloneParagraphUnderNewElement() 1036 while (startNode && lastNode && startNode->parentNode() != node->parentNode()) { in cloneParagraphUnderNewElement() 1038 lastNode = lastNode->parentNode(); in cloneParagraphUnderNewElement() 1041 if (!lastNode || !lastNode->parentNode()) in cloneParagraphUnderNewElement() [all …]
|
D | ReplaceSelectionCommand.cpp | 1446 Node* lastNode = insertionBlock; in insertAsListItems() local 1454 splitTreeToNode(insertPos.deprecatedNode(), lastNode, true); in insertAsListItems() 1460 insertNodeBefore(listItem, lastNode); in insertAsListItems() 1463 insertNodeAfter(listItem, lastNode); in insertAsListItems() 1465 lastNode = listItem.get(); in insertAsListItems() 1470 if (Node* node = lastNode->previousSibling()) in insertAsListItems() 1473 return lastNode; in insertAsListItems()
|
/external/chromium_org/ui/file_manager/file_manager/foreground/js/photo/ |
D | ribbon.js | 118 var lastNode = persistentNodes[persistentNodes.length - 1]; 119 if (lastNode.nextSibling) { 121 lastNode.nextSibling.removeAttribute('vanishing');
|
/external/chromium_org/ui/file_manager/gallery/js/ |
D | ribbon.js | 118 var lastNode = persistentNodes[persistentNodes.length - 1]; 119 if (lastNode.nextSibling) { 121 lastNode.nextSibling.removeAttribute('vanishing');
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | TextAutosizer.cpp | 770 const RenderObject* lastNode = lastTextLeaf; in findDeepestBlockContainingAllText() local 776 lastNode = lastNode->parent(); in findDeepestBlockContainingAllText() 781 while (firstNode != lastNode) { in findDeepestBlockContainingAllText() 783 lastNode = lastNode->parent(); in findDeepestBlockContainingAllText()
|
D | FastTextAutosizer.cpp | 893 const RenderObject* lastNode = lastTextLeaf; in deepestBlockContainingAllText() local 899 lastNode = lastNode->parent(); in deepestBlockContainingAllText() 904 while (firstNode != lastNode) { in deepestBlockContainingAllText() 906 lastNode = lastNode->parent(); in deepestBlockContainingAllText()
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | LinkedHashSet.h | 197 reverse_iterator rbegin() { return makeReverseIterator(lastNode()); } in rbegin() 199 const_reverse_iterator rbegin() const { return makeConstReverseIterator(lastNode()); } in rbegin() 258 Node* lastNode() { return reinterpret_cast<Node*>(m_anchor.m_prev); } in lastNode() function 259 const Node* lastNode() const { return reinterpret_cast<const Node*>(m_anchor.m_prev); } in lastNode() function 545 return lastNode()->m_value; in last() 552 return lastNode()->m_value; in last()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | Position.cpp | 570 Node* lastNode = startNode; in upstream() local 577 if (currentNode != lastNode) { in upstream() 585 lastNode = currentNode; in upstream() 693 Node* lastNode = startNode; in downstream() local 700 if (currentNode != lastNode) { in downstream() 709 lastNode = currentNode; in downstream()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLElement.cpp | 632 static void setHasDirAutoFlagRecursively(Node* firstNode, bool flag, Node* lastNode = 0) in setHasDirAutoFlagRecursively() argument 640 if (node == lastNode) in setHasDirAutoFlagRecursively() 646 if (node == lastNode) in setHasDirAutoFlagRecursively()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
D | SAX2DTM.java | 2039 int lastNode = m_previous; in endElement() local 2044 if (DTM.NULL == lastNode) in endElement() 2047 m_nextsib.setElementAt(DTM.NULL,lastNode); in endElement()
|
/external/libxml2/include/libxml/ |
D | parserInternals.h | 598 xmlNodePtr lastNode);
|
/external/chromium_org/third_party/libxml/src/include/libxml/ |
D | parserInternals.h | 565 xmlNodePtr lastNode);
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | HTMLTreeBuilder.cpp | 1521 HTMLElementStack::ElementRecord* lastNode = furthestBlock; in callTheAdoptionAgency() local 1545 if (lastNode == furthestBlock) in callTheAdoptionAgency() 1548 m_tree.reparent(node, lastNode); in callTheAdoptionAgency() 1550 lastNode = node; in callTheAdoptionAgency() 1553 m_tree.insertAlreadyParsedChild(commonAncestor.get(), lastNode); in callTheAdoptionAgency()
|
/external/chromium_org/third_party/libxml/src/ |
D | parser.c | 220 xmlNodePtr lastNode); 14117 xmlNodePtr lastNode) in xmlAddEntityReference() argument 14120 (*xmlEntityRefFunc) (ent, firstNode, lastNode); in xmlAddEntityReference()
|
/external/libxml2/ |
D | parser.c | 255 xmlNodePtr lastNode); 14648 xmlNodePtr lastNode) in xmlAddEntityReference() argument 14651 (*xmlEntityRefFunc) (ent, firstNode, lastNode); in xmlAddEntityReference()
|
/external/chromium_org/third_party/polymer/platform/ |
D | platform.js | 37 …lastNode:null,model:a},i=0,j=!1,k=d.firstChild;k;k=k.nextSibling){null===k.nextSibling&&(j=!0);var… property
|
D | platform.js.map | 1 …lastNode, model) {\n // TODO(rafaelw): firstNode & lastNode should be read-synchronous\n // …
|