Home
last modified time | relevance | path

Searched refs:previousSibling (Results 1 – 25 of 38) sorted by relevance

12

/external/guava/android/guava/src/com/google/common/collect/
DLinkedListMultimap.java112 @NullableDecl Node<K, V> previousSibling; // the previous node with the same key field in LinkedListMultimap.Node
145 firstNode.previousSibling = null; in KeyList()
229 node.previousSibling = keyTail; in addNode()
236 node.previousSibling = nextSibling.previousSibling; in addNode()
239 if (nextSibling.previousSibling == null) { // nextSibling was key head in addNode()
242 nextSibling.previousSibling.nextSibling = node; in addNode()
250 nextSibling.previousSibling = node; in addNode()
271 if (node.previousSibling == null && node.nextSibling == null) { in removeNode()
279 if (node.previousSibling == null) { in removeNode()
282 node.previousSibling.nextSibling = node.nextSibling; in removeNode()
[all …]
/external/guava/guava/src/com/google/common/collect/
DLinkedListMultimap.java114 @Nullable Node<K, V> previousSibling; // the previous node with the same key field in LinkedListMultimap.Node
147 firstNode.previousSibling = null; in KeyList()
230 node.previousSibling = keyTail; in addNode()
237 node.previousSibling = nextSibling.previousSibling; in addNode()
240 if (nextSibling.previousSibling == null) { // nextSibling was key head in addNode()
243 nextSibling.previousSibling.nextSibling = node; in addNode()
251 nextSibling.previousSibling = node; in addNode()
272 if (node.previousSibling == null && node.nextSibling == null) { in removeNode()
280 if (node.previousSibling == null) { in removeNode()
283 node.previousSibling.nextSibling = node.nextSibling; in removeNode()
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/
DMutationObserver.js183 this.previousSibling = null;
193 record.previousSibling = original.previousSibling;
330 var previousSibling = changedNode.previousSibling;
335 record.previousSibling = previousSibling;
DMutationObserver.min.js11previousSibling=null,this.nextSibling=null,this.attributeName=null,this.attributeNamespace=null,th…
DCustomElements.js183 this.previousSibling = null;
193 record.previousSibling = original.previousSibling;
330 var previousSibling = changedNode.previousSibling;
335 record.previousSibling = previousSibling;
DHTMLImports.js183 this.previousSibling = null;
193 record.previousSibling = original.previousSibling;
330 var previousSibling = changedNode.previousSibling;
335 record.previousSibling = previousSibling;
DShadowDOM.js570 this.previousSibling = null;
629 if (data.previousSibling) record.previousSibling = data.previousSibling;
1584 previousSibling: node.previousSibling, property
1801 var previousNode = refWrapper ? refWrapper.previousSibling : this.lastChild;
1824 previousSibling: previousNode property
1846 var childWrapperPreviousSibling = childWrapper.previousSibling;
1867 previousSibling: childWrapperPreviousSibling property
1886 var previousNode = oldChildWrapper.previousSibling;
1911 previousSibling: previousNode property
1937 get previousSibling() { getter
[all …]
DShadowDOM.min.js11previousSibling=null,this.nextSibling=null,this.attributeName=null,this.attributeNamespace=null,th… property
12previousSibling;return e}var r=e.wrappers.NodeList,o={get firstElementChild(){return t(this.firstC… method in t
DCustomElements.min.js11previousSibling=null,this.nextSibling=null,this.attributeName=null,this.attributeNamespace=null,th…
DHTMLImports.min.js11previousSibling=null,this.nextSibling=null,this.attributeName=null,this.attributeNamespace=null,th…
Dwebcomponents.js613 this.previousSibling = null;
672 if (data.previousSibling) record.previousSibling = data.previousSibling;
1621 previousSibling: node.previousSibling, property
1838 var previousNode = refWrapper ? refWrapper.previousSibling : this.lastChild;
1861 previousSibling: previousNode property
1883 var childWrapperPreviousSibling = childWrapper.previousSibling;
1904 previousSibling: childWrapperPreviousSibling property
1923 var previousNode = oldChildWrapper.previousSibling;
1948 previousSibling: previousNode property
1974 get previousSibling() { getter
[all …]
Dwebcomponents.min.js11previousSibling=null,this.nextSibling=null,this.attributeName=null,this.attributeNamespace=null,th… property
12previousSibling;return e}var r=e.wrappers.NodeList,o={get firstElementChild(){return t(this.firstC… getter
Dwebcomponents-lite.js746 this.previousSibling = null;
756 record.previousSibling = original.previousSibling;
893 var previousSibling = changedNode.previousSibling;
898 record.previousSibling = previousSibling;
/external/python/cpython3/Lib/xml/dom/
Dminidom.py39 previousSibling = None variable in Node
104 refChild.previousSibling = newChild
108 newChild.previousSibling = node
110 newChild.previousSibling = None
154 newChild.previousSibling = oldChild.previousSibling
156 oldChild.previousSibling = None
157 if newChild.previousSibling:
158 newChild.previousSibling.nextSibling = newChild
160 newChild.nextSibling.previousSibling = newChild
169 oldChild.nextSibling.previousSibling = oldChild.previousSibling
[all …]
/external/python/cpython2/Lib/xml/dom/
Dminidom.py38 previousSibling = None variable in Node
102 refChild.previousSibling = newChild
106 newChild.previousSibling = node
108 newChild.previousSibling = None
152 newChild.previousSibling = oldChild.previousSibling
154 oldChild.previousSibling = None
155 if newChild.previousSibling:
156 newChild.previousSibling.nextSibling = newChild
158 newChild.nextSibling.previousSibling = newChild
167 oldChild.nextSibling.previousSibling = oldChild.previousSibling
[all …]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMDocumentImpl.java81 int previousSibling = 0; // previous sibling - no previous sibling field in DTMDocumentImpl
214 nodes.writeEntry(previousSibling,2,slotnumber); in appendNode()
2104 previousSibling = ourslot; in appendTextChild()
2127 previousSibling = ourslot; in appendComment()
2166 previousSibling = 0; in appendStartElement()
2210 previousSibling = ourslot; // Should attributes be previous siblings in appendNSDeclaration()
2248 previousSibling = ourslot; // Should attributes be previous siblings in appendAttribute()
2321 nodes.writeEntry(previousSibling, 2, NULL); in appendEndElement()
2324 previousSibling = currentParent; in appendEndElement()
/external/python/cpython2/Lib/test/
Dtest_minidom.py99 and nelem.previousSibling is elem
111 and nelem.previousSibling is nelem2
754 and root.firstChild.previousSibling is None
755 and root.lastChild.previousSibling is root.firstChild
774 and root.firstChild.previousSibling is None
792 and root.firstChild.previousSibling is None
810 and root.firstChild.previousSibling is None
811 and root.lastChild.previousSibling is root.firstChild
832 and root.firstChild.previousSibling is None
885 and root.childNodes[0].childNodes[1].previousSibling
[all …]
/external/autotest/site_utils/rpm_control_system/
DBeautifulSoup.py138 self.previousSibling = None
141 self.previousSibling = self.parent.contents[-1]
142 self.previousSibling.nextSibling = self
190 if self.previousSibling:
191 self.previousSibling.nextSibling = self.nextSibling
193 self.nextSibling.previousSibling = self.previousSibling
194 self.previousSibling = self.nextSibling = None
226 newChild.previousSibling = None
230 newChild.previousSibling = previousChild
231 newChild.previousSibling.nextSibling = newChild
[all …]
/external/llvm-project/polly/test/Isl/CodeGen/
Dselect-base-pointer.ll46 …%previousSibling = getelementptr inbounds %"DOMChildNode", %"DOMChildNode"* %retval.0.i, i32 0, i3…
47 store %"DOMNode"* %node, %"DOMNode"** %previousSibling, align 8, !tbaa !10
/external/python/cpython3/Lib/test/
Dtest_pulldom.py338 self.assertIsNone(text1.previousSibling)
340 self.assertIs(elm1.previousSibling, text1)
342 self.assertIs(text2.previousSibling, elm1)
344 self.assertIsNone(text3.previousSibling)
Dtest_minidom.py109 and nelem.previousSibling is elem
121 and nelem.previousSibling is nelem2
931 and root.firstChild.previousSibling is None
932 and root.lastChild.previousSibling is root.firstChild
951 and root.firstChild.previousSibling is None
969 and root.firstChild.previousSibling is None
987 and root.firstChild.previousSibling is None
988 and root.lastChild.previousSibling is root.firstChild
1009 and root.firstChild.previousSibling is None
1062 and root.childNodes[0].childNodes[1].previousSibling
[all …]
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
Dsort.js122 element = element.previousSibling;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
DSAX2DTM.java868 int parentIndex, int previousSibling, in addNode() argument
887 m_prevsib.addElement(previousSibling); in addNode()
890 if (DTM.NULL != previousSibling) { in addNode()
891 m_nextsib.setElementAt(nodeIndex,previousSibling); in addNode()
910 if (DTM.NULL == previousSibling && DTM.NULL != parentIndex) { in addNode()
DSAX2DTM2.java2335 int parentIndex, int previousSibling, in addNode() argument
2356 m_prevsib.addElement(previousSibling); in addNode()
2375 if (DTM.NULL != previousSibling) { in addNode()
2376 m_nextsib.setElementAt(nodeIndex,previousSibling); in addNode()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DDOM2DTM.java183 int previousSibling, int forceNodeType) in addNode() argument
250 m_prevsib.setElementAt(previousSibling,nodeIndex); in addNode()
300 if (DTM.NULL != previousSibling) in addNode()
301 m_nextsib.setElementAt(nodeIndex,previousSibling); in addNode()

12