Home
last modified time | relevance | path

Searched refs:nextSibling (Results 1 – 25 of 51) sorted by relevance

123

/third_party/jsframework/runtime/vdom/
DNode.ts188 public set nextSibling(nextSibling: Node) { method in Node
189 this._nextSibling = nextSibling;
192 public get nextSibling() { method in Node
DElement.ts377 before && (before.nextSibling = target);
379 target.nextSibling = after;
403 before && (before.nextSibling = after);
416 beforeNew.nextSibling = target;
419 target.nextSibling = afterNew;
446 before && (before.nextSibling = after);
462 node = node.nextSibling;
527 if (node === before || node.nextSibling && node.nextSibling === before) {
/third_party/python/Lib/xml/dom/
Dminidom.py38 nextSibling = None variable in Node
103 newChild.nextSibling = refChild
107 node.nextSibling = newChild
128 node.nextSibling = None
133 refChild = oldChild.nextSibling
153 newChild.nextSibling = oldChild.nextSibling
155 oldChild.nextSibling = None
158 newChild.previousSibling.nextSibling = newChild
159 if newChild.nextSibling:
160 newChild.nextSibling.previousSibling = newChild
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Dlist_body.dart121 child = childParentData.nextSibling;
132 child = childParentData.nextSibling;
141 child = childParentData.nextSibling;
153 child = childParentData.nextSibling;
164 child = childParentData.nextSibling;
173 child = childParentData.nextSibling;
193 child = childParentData.nextSibling;
204 child = childParentData.nextSibling;
Dobject.dart2919 ChildType nextSibling;
2925 assert(nextSibling == null, 'Pointers to siblings must be nulled before detaching ParentData.');
2946 while (childParentData.nextSibling != null) {
2947 assert(childParentData.nextSibling != child);
2948 child = childParentData.nextSibling;
3002 assert(childParentData.nextSibling == null);
3008 childParentData.nextSibling = _firstChild;
3021 if (afterParentData.nextSibling == null) {
3025 afterParentData.nextSibling = child;
3030 childParentData.nextSibling = afterParentData.nextSibling;
[all …]
Dflex.dart506 child = childParentData.nextSibling;
541 child = childParentData.nextSibling;
556 child = childParentData.nextSibling;
749 child = childParentData.nextSibling;
834 child = childParentData.nextSibling;
936 child = childParentData.nextSibling;
Dlayer.dart185 Layer get nextSibling => _nextSibling;
726 child = child.nextSibling;
764 child = child.nextSibling;
774 child = child.nextSibling;
785 assert(child.nextSibling == null);
813 child._previousSibling._nextSibling = child.nextSibling;
819 child.nextSibling._previousSibling = child.previousSibling;
836 final Layer next = child.nextSibling;
867 child = child.nextSibling;
921 child = child.nextSibling;
[all …]
Dstack.dart443 child = childParentData.nextSibling;
517 child = childParentData.nextSibling;
579 child = childParentData.nextSibling;
662 child = childParentData.nextSibling;
/third_party/jsframework/runtime/main/model/
DdomHelper.ts197 el = el.nextSibling;
252 let el = fragBlock.start.nextSibling;
255 el = el.nextSibling;
Dcompiler.ts257 if (child.nextSibling) {
258 const el = child.nextSibling as Element;
259 const tag = child.type + '+' + child.nextSibling.type;
271 if (child.nextSibling) {
272 const el = child.nextSibling as Element;
273 const tag = child.type + '+' + child.nextSibling.type;
/third_party/python/Lib/test/
Dtest_minidom.py120 and nelem2.nextSibling is nelem
930 and root.firstChild.nextSibling is root.lastChild
933 and root.lastChild.nextSibling is None
950 and root.firstChild.nextSibling is None
968 and root.firstChild.nextSibling is None
986 and root.firstChild.nextSibling is root.lastChild
989 and root.lastChild.nextSibling is None
1010 and root.firstChild.nextSibling is None
1061 self.confirm(root.childNodes[0].childNodes[1].nextSibling is None
1065 and root.childNodes[0].childNodes[0].nextSibling
[all …]
Dtest_pulldom.py339 self.assertIs(text1.nextSibling, elm1)
341 self.assertIs(elm1.nextSibling, text2)
343 self.assertIsNone(text2.nextSibling)
345 self.assertIsNone(text3.nextSibling)
/third_party/libjpeg-turbo/doc/html/search/
Dsearch.js451 else if (element.nextSibling)
453 element = element.nextSibling;
461 while (element && element!=parentElement && !element.nextSibling);
465 element = element.nextSibling;
/third_party/libevdev/doc/html/search/
Dsearch.js453 else if (element.nextSibling)
455 element = element.nextSibling;
463 while (element && element!=parentElement && !element.nextSibling);
467 element = element.nextSibling;
/third_party/skia/third_party/externals/oboe/docs/reference/search/
Dsearch.js451 else if (element.nextSibling)
453 element = element.nextSibling;
461 while (element && element!=parentElement && !element.nextSibling);
465 element = element.nextSibling;
/third_party/flutter/flutter/examples/layers/rendering/src/
Dsector_layout.dart286 child = childParentData.nextSibling;
320 child = childParentData.nextSibling;
339 child = childParentData.nextSibling;
400 child = childParentData.nextSibling;
431 child = childParentData.nextSibling;
449 child = childParentData.nextSibling;
/third_party/vk-gl-cts/framework/delibs/coding_guidelines/
Dprettify.js7 …d)continue;a.push(" ");z(g,a)}a.push(">");for(var e=b.firstChild;e;e=e.nextSibling)z(e,a);if(b.fir…
8 …nnerHTML;if(S(b))c=E(c);return c}var d=[];for(var g=b.firstChild;g;g=g.nextSibling)z(g,d);return d…
/third_party/flutter/flutter/packages/flutter/test/rendering/
Dobject_test.dart90 ..nextSibling = RenderOpacity()
99 ..nextSibling = RenderOpacity();
/third_party/typescript/tests/baselines/reference/
DmappedTypeRecursiveInference.types94 …ed: any; readonly lastChild: any; readonly namespaceURI: any; readonly nextSibling: any; readonly …
95 …ed: any; readonly lastChild: any; readonly namespaceURI: any; readonly nextSibling: any; readonly …
100nextSibling: any; readonly nodeName: any; readonly nodeType: any; nodeValue: any; readonly parentE…
101 …ed: any; readonly lastChild: any; readonly namespaceURI: any; readonly nextSibling: any; readonly …
102nextSibling: any; readonly nodeName: any; readonly nodeType: any; nodeValue: any; readonly parentE…
107nextSibling: any; readonly nodeName: any; readonly nodeType: any; nodeValue: any; readonly parentE…
108nextSibling: any; readonly nodeName: any; readonly nodeType: any; nodeValue: any; readonly parentE…
109 …ed: any; readonly lastChild: any; readonly namespaceURI: any; readonly nextSibling: any; readonly …
110nextSibling: any; readonly nodeName: any; readonly nodeType: any; nodeValue: any; readonly parentE…
111nextSibling: any; readonly nodeName: any; readonly nodeType: any; nodeValue: any; readonly parentE…
/third_party/node/deps/npm/node_modules/mute-stream/coverage/lcov-report/
Dprettify.js1nextSibling){aa(ae)}var ad=ab.nodeName;if("BR"===ad||"LI"===ad){X[W]="\n";Z[W<<1]=T++;Z[(W++<<1)|1…
/third_party/node/deps/npm/node_modules/unique-filename/coverage/
Dprettify.js1nextSibling){aa(ae)}var ad=ab.nodeName;if("BR"===ad||"LI"===ad){X[W]="\n";Z[W<<1]=T++;Z[(W++<<1)|1…
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/
Dsegmented_control.dart548 child = childParentData.nextSibling;
561 child = childParentData.nextSibling;
574 child = childParentData.nextSibling;
587 child = childParentData.nextSibling;
/third_party/node/tools/doc/
DREADME.md74 ### SomeClass.nextSibling()
/third_party/node/test/fixtures/wpt/interfaces/
Ddom.idl192 readonly attribute Node? nextSibling;
227 readonly attribute Node? nextSibling;
531 Node? nextSibling();
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/surface/
Dsurface.dart1158 PersistedSurface nextSibling;
1169 newChild.rootElement.nextElementSibling != nextSibling?.rootElement;
1171 if (nextSibling == null) {
1177 newChild.rootElement, nextSibling.rootElement);
1214 nextSibling = newChild;

123