/third_party/flutter/flutter/packages/flutter/lib/src/rendering/ |
D | sliver_list.dart | 77 if (firstChild == null) { 94 RenderBox earliestUsefulChild = firstChild; 102 final SliverMultiBoxAdaptorParentData childParentData = firstChild.parentData; 107 // firstChild. In this case, nothing has been laid out. We have 108 // to lay out firstChild manually. 109 firstChild.layout(childConstraints, parentUsesSize: true); 110 earliestUsefulChild = firstChild; 125 final double firstChildScrollOffset = earliestScrollOffset - paintExtentOf(firstChild); 131 // so that the trailing edge of the original firstChild appears where it 138 assert(firstChild == earliestUsefulChild); [all …]
|
D | sliver_multi_box_adaptor.dart | 258 RenderBox child = firstChild; 273 assert(firstChild != null); 426 assert(firstChild == null); 428 if (firstChild != null) { 429 assert(firstChild == lastChild); 430 assert(indexOf(firstChild) == index); 431 final SliverMultiBoxAdaptorParentData firstChildParentData = firstChild.parentData; 440 /// [firstChild]. 458 final int index = indexOf(firstChild) - 1; 460 if (indexOf(firstChild) == index) { [all …]
|
D | sliver_fixed_extent_list.dart | 146 RenderBox walker = firstChild; 187 if (firstChild != null) { 195 if (firstChild == null) { 210 for (int index = indexOf(firstChild) - 1; index >= firstIndex; --index) { 226 firstChild.layout(childConstraints); 227 final SliverMultiBoxAdaptorParentData childParentData = firstChild.parentData; 229 trailingChildWithLayout = firstChild; 254 …assert(firstIndex == 0 || childScrollOffset(firstChild) - scrollOffset <= precisionErrorTolerance); 256 assert(indexOf(firstChild) == firstIndex);
|
D | list_body.dart | 111 RenderBox child = firstChild; 135 child = firstChild; 167 child = firstChild; 189 RenderBox child = firstChild; 200 RenderBox child = firstChild;
|
D | wrap.dart | 334 if (firstChild != null && lastChild != firstChild) { 391 RenderBox child = firstChild; 423 RenderBox child = firstChild; 453 RenderBox child = firstChild; 470 RenderBox child = firstChild; 489 RenderBox child = firstChild; 506 RenderBox child = firstChild; 570 RenderBox child = firstChild; 687 child = firstChild;
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | focus_traversal_test.dart | 36 final Element firstChild = tester.element(find.byKey(key3)); 38 final FocusNode firstFocusNode = Focus.of(firstChild); 40 final FocusNode scope = Focus.of(firstChild).enclosingScope; 96 final Element firstChild = tester.element(find.byKey(key4)); 98 final FocusNode firstFocusNode = Focus.of(firstChild); 100 final FocusNode scope = Focus.of(firstChild).enclosingScope; 118 Focus.of(firstChild).nextFocus(); 135 Focus.of(firstChild).nextFocus(); 153 Focus.of(firstChild).previousFocus(); 200 final Element firstChild = tester.element(find.byKey(key4)); [all …]
|
D | animated_cross_fade_test.dart | 17 firstChild: SizedBox( 42 firstChild: SizedBox( 71 firstChild: SizedBox( 102 firstChild: SizedBox( 125 firstChild: SizedBox( 160 firstChild: SizedBox( 183 firstChild: SizedBox( 218 firstChild: SizedBox( 241 firstChild: SizedBox( 270 firstChild: const _TickerWatchingWidget(), [all …]
|
D | flow_test.dart | 115 layer = layer.firstChild; 119 expect(layer.firstChild, isInstanceOf<TransformLayer>());
|
/third_party/parse5/packages/parse5/test/ |
D | location-info-parser.test.js | 41 const firstChild = treeAdapter.getChildNodes(fragment)[0]; 42 const location = treeAdapter.getNodeSourceCodeLocation(firstChild); 56 const firstChild = treeAdapter.getChildNodes(fragment)[0]; 58 assert.ok(treeAdapter.getNodeSourceCodeLocation(firstChild)); 83 const firstChild = treeAdapter.getChildNodes(fragment)[0]; 85 assert.ok(treeAdapter.getNodeSourceCodeLocation(firstChild).attrs['test-attr']);
|
/third_party/vk-gl-cts/framework/delibs/depool/ |
D | deMemPool.c | 92 deMemPool* firstChild; /*!< Pointer to first child pool in linked list. */ member 200 if (parent->firstChild) parent->firstChild->prevPool = pool; in createPoolInternal() 201 pool->nextPool = parent->firstChild; in createPoolInternal() 202 parent->firstChild = pool; in createPoolInternal() 316 iter = pool->firstChild; in deMemPool_destroy() 333 if (parent->firstChild == pool) in deMemPool_destroy() 334 parent->firstChild = pool->nextPool; in deMemPool_destroy() 401 for (child = pool->firstChild; child; child = child->nextPool) in deMemPool_getNumAllocatedBytes() 419 for (child = pool->firstChild; child; child = child->nextPool) in deMemPool_getCapacity()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.cpp | 140 firstChild = 0; in TiXmlNode() 149 TiXmlNode* node = firstChild; in ~TiXmlNode() 171 TiXmlNode* node = firstChild; in Clear() 181 firstChild = 0; in Clear() 207 firstChild = node; // it was an empty list. in LinkEndChild() 255 assert( firstChild == beforeThis ); in InsertBeforeChild() 256 firstChild = node; in InsertBeforeChild() 327 firstChild = node; in ReplaceChild() 355 firstChild = removeThis->next; in RemoveChild() 364 for ( node = firstChild; node; node = node->next ) in FirstChild() [all …]
|
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.cpp | 140 firstChild = 0; in TiXmlNode() 149 TiXmlNode* node = firstChild; in ~TiXmlNode() 171 TiXmlNode* node = firstChild; in Clear() 181 firstChild = 0; in Clear() 207 firstChild = node; // it was an empty list. in LinkEndChild() 255 assert( firstChild == beforeThis ); in InsertBeforeChild() 256 firstChild = node; in InsertBeforeChild() 327 firstChild = node; in ReplaceChild() 355 firstChild = removeThis->next; in RemoveChild() 364 for ( node = firstChild; node; node = node->next ) in FirstChild() [all …]
|
/third_party/python/Lib/test/ |
D | test_minidom.py | 96 and root.firstChild is nelem 536 pi = dom.documentElement.firstChild 544 and pi.firstChild is None 828 pi = doc.firstChild 869 self.assertEqual(clone.documentElement.firstChild.wholeText, 902 and root.firstChild is root.lastChild 903 and root.firstChild.data == "firstsecond" 928 and root.firstChild.data == "firstsecond" 929 and root.firstChild is not root.lastChild 930 and root.firstChild.nextSibling is root.lastChild [all …]
|
/third_party/parse5/packages/parse5-htmlparser2-tree-adapter/docs/ |
D | document-fragment.md | 7 * [firstChild](#firstchild) 43 ### firstChild subsection 45 **● firstChild**: *Node*
|
D | document.md | 7 * [firstChild](#firstchild) 44 ### firstChild subsection 46 **● firstChild**: *Node*
|
D | element.md | 8 * [firstChild](#firstchild) 62 ### firstChild subsection 64 **● firstChild**: *Node*
|
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
D | animated_cross_fade.dart | 20 /// Show the first child ([AnimatedCrossFade.firstChild]) and hide the second 25 /// ([AnimatedCrossFade.firstChild]). 96 /// firstChild: const FlutterLogo(style: FlutterLogoStyle.horizontal, size: 100.0), 119 @required this.firstChild, 129 }) : assert(firstChild != null), 144 final Widget firstChild; 190 /// A builder that positions the [firstChild] and [secondChild] widgets. 327 bottomChild = widget.firstChild; 331 topChild = widget.firstChild;
|
/third_party/skia/third_party/externals/egl-registry/sdk/docs/man/html/ |
D | accord.js | 25 …emp.getElementsByTagName("li")[o].insertBefore(temp2,temp.getElementsByTagName("li")[o].firstChild) 36 …mp.getElementsByTagName("li")[o].insertBefore(temp2,temp.getElementsByTagName("li")[o].firstChild);
|
/third_party/EGL/sdk/docs/man/html/ |
D | accord.js | 25 …emp.getElementsByTagName("li")[o].insertBefore(temp2,temp.getElementsByTagName("li")[o].firstChild) 36 …mp.getElementsByTagName("li")[o].insertBefore(temp2,temp.getElementsByTagName("li")[o].firstChild);
|
/third_party/skia/src/xml/ |
D | SkXMLWriter.cpp | 64 bool firstChild = level > 0 && !fElems[level-1]->fHasChildren; in doStart() local 65 if (firstChild) { in doStart() 70 return firstChild; in doStart()
|
/third_party/flutter/skia/src/xml/ |
D | SkXMLWriter.cpp | 64 bool firstChild = level > 0 && !fElems[level-1]->fHasChildren; in doStart() local 65 if (firstChild) { in doStart() 70 return firstChild; in doStart()
|
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/ |
D | dialog.dart | 1322 RenderBox currentChild = firstChild; 1334 RenderBox currentChild = firstChild; 1390 minHeight = firstChild.getMinIntrinsicHeight(width); 1394 firstChild.getMinIntrinsicHeight(perButtonWidth), 1406 return firstChild.getMinIntrinsicHeight(width) 1408 + (0.5 * childAfter(firstChild).getMinIntrinsicHeight(width)); 1419 maxHeight = firstChild.getMaxIntrinsicHeight(width); 1427 firstChild.getMaxIntrinsicHeight(perButtonWidth), 1450 RenderBox button = firstChild; 1465 final double sideBySideWidth = firstChild.getMaxIntrinsicWidth(double.infinity) [all …]
|
D | segmented_control.dart | 542 RenderBox child = firstChild; 555 RenderBox child = firstChild; 568 RenderBox child = firstChild; 581 RenderBox child = firstChild; 638 RenderBox child = firstChild; 652 child = firstChild; 663 firstChild, 669 firstChild, 680 RenderBox child = firstChild;
|
D | action_sheet.dart | 1094 return firstChild.computeMaxIntrinsicHeight(width) + dividerThickness; 1105 return firstChild.getMinIntrinsicHeight(width) 1106 + childAfter(firstChild).getMinIntrinsicHeight(width) 1109 return firstChild.getMinIntrinsicHeight(width) 1110 + childAfter(firstChild).getMinIntrinsicHeight(width) 1111 + childAfter(childAfter(firstChild)).getMinIntrinsicHeight(width) 1120 return firstChild.getMinIntrinsicHeight(width) 1122 + (0.5 * childAfter(firstChild).getMinIntrinsicHeight(width)); 1130 return firstChild.computeMaxIntrinsicHeight(width) + dividerThickness; 1141 RenderBox button = firstChild; [all …]
|
/third_party/boost/tools/build/src/tools/ |
D | doxproc.py | 165 if node.firstChild: 166 self._rewriteIDs(node.firstChild) 372 'header' : includes.firstChild.data, 387 name = node.firstChild.data 446 value = self._getChildData('ref',root=defval.firstChild) 757 while target.firstChild: 758 target.removeChild(target.firstChild)
|