Home
last modified time | relevance | path

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

12

/third_party/jsframework/runtime/vdom/
DNode.ts200 public set previousSibling(previousSibling: Node) { method in Node
201 this._previousSibling = previousSibling;
204 public get previousSibling() { method in Node
DElement.ts385 target.previousSibling = before;
387 after && (after.previousSibling = target);
411 after && (after.previousSibling = before);
425 target.previousSibling = beforeNew;
428 afterNew.previousSibling = target;
454 after && (after.previousSibling = before);
483 node = node.previousSibling;
592 if (node === after || node.previousSibling && node.previousSibling === after) {
/third_party/python/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 …]
/third_party/parse5/packages/parse5-htmlparser2-tree-adapter/docs/
Ddocument-fragment.md16 * [previousSibling](#previoussibling)
124 ### previousSibling subsection
126 **● previousSibling**: *Node*
Ddocument-type.md13 * [previousSibling](#previoussibling)
97 ### previousSibling subsection
99 **● previousSibling**: *Node*
Dcomment-node.md14 * [previousSibling](#previoussibling)
105 ### previousSibling subsection
107 **● previousSibling**: *Node*
Dtext-node.md14 * [previousSibling](#previoussibling)
105 ### previousSibling subsection
107 **● previousSibling**: *Node*
Ddocument.md16 * [previousSibling](#previoussibling)
125 ### previousSibling subsection
127 **● previousSibling**: *Node*
Delement.md18 * [previousSibling](#previoussibling)
152 ### previousSibling subsection
154 **● previousSibling**: *Node*
/third_party/python/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 …]
/third_party/flutter/flutter/packages/flutter/test/rendering/
Dobject_test.dart91 ..previousSibling = RenderOpacity();
95 ..previousSibling = RenderOpacity();
/third_party/typescript/tests/baselines/reference/
DmappedTypeRecursiveInference.types94 …any; readonly parentElement: any; readonly parentNode: any; readonly previousSibling: any; textCon…
95 …any; readonly parentElement: any; readonly parentNode: any; readonly previousSibling: any; textCon…
100previousSibling: any; textContent: any; appendChild: any; cloneNode: any; compareDocumentPosition:…
101 …any; readonly parentElement: any; readonly parentNode: any; readonly previousSibling: any; textCon…
102previousSibling: any; textContent: any; appendChild: any; cloneNode: any; compareDocumentPosition:…
107previousSibling: any; textContent: any; appendChild: any; cloneNode: any; compareDocumentPosition:…
108previousSibling: any; textContent: any; appendChild: any; cloneNode: any; compareDocumentPosition:…
109 …any; readonly parentElement: any; readonly parentNode: any; readonly previousSibling: any; textCon…
110previousSibling: any; textContent: any; appendChild: any; cloneNode: any; compareDocumentPosition:…
111previousSibling: any; textContent: any; appendChild: any; cloneNode: any; compareDocumentPosition:…
DmappedTypeRecursiveInference.errors.txt1 …any; readonly parentElement: any; readonly parentNode: any; readonly previousSibling: any; textCon…
2 …any; readonly parentElement: any; readonly parentNode: any; readonly previousSibling: any; textCon…
26 …any; readonly parentElement: any; readonly parentNode: any; readonly previousSibling: any; textCon…
28 …any; readonly parentElement: any; readonly parentNode: any; readonly previousSibling: any; textCon…
/third_party/typescript/src/compiler/
Demitter.ts4178 let previousSibling: Node | undefined;
4190 else if (previousSibling) {
4197 … if (format & ListFormat.DelimitersMask && previousSibling.end !== parentNode.end) {
4198 emitLeadingCommentsOfPosition(previousSibling.end);
4204 …nst separatingLineTerminatorCount = getSeparatingLineTerminatorCount(previousSibling, child, forma…
4216 else if (previousSibling && format & ListFormat.SpaceBetweenSiblings) {
4241 previousSibling = child;
4245 const emitFlags = previousSibling ? getEmitFlags(previousSibling) : 0;
4249 if (previousSibling && !skipTrailingComments) {
4250 …emitTokenWithComment(SyntaxKind.CommaToken, previousSibling.end, writePunctuation, previousSibling
[all …]
/third_party/node/test/fixtures/wpt/interfaces/
Ddom.idl191 readonly attribute Node? previousSibling;
226 readonly attribute Node? previousSibling;
530 Node? previousSibling();
/third_party/parse5/packages/parse5-htmlparser2-tree-adapter/lib/
Dindex.js18 previousSibling: 'prev', property
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Dobject.dart2917 ChildType previousSibling;
2924 …assert(previousSibling == null, 'Pointers to siblings must be nulled before detaching ParentData.'…
2937 while (childParentData.previousSibling != null) {
2938 assert(childParentData.previousSibling != child);
2939 child = childParentData.previousSibling;
3003 assert(childParentData.previousSibling == null);
3011 _firstChildParentData.previousSibling = child;
3024 childParentData.previousSibling = after;
3031 childParentData.previousSibling = after;
3033 … final ParentDataType childPreviousSiblingParentData = childParentData.previousSibling.parentData;
[all …]
Dlayer.dart189 Layer get previousSibling => _previousSibling;
607 while (child.previousSibling != null) {
608 assert(child.previousSibling != child);
609 child = child.previousSibling;
738 current = current.previousSibling;
753 child = child.previousSibling;
786 assert(child.previousSibling == null);
817 _lastChild = child.previousSibling;
819 child.nextSibling._previousSibling = child.previousSibling;
/third_party/flutter/flutter/examples/layers/rendering/src/
Dsector_layout.dart212 child = childParentData.previousSibling;
222 child = childParentData.previousSibling;
/third_party/typescript/src/compiler/transformers/
Ddeclarations.ts18 …const previousSibling = paramIdx > 0 ? (parseTreeNode.parent as SignatureDeclaration).parameters[p… constant
20 const commentRanges = previousSibling
25 …getTrailingCommentRanges(text, skipTrivia(text, previousSibling.end + 1, /* stopAfterLineBreak */ …
/third_party/flutter/skia/third_party/externals/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…
/third_party/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…
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/
Dsegmented_control.dart728 child = childParentData.previousSibling;
/third_party/python/Doc/library/
Dxml.dom.rst268 .. attribute:: Node.previousSibling
281 :attr:`previousSibling`. If this is the last child of the parent, this

12