Home
last modified time | relevance | path

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

12

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DLinkedListMultimap.java113 Node<K, V> previousSibling; // the previous node with the same key field in LinkedListMultimap.Node
146 firstNode.previousSibling = null; in KeyList()
233 node.previousSibling = keyTail; in addNode()
240 node.previousSibling = nextSibling.previousSibling; in addNode()
243 if (nextSibling.previousSibling == null) { // nextSibling was key head in addNode()
246 nextSibling.previousSibling.nextSibling = node; in addNode()
254 nextSibling.previousSibling = node; in addNode()
276 if (node.previousSibling == null && node.nextSibling == null) { in removeNode()
284 if (node.previousSibling == null) { in removeNode()
287 node.previousSibling.nextSibling = node.nextSibling; in removeNode()
[all …]
/external/guava/guava/src/com/google/common/collect/
DLinkedListMultimap.java117 Node<K, V> previousSibling; // the previous node with the same key field in LinkedListMultimap.Node
150 firstNode.previousSibling = null; in KeyList()
237 node.previousSibling = keyTail; in addNode()
244 node.previousSibling = nextSibling.previousSibling; in addNode()
247 if (nextSibling.previousSibling == null) { // nextSibling was key head in addNode()
250 nextSibling.previousSibling.nextSibling = node; in addNode()
258 nextSibling.previousSibling = node; in addNode()
280 if (node.previousSibling == null && node.nextSibling == null) { in removeNode()
288 if (node.previousSibling == null) { in removeNode()
291 node.previousSibling.nextSibling = node.nextSibling; in removeNode()
[all …]
/external/python/cpython3/Lib/xml/dom/
Dminidom.py39 previousSibling = None variable in Node
103 refChild.previousSibling = newChild
107 newChild.previousSibling = node
109 newChild.previousSibling = None
153 newChild.previousSibling = oldChild.previousSibling
155 oldChild.previousSibling = None
156 if newChild.previousSibling:
157 newChild.previousSibling.nextSibling = newChild
159 newChild.nextSibling.previousSibling = newChild
168 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/python/cpython3/Lib/test/
Dtest_minidom.py108 and nelem.previousSibling is elem
120 and nelem.previousSibling is nelem2
930 and root.firstChild.previousSibling is None
931 and root.lastChild.previousSibling is root.firstChild
950 and root.firstChild.previousSibling is None
968 and root.firstChild.previousSibling is None
986 and root.firstChild.previousSibling is None
987 and root.lastChild.previousSibling is root.firstChild
1008 and root.firstChild.previousSibling is None
1061 and root.childNodes[0].childNodes[1].previousSibling
[all …]
Dtest_pulldom.py331 self.assertIsNone(text1.previousSibling)
333 self.assertIs(elm1.previousSibling, text1)
335 self.assertIs(text2.previousSibling, elm1)
337 self.assertIsNone(text3.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()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
Dsort.js122 element = element.previousSibling;
/external/slf4j/slf4j-site/src/site/pages/js/
Djquery-min.js3previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(…
/external/testng/src/main/resources/
Djquery-1.7.1.min.js3previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(…
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/
Dapiviewer.js175previousSibling",c="*",b="nextSibling",a="parentNode";qx.Class.define(e,{statics:{getNodeIndex:fun…
/external/okhttp/website/static/
Dprettify.js27 …)+250:Infinity;i<p.length&&c.now()<b;i++){for(var d=p[i],j=h,k=d;k=k.previousSibling;){var m=k.nod…
/external/libjpeg-turbo/doc/html/
Djquery.js4 …oLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!…
5previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSi…
/external/python/cpython2/Doc/library/
Dxml.dom.rst281 .. attribute:: Node.previousSibling
294 :attr:`previousSibling`. If this is the last child of the parent, this
/external/python/cpython3/Doc/library/
Dxml.dom.rst268 .. attribute:: Node.previousSibling
281 :attr:`previousSibling`. If this is the last child of the parent, this
/external/tinyxml2/docs/
Djquery.js23previousSibling)&&bU.nodeType!==1){}bW[bS]=bX||bU&&bU.nodeName.toLowerCase()===bR?bU||false:bU===b…
/external/epid-sdk/doc/html/
Djquery.js51previousSibling)&&bU.nodeType!==1){}bW[bS]=bX||bU&&bU.nodeName.toLowerCase()===bR?bU||false:bU===b…
/external/doclava/res/assets/templates/assets/
Djquery-resizable.min.js19previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,…
/external/doclava/res/assets/templates-sdk/assets/js/
Dandroid_3p-bundle.js2478previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(…
/external/python/httplib2/doc/html/_static/
Djquery.js1687 while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {}

12