Home
last modified time | relevance | path

Searched refs:currentY (Results 1 – 11 of 11) sorted by relevance

/third_party/flutter/engine/flutter/lib/web_ui/test/
Dpath_test.dart21 expect(path.subpaths[0].currentY, 50.0);
29 expect(path.subpaths[0].currentY, 40.0);
39 expect(path.subpaths[0].currentY, 45.0);
48 expect(path.subpaths[0].currentY, 5.0);
50 expect(path.subpaths[1].currentY, 10.0);
63 expect(path.subpaths[0].currentY, 5.0);
/third_party/flutter/skia/third_party/externals/sdl/test/
Dtestautomation_video.c939 int currentX, currentY; in video_getSetWindowPosition() local
992 currentY = desiredY + 1; in video_getSetWindowPosition()
993 SDL_GetWindowPosition(window, &currentX, &currentY); in video_getSetWindowPosition()
996 …SDLTest_AssertCheck(desiredY == currentY, "Verify returned Y position; expected: %d, got: %d", des… in video_getSetWindowPosition()
1005 currentY = desiredY + 1; in video_getSetWindowPosition()
1006 SDL_GetWindowPosition(window, NULL, &currentY); in video_getSetWindowPosition()
1008 …SDLTest_AssertCheck(desiredY == currentY, "Verify returned Y position; expected: %d, got: %d", des… in video_getSetWindowPosition()
1023 currentY = referenceY; in video_getSetWindowPosition()
1030 SDL_GetWindowPosition(NULL, &currentX, &currentY); in video_getSetWindowPosition()
1033 currentX == referenceX && currentY == referenceY, in video_getSetWindowPosition()
[all …]
/third_party/boost/boost/polygon/detail/
Dproperty_merge.hpp295 coordinate_type currentY = currentInterval.low(); in processVertex() local
337 } else if(currentY < currentInterval.high()){ in processVertex()
349 currentY = previousY = elementY; in processVertex()
352 currentY < currentInterval.high()) { in processVertex()
360 currentY < currentInterval.high()) { in processVertex()
365 mergeCount(scanline[currentY], countFromBelow); in processVertex()
372 … output.back().first = property_merge_interval<coordinate_type>(currentY, currentInterval.high()); in processVertex()
Dpolygon_45_formation.hpp788 Unit currentY = (*currentIter).pt.y(); in processEvent_() local
789 iterator iter = lookUp_(currentY); in processEvent_()
795 iter->first.evalAtX(x_) == currentY) { in processEvent_()
812 } while(currentIter != inputEnd && currentIter->pt.y() == currentY && in processEvent_()
831 …std::pair<int, ActiveTail45*> result = processPoint_(output, elements, Point(x_, currentY), counts… in processEvent_()
1563 Unit currentY = (*currentIter).pt.y(); in processEvent_() local
1564 iterator iter = lookUp_(currentY); in processEvent_()
1571 previter->first.evalAtX(x_) >= currentY && in processEvent_()
1575 iter->first.evalAtX(x_) == currentY) { in processEvent_()
1592 } while(currentIter != inputEnd && currentIter->pt.y() == currentY && in processEvent_()
[all …]
Dpolygon_arbitrary_formation.hpp1665 Unit currentY = (*currentIter).pt.get(VERTICAL); in processEvent_() local
1669 iterator iter = lookUp_(currentY); in processEvent_()
1677 ((iter->first.pt.x() == x_ && iter->first.pt.y() == currentY) || in processEvent_()
1678 (iter->first.other_pt.x() == x_ && iter->first.other_pt.y() == currentY))) { in processEvent_()
1689 Point currentPoint(x_, currentY); in processEvent_()
1700 } while(currentIter != inputEnd && currentIter->pt.get(VERTICAL) == currentY && in processEvent_()
1734 …ive_tail_arbitrary*> result = processPoint_(output, elements, Point(x_, currentY), counts_from_sca… in processEvent_()
2622 Unit currentY = (*currentIter).pt.get(VERTICAL); in processEvent_() local
2626 iterator iter = this->lookUp_(currentY); in processEvent_()
2635 previter->first.evalAtX(polygon_arbitrary_formation<Unit>::x_) >= currentY && in processEvent_()
[all …]
/third_party/flutter/skia/src/gpu/text/
DGrTextBlob.cpp201 SkScalar currentY, SkScalar* transX, SkScalar* transY) { in calculate_translation() argument
205 newViewMatrix.getSkewX() * (newY - currentY) - in calculate_translation()
210 newViewMatrix.getScaleY() * (newY - currentY) - in calculate_translation()
214 *transY = newY - currentY; in calculate_translation()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cShaderViewportLayerArrayTests.cpp286 int currentY = 0; in createMaxViewports() local
294 currentY++; in createMaxViewports()
296 GLfloat y = (GLfloat)currentY * viewportHeight; in createMaxViewports()
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/
Drecording_canvas.dart1029 double currentY = 0.0;
1038 ..currentY = currentY + offset.dy;
/third_party/skia/third_party/externals/oboe/docs/reference/
Djquery.js68currentY:0,previousX:0,previousY:0,desyncTimeout:null,mouseTrackingActive:false,delayInProgress:fa… property
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Deditable.dart1780 final double currentY = rawCursorOffset.dy - _relativeOrigin.dy;
1782 final double adjustedY = math.min(math.max(currentY, topBound), bottomBound);
1789 if (currentY < topBound && deltaPosition.dy < 0)
1791 else if (currentY > bottomBound && deltaPosition.dy > 0)
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/ui/
Dcanvas.dart1117 double get _currentY => _currentSubpath?.currentY ?? 0.0;
1159 _currentSubpath.currentY = y;
1604 path.subpaths.single.currentX, path.subpaths.single.currentY);