Home
last modified time | relevance | path

Searched refs:yPos (Results 1 – 25 of 31) sorted by relevance

12

/external/webkit/Source/WebCore/rendering/
DRenderFrameSet.cpp141 int yPos = 0; in paint() local
148 … paintColumnBorder(paintInfo, IntRect(tx + xPos, ty + yPos, borderThickness, height())); in paint()
155 yPos += m_rows.m_sizes[r]; in paint()
157 paintRowBorder(paintInfo, IntRect(tx, ty + yPos, width(), borderThickness)); in paint()
158 yPos += borderThickness; in paint()
529 int yPos = 0; in positionFrames() local
548 child->setY(yPos); in positionFrames()
574 yPos += height + borderThickness; in positionFrames()
580 int newHeight = yPos - borderThickness; in positionFrames()
608 yPos = 0; in positionFrames()
[all …]
DRenderFlexibleBox.cpp324 int yPos = borderTop() + paddingTop(); in layoutHorizontalBox() local
344 setHeight(yPos); in layoutHorizontalBox()
384 setHeight(max(yPos + maxAscent + maxDescent, height())); in layoutHorizontalBox()
387 … setHeight(max(height(), yPos + child->marginTop() + child->height() + child->marginBottom())); in layoutHorizontalBox()
409 if (childLayer->staticBlockPosition() != yPos) { in layoutHorizontalBox()
410 childLayer->setStaticBlockPosition(yPos); in layoutHorizontalBox()
432 int childY = yPos; in layoutHorizontalBox()
604 int yPos = borderTop() + paddingTop(); in layoutVerticalBox() local
690 yPos = height(); in layoutVerticalBox()
708 remainingSpace = borderTop() + paddingTop() + contentHeight() - yPos; in layoutVerticalBox()
DRenderBox.cpp758 …Point(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, Hi… in nodeAtPoint() argument
765 if (!child->hasLayer() && child->nodeAtPoint(request, result, xPos, yPos, tx, ty, action)) { in nodeAtPoint()
766 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty)); in nodeAtPoint()
774 …sting() && action == HitTestForeground && boundsRect.intersects(result.rectForPoint(xPos, yPos))) { in nodeAtPoint()
775 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty)); in nodeAtPoint()
776 if (!result.addNodeToRectBasedTestResult(node(), xPos, yPos, boundsRect)) in nodeAtPoint()
3173 int yPos = point.y(); in positionForPoint() local
3179 if (xPos < 0 || xPos > right || yPos < 0 || yPos > bottom) { in positionForPoint()
3190 int newY = yPos; in positionForPoint()
3210 if (xPos <= right && xPos >= left && yPos <= top && yPos >= bottom) { in positionForPoint()
[all …]
DRenderTable.cpp1257 …Point(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, Hi… in nodeAtPoint() argument
1263 … if (!hasOverflowClip() || overflowClipRect(tx, ty).intersects(result.rectForPoint(xPos, yPos))) { in nodeAtPoint()
1267 … if (child->nodeAtPoint(request, result, xPos, yPos, childPoint.x(), childPoint.y(), action)) { in nodeAtPoint()
1268 … updateHitTestResult(result, IntPoint(xPos - childPoint.x(), yPos - childPoint.y())); in nodeAtPoint()
1277 …action == HitTestChildBlockBackground) && boundsRect.intersects(result.rectForPoint(xPos, yPos))) { in nodeAtPoint()
1278 updateHitTestResult(result, flipForWritingMode(IntPoint(xPos - tx, yPos - ty))); in nodeAtPoint()
1279 if (!result.addNodeToRectBasedTestResult(node(), xPos, yPos, boundsRect)) in nodeAtPoint()
DRenderTableSection.cpp1258 …Point(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, Hi… in setCellLogicalWidths() argument
1269 if (hasOverflowClip() && !overflowClipRect(tx, ty).intersects(result.rectForPoint(xPos, yPos))) in setCellLogicalWidths()
1280 … if (child->nodeAtPoint(request, result, xPos, yPos, childPoint.x(), childPoint.y(), action)) { in setCellLogicalWidths()
1281 … updateHitTestResult(result, IntPoint(xPos - childPoint.x(), yPos - childPoint.y())); in setCellLogicalWidths()
1289 IntPoint location = IntPoint(xPos - tx, yPos - ty); in setCellLogicalWidths()
1324 …if (static_cast<RenderObject*>(cell)->nodeAtPoint(request, result, xPos, yPos, cellPoint.x(), cell… in setCellLogicalWidths()
1325 updateHitTestResult(result, IntPoint(xPos - cellPoint.x(), yPos - cellPoint.y())); in setCellLogicalWidths()
DRenderTable.h228 …virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int xPos, int yPos, int tx, int ty…
DRenderBlock.h498 BidiStatus& cleanLineBidiStatus, int& yPos);
540 int getClearDelta(RenderBox* child, int yPos);
699 …rFloatsIfNeeded(RenderBox* child, MarginInfo&, int oldTopPosMargin, int oldTopNegMargin, int yPos);
DRenderBlock.cpp1725 …eeded(RenderBox* child, MarginInfo& marginInfo, int oldTopPosMargin, int oldTopNegMargin, int yPos) in clearFloatsIfNeeded() argument
1727 int heightIncrease = getClearDelta(child, yPos); in clearFloatsIfNeeded()
1729 return yPos; in clearFloatsIfNeeded()
1771 return yPos + heightIncrease; in clearFloatsIfNeeded()
2640 int yPos = ty + firstLineBox()->y(); in paintEllipsisBoxes() local
2642 if (yPos >= paintInfo.rect.maxY() || yPos + h <= paintInfo.rect.y()) in paintEllipsisBoxes()
2649 yPos = ty + curr->y(); in paintEllipsisBoxes()
2651 … if (curr->ellipsisBox() && yPos < paintInfo.rect.maxY() && yPos + h > paintInfo.rect.y()) in paintEllipsisBoxes()
3899 int RenderBlock::getClearDelta(RenderBox* child, int yPos) in getClearDelta() argument
3923 int result = clearSet ? max(0, bottom - yPos) : 0; in getClearDelta()
[all …]
DRenderTextControlSingleLine.cpp335 …Point(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, Hi… in nodeAtPoint() argument
343 if (!RenderTextControl::nodeAtPoint(request, result, xPos, yPos, tx, ty, hitTestAction)) in nodeAtPoint()
350 hitInnerTextElement(result, xPos, yPos, tx, ty); in nodeAtPoint()
DRenderTextControl.cpp478 void RenderTextControl::hitInnerTextElement(HitTestResult& result, int xPos, int yPos, int tx, int … in hitInnerTextElement() argument
483 yPos - ty - y() - m_innerText->renderBox()->y())); in hitInnerTextElement()
DRenderBoxModelObject.cpp465 int yPos = (isBox() ? toRenderBox(this)->y() : 0); in offsetTop() local
472 yPos -= toRenderBox(offsetPar)->borderTop(); in offsetTop()
475 yPos += relativePositionOffsetY(); in offsetTop()
480 yPos += toRenderBox(curr)->y(); in offsetTop()
484 yPos += toRenderBox(offsetPar)->y(); in offsetTop()
487 return yPos; in offsetTop()
DRenderLayer.cpp1154 RenderLayer::convertToLayerCoords(const RenderLayer* ancestorLayer, int& xPos, int& yPos) const in convertToLayerCoords()
1165 yPos += absPos.y(); in convertToLayerCoords()
1198 yPos += (fixedContainerY - ancestorY); in convertToLayerCoords()
1235 yPos += (thisY - ancestorY); in convertToLayerCoords()
1244 parentLayer->convertToLayerCoords(ancestorLayer, xPos, yPos); in convertToLayerCoords()
1247 yPos += y(); in convertToLayerCoords()
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
DTextureAtlas.java285 for (int yPos = 0; yPos < height; yPos++) { in drawImage()
287 int i = ((xPos + x) + (yPos + y) * atlasWidth) * 4; in drawImage()
289 int j = (xPos + yPos * width) * 4; in drawImage()
295 int j = (xPos + yPos * width) * 3; in drawImage()
301 int j = (xPos + yPos * width) * 3; in drawImage()
307 int j = (xPos + yPos * width) * 4; in drawImage()
313 int j = (xPos + yPos * width) * 1; in drawImage()
319 int j = (xPos + yPos * width) * 2; in drawImage()
331 int j = (xPos + yPos * width) * 4; in drawImage()
/external/webkit/Source/WebCore/platform/chromium/
DScrollbarThemeChromium.cpp131 const int yPos = rect.y() + (rect.height() * percent); in paintTickmarks() local
133 IntPoint tick(scrollbar->x(), yPos); in paintTickmarks()
DScrollbarThemeChromiumMac.mm453 … const int yPos = static_cast<int>((thumbArea.y() + (thumbArea.height() * percent))) & ~1;
457 FloatRect tickRect(thumbArea.x() + indent, yPos, thumbArea.width() - 2 * indent - 1, 2);
/external/webkit/Source/WebCore/svg/
DSVGParserUtilities.cpp201 float yPos = 0.0f; in pointsListFromSVGData() local
202 if (!parseNumber(cur, end, yPos, false)) in pointsListFromSVGData()
213 pointsList.append(FloatPoint(xPos, yPos)); in pointsListFromSVGData()
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
Dpopuplib.js110 var yPos = parentPos[1] +
112 return [xPos, yPos];
/external/skia/src/ports/
DSkHarfBuzzFont.cpp83 hb_uint32 index, HB_Fixed* xPos, HB_Fixed* yPos, in getOutlinePoint() argument
104 *yPos = SkScalarToHarfbuzzFixed(pt.fY); in getOutlinePoint()
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
DHarfbuzzSkia.cpp122 …nt, HB_Glyph glyph, int flags, hb_uint32 point, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resulti… in getOutlinePoint() argument
144 *yPos = SkiaScalarToHarfbuzzFixed(points[point].fY); in getOutlinePoint()
/external/webkit/Source/WebCore/platform/graphics/chromium/
DHarfbuzzSkia.cpp139 …nt, HB_Glyph glyph, int flags, hb_uint32 point, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resulti… in getOutlinePoint() argument
161 *yPos = SkiaScalarToHarfbuzzFixed(points[point].fY); in getOutlinePoint()
/external/webkit/Source/JavaScriptCore/runtime/
DDatePrototype.cpp222 char* yPos = strchr(formatString, 'y'); in formatLocaleDate() local
223 if (yPos) in formatLocaleDate()
224 *yPos = 'Y'; in formatLocaleDate()
/external/quake/quake/src/WinQuake/
Dgl_vidnt.cpp1023 int fwKeys, xPos, yPos, fActive, fMinimized, temp; in MainWndProc() local
Dvid_win.cpp2822 int fwKeys, xPos, yPos, fActive, fMinimized, temp; in MainWndProc() local
/external/quake/quake/src/QW/client/
Dgl_vidnt.c1023 int fwKeys, xPos, yPos, fActive, fMinimized, temp; in MainWndProc() local
Dvid_win.c2863 int fwKeys, xPos, yPos, fActive, fMinimized, temp; in MainWndProc() local

12