Home
last modified time | relevance | path

Searched refs:rowHeight (Results 1 – 6 of 6) sorted by relevance

/third_party/flutter/skia/src/gpu/
DGrRectanizer_pow2.h72 void initRow(Row* row, int rowHeight) { in initRow() argument
74 row->fRowHeight = rowHeight; in initRow()
75 fNextStripY += rowHeight; in initRow()
/third_party/skia/src/gpu/
DGrRectanizerPow2.h74 void initRow(Row* row, int rowHeight) { in initRow() argument
76 row->fRowHeight = rowHeight; in initRow()
77 fNextStripY += rowHeight; in initRow()
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/surface/
Dsurface.dart212 const int rowHeight = 30;
214 const int overlayHeight = rowHeight * rowCount;
279 ..moveTo(strokeWidth * i, rowHeight)
280 ..lineTo(strokeWidth * i, rowHeight * (1 - repaintRate))
288 ..moveTo(strokeWidth * i, 2 * rowHeight)
289 ..lineTo(strokeWidth * i, rowHeight * (2 - domAllocationRate))
297 ..moveTo(strokeWidth * i, 3 * rowHeight)
298 ..lineTo(strokeWidth * i, rowHeight * (3 - bitmapAllocationRate))
306 ..moveTo(strokeWidth * i, 4 * rowHeight)
307 ..lineTo(strokeWidth * i, rowHeight * (4 - surfaceRetainRate))
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Dtable.dart755 double rowHeight = 0.0;
760 rowHeight = math.max(rowHeight, child.getMaxIntrinsicHeight(widths[x]));
762 rowTop += rowHeight;
1027 double rowHeight = 0.0;
1051 rowHeight = math.max(rowHeight, child.size.height);
1059 rowHeight = math.max(rowHeight, child.size.height);
1069 rowHeight = math.max(rowHeight, beforeBaselineDistance + afterBaselineDistance);
1085 … childParentData.offset = Offset(positions[x], rowTop + (rowHeight - child.size.height) / 2.0);
1088 childParentData.offset = Offset(positions[x], rowTop + rowHeight - child.size.height);
1091 child.layout(BoxConstraints.tightFor(width: widths[x], height: rowHeight));
[all …]
/third_party/flutter/flutter/examples/flutter_gallery/lib/gallery/
Dhome.dart125 final double rowHeight = math.min(225.0, columnWidth * aspectRatio);
147 height: rowHeight,
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fGeometryShaderTests.cpp847 const float rowHeight = 2.0f / (float)m_patternLength; in shadePrimitives() local
859 …output.EmitVertex(vertex->position + tcu::Vec4(2 * (float)ndx * colWidth, rowHeight, 0.0, 0.0), ve… in shadePrimitives()