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

/external/webkit/Source/WebCore/platform/chromium/
H A DScrollbarThemeChromium.cpp131 const int yPos = rect.y() + (rect.height() * percent); local
133 IntPoint tick(scrollbar->x(), yPos);
H A 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/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DTextureAtlas.java285 for (int yPos = 0; yPos < height; yPos++) {
287 int i = ((xPos + x) + (yPos + y) * atlasWidth) * 4;
289 int j = (xPos + yPos * width) * 4;
295 int j = (xPos + yPos * width) * 3;
301 int j = (xPos + yPos * width) * 3;
307 int j = (xPos + yPos * width) * 4;
313 int j = (xPos + yPos * width) * 1;
319 int j = (xPos + yPos * widt
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderFrameSet.cpp141 int yPos = 0; local
148 paintColumnBorder(paintInfo, IntRect(tx + xPos, ty + yPos, borderThickness, height()));
155 yPos += m_rows.m_sizes[r];
157 paintRowBorder(paintInfo, IntRect(tx, ty + yPos, width(), borderThickness));
158 yPos += borderThickness;
529 int yPos = 0; local
548 child->setY(yPos);
574 yPos += height + borderThickness;
580 int newHeight = yPos - borderThickness;
608 yPos
703 int yPos = 0; local
[all...]
H A DRenderFlexibleBox.cpp324 int yPos = borderTop() + paddingTop(); local
344 setHeight(yPos);
384 setHeight(max(yPos + maxAscent + maxDescent, height()));
387 setHeight(max(height(), yPos + child->marginTop() + child->height() + child->marginBottom()));
409 if (childLayer->staticBlockPosition() != yPos) {
410 childLayer->setStaticBlockPosition(yPos);
432 int childY = yPos;
604 int yPos = borderTop() + paddingTop(); local
690 yPos = height();
708 remainingSpace = borderTop() + paddingTop() + contentHeight() - yPos;
[all...]
H A DRenderBox.cpp758 bool RenderBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action) argument
765 if (!child->hasLayer() && child->nodeAtPoint(request, result, xPos, yPos, tx, ty, action)) {
766 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
774 if (visibleToHitTesting() && action == HitTestForeground && boundsRect.intersects(result.rectForPoint(xPos, yPos))) {
775 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
776 if (!result.addNodeToRectBasedTestResult(node(), xPos, yPos, boundsRect))
3173 int yPos = point.y(); local
3179 if (xPos < 0 || xPos > right || yPos < 0 || yPos > bottom) {
3190 int newY = yPos;
[all...]
H A DRenderTable.cpp1257 bool RenderTable::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action) argument
1263 if (!hasOverflowClip() || overflowClipRect(tx, ty).intersects(result.rectForPoint(xPos, yPos))) {
1267 if (child->nodeAtPoint(request, result, xPos, yPos, childPoint.x(), childPoint.y(), action)) {
1268 updateHitTestResult(result, IntPoint(xPos - childPoint.x(), yPos - childPoint.y()));
1277 if (visibleToHitTesting() && (action == HitTestBlockBackground || action == HitTestChildBlockBackground) && boundsRect.intersects(result.rectForPoint(xPos, yPos))) {
1278 updateHitTestResult(result, flipForWritingMode(IntPoint(xPos - tx, yPos - ty)));
1279 if (!result.addNodeToRectBasedTestResult(node(), xPos, yPos, boundsRect))
H A DRenderTableSection.cpp1258 bool RenderTableSection::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action) argument
1269 if (hasOverflowClip() && !overflowClipRect(tx, ty).intersects(result.rectForPoint(xPos, yPos)))
1280 if (child->nodeAtPoint(request, result, xPos, yPos, childPoint.x(), childPoint.y(), action)) {
1281 updateHitTestResult(result, IntPoint(xPos - childPoint.x(), yPos - childPoint.y()));
1289 IntPoint location = IntPoint(xPos - tx, yPos - ty);
1324 if (static_cast<RenderObject*>(cell)->nodeAtPoint(request, result, xPos, yPos, cellPoint.x(), cellPoint.y(), action)) {
1325 updateHitTestResult(result, IntPoint(xPos - cellPoint.x(), yPos - cellPoint.y()));
H A DRenderTable.h228 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int xPos, int yPos, int tx, int ty, HitTestAction);
H A DRenderTextControl.cpp478 void RenderTextControl::hitInnerTextElement(HitTestResult& result, int xPos, int yPos, int tx, int ty) argument
483 yPos - ty - y() - m_innerText->renderBox()->y()));
H A DRenderBlock.h498 BidiStatus& cleanLineBidiStatus, int& yPos);
540 int getClearDelta(RenderBox* child, int yPos);
699 int clearFloatsIfNeeded(RenderBox* child, MarginInfo&, int oldTopPosMargin, int oldTopNegMargin, int yPos);
708 int applyBeforeBreak(RenderBox* child, int logicalOffset); // If the child has a before break, then return a new yPos that shifts to the top of the next page/column.
H A DRenderTextControlSingleLine.cpp335 bool RenderTextControlSingleLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction hitTestAction) argument
343 if (!RenderTextControl::nodeAtPoint(request, result, xPos, yPos, tx, ty, hitTestAction))
350 hitInnerTextElement(result, xPos, yPos, tx, ty);
H A DRenderBlock.cpp1725 int RenderBlock::clearFloatsIfNeeded(RenderBox* child, MarginInfo& marginInfo, int oldTopPosMargin, int oldTopNegMargin, int yPos) argument
1727 int heightIncrease = getClearDelta(child, yPos);
1729 return yPos;
1771 return yPos + heightIncrease;
2640 int yPos = ty + firstLineBox()->y(); local
2642 if (yPos >= paintInfo.rect.maxY() || yPos + h <= paintInfo.rect.y())
2649 yPos = ty + curr->y();
2651 if (curr->ellipsisBox() && yPos < paintInfo.rect.maxY() && yPos
3899 getClearDelta(RenderBox* child, int yPos) argument
[all...]
H A DRenderBoxModelObject.cpp465 int yPos = (isBox() ? toRenderBox(this)->y() : 0); local
472 yPos -= toRenderBox(offsetPar)->borderTop();
475 yPos += relativePositionOffsetY();
480 yPos += toRenderBox(curr)->y();
484 yPos += toRenderBox(offsetPar)->y();
487 return yPos;
H A DRenderLayer.cpp1154 RenderLayer::convertToLayerCoords(const RenderLayer* ancestorLayer, int& xPos, int& yPos) const
1165 yPos += absPos.y();
1198 yPos += (fixedContainerY - ancestorY);
1235 yPos += (thisY - ancestorY);
1244 parentLayer->convertToLayerCoords(ancestorLayer, xPos, yPos);
1247 yPos += y();
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
H A Dpopuplib.js110 var yPos = parentPos[1] +
112 return [xPos, yPos];
/external/webkit/Source/WebCore/svg/
H A DSVGParserUtilities.cpp201 float yPos = 0.0f; local
202 if (!parseNumber(cur, end, yPos, false))
213 pointsList.append(FloatPoint(xPos, yPos));
/external/skia/src/ports/
H A DSkHarfBuzzFont.cpp83 hb_uint32 index, HB_Fixed* xPos, HB_Fixed* yPos,
104 *yPos = SkScalarToHarfbuzzFixed(pt.fY);
82 getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags, hb_uint32 index, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resultingNumPoints) argument
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
H A DHarfbuzzSkia.cpp122 static HB_Error getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags, hb_uint32 point, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resultingNumPoints) argument
144 *yPos = SkiaScalarToHarfbuzzFixed(points[point].fY);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DHarfbuzzSkia.cpp139 static HB_Error getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags, hb_uint32 point, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resultingNumPoints) argument
161 *yPos = SkiaScalarToHarfbuzzFixed(points[point].fY);
/external/webkit/Source/JavaScriptCore/runtime/
H A DDatePrototype.cpp222 char* yPos = strchr(formatString, 'y'); local
223 if (yPos)
224 *yPos = 'Y';
/external/quake/quake/src/QW/client/
H A Dvid_win.c2863 int fwKeys, xPos, yPos, fActive, fMinimized, temp; local
/external/quake/quake/src/WinQuake/
H A Dvid_win.cpp2822 int fwKeys, xPos, yPos, fActive, fMinimized, temp; local
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 428 milliseconds