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

/external/webkit/WebCore/rendering/
H A DRenderLineBoxList.cpp165 int yPos = firstLineBox()->topVisibleOverflow() - renderer->maximalOutlineSize(paintInfo.phase); local
166 int h = renderer->maximalOutlineSize(paintInfo.phase) + lastLineBox()->bottomVisibleOverflow() - yPos;
167 yPos += ty;
168 if (yPos >= paintInfo.rect.bottom() || yPos + h <= paintInfo.rect.y())
201 yPos = ty + top;
203 if (yPos < info.rect.bottom() && yPos + h > info.rect.y())
H A DRenderFrameSet.cpp140 int yPos = 0; local
147 paintColumnBorder(paintInfo, IntRect(tx + xPos, ty + yPos, borderThickness, height()));
154 yPos += m_rows.m_sizes[r];
156 paintRowBorder(paintInfo, IntRect(tx, ty + yPos, width(), borderThickness));
157 yPos += borderThickness;
528 int yPos = 0; local
547 child->setY(yPos);
573 yPos += height + borderThickness;
579 int newHeight = yPos - borderThickness;
607 yPos
702 int yPos = 0; local
[all...]
H A DRenderFlexibleBox.cpp336 int yPos = borderTop() + paddingTop(); local
358 setHeight(yPos);
398 setHeight(max(yPos + maxAscent + maxDescent, height()));
401 setHeight(max(height(), yPos + child->marginTop() + child->height() + child->marginBottom()));
431 if (childLayer->staticY() != yPos) {
432 child->layer()->setStaticY(yPos);
451 int childY = yPos;
645 int yPos = borderTop() + paddingTop(); local
839 yPos = height();
857 remainingSpace = borderTop() + paddingTop() + contentHeight() - yPos;
[all...]
H A DRenderBlock.h116 IntRect fillLeftSelectionGap(RenderObject* selObj, int xPos, int yPos, int height, RenderBlock* rootBlock,
118 IntRect fillRightSelectionGap(RenderObject* selObj, int xPos, int yPos, int height, RenderBlock* rootBlock,
120 IntRect fillHorizontalSelectionGap(RenderObject* selObj, int xPos, int yPos, int width, int height, const PaintInfo*);
257 int& yPos);
293 int getClearDelta(RenderBox* child, int yPos);
491 int clearFloatsIfNeeded(RenderBox* child, MarginInfo&, int oldTopPosMargin, int oldTopNegMargin, int yPos);
H A DRenderBox.cpp536 bool RenderBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action) argument
543 if (!child->hasLayer() && child->nodeAtPoint(request, result, xPos, yPos, tx, ty, action)) {
544 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
551 if (visibleToHitTesting() && action == HitTestForeground && IntRect(tx, ty, width(), height()).contains(xPos, yPos)) {
552 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
2278 int& heightValue, int& marginTopValue, int& marginBottomValue, int& yPos)
2391 yPos = topValue + marginTopValue + containerBlock->borderTop();
2782 int yPos = point.y(); local
2788 if (xPos < 0 || xPos > right || yPos < 0 || yPos > botto
2275 calcAbsoluteVerticalValues(Length h, const RenderBoxModelObject* containerBlock, const int containerHeight, const int bordersPlusPadding, const Length top, const Length bottom, const Length marginTop, const Length marginBottom, int& heightValue, int& marginTopValue, int& marginBottomValue, int& yPos) argument
[all...]
H A DRenderBlock.cpp1109 int RenderBlock::clearFloatsIfNeeded(RenderBox* child, MarginInfo& marginInfo, int oldTopPosMargin, int oldTopNegMargin, int yPos) argument
1111 int heightIncrease = getClearDelta(child, yPos);
1113 return yPos;
1153 return yPos + heightIncrease;
1846 int yPos = ty + firstLineBox()->y(); local
1848 if (yPos >= paintInfo.rect.bottom() || yPos + h <= paintInfo.rect.y())
1855 yPos = ty + curr->y();
1857 if (curr->ellipsisBox() && yPos < paintInfo.rect.bottom() && yPos
2183 fillHorizontalSelectionGap(RenderObject* selObj, int xPos, int yPos, int width, int height, const PaintInfo* paintInfo) argument
2214 fillLeftSelectionGap(RenderObject* selObj, int xPos, int yPos, int height, RenderBlock* rootBlock, int blockX, int , int tx, int ty, const PaintInfo* paintInfo) argument
2230 fillRightSelectionGap(RenderObject* selObj, int xPos, int yPos, int height, RenderBlock* rootBlock, int blockX, int , int tx, int ty, const PaintInfo* paintInfo) argument
2257 leftSelectionOffset(RenderBlock* rootBlock, int yPos) argument
2277 rightSelectionOffset(RenderBlock* rootBlock, int yPos) argument
3232 getClearDelta(RenderBox* child, int yPos) argument
[all...]
H A DRenderTable.h167 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int xPos, int yPos, int tx, int ty, HitTestAction);
H A DInlineFlowBox.cpp470 void InlineFlowBox::placeBoxesVertically(int yPos, int maxHeight, int maxAscent, bool strictMode, int& selectionTop, int& selectionBottom) argument
473 setY(yPos + maxAscent - baselinePosition(true)); // Place our root box.
483 static_cast<InlineFlowBox*>(curr)->placeBoxesVertically(yPos, maxHeight, maxAscent, strictMode, selectionTop, selectionBottom);
487 curr->setY(yPos);
489 curr->setY(yPos + maxHeight - curr->lineHeight(false));
494 curr->setY(curr->y() + yPos + posAdjust);
H A DRenderTable.cpp1181 bool RenderTable::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action) argument
1187 if (!hasOverflowClip() || overflowClipRect(tx, ty).contains(xPos, yPos)) {
1190 child->nodeAtPoint(request, result, xPos, yPos, tx, ty, action)) {
1191 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
1198 if (visibleToHitTesting() && (action == HitTestBlockBackground || action == HitTestChildBlockBackground) && IntRect(tx, ty, width(), height()).contains(xPos, yPos)) {
1199 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
H A DRenderBoxModelObject.cpp381 int yPos = (isBox() ? toRenderBox(this)->y() : 0); local
388 yPos -= toRenderBox(offsetPar)->borderTop();
391 yPos += relativePositionOffsetY();
396 yPos += toRenderBox(curr)->y();
400 yPos += toRenderBox(offsetPar)->y();
403 return yPos;
H A DRenderTextControl.cpp440 void RenderTextControl::hitInnerTextElement(HitTestResult& result, int xPos, int yPos, int tx, int ty) argument
445 yPos - ty - y() - m_innerText->renderBox()->y()));
H A DRenderTableSection.cpp1255 bool RenderTableSection::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action) argument
1262 if (hasOverflowClip() && !overflowClipRect(tx, ty).contains(xPos, yPos))
1270 if (child->isBox() && !toRenderBox(child)->hasSelfPaintingLayer() && child->nodeAtPoint(request, result, xPos, yPos, tx, ty, action)) {
1271 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
H A DRenderTextControlSingleLine.cpp252 bool RenderTextControlSingleLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction hitTestAction) argument
260 if (!RenderTextControl::nodeAtPoint(request, result, xPos, yPos, tx, ty, hitTestAction))
267 hitInnerTextElement(result, xPos, yPos, tx, ty);
H A DRenderBox.h343 int& heightValue, int& marginTopValue, int& marginBottomValue, int& yPos);
H A DRenderLayer.cpp1002 RenderLayer::convertToLayerCoords(const RenderLayer* ancestorLayer, int& xPos, int& yPos) const
1013 yPos += absPos.y();
1046 yPos += (fixedContainerY - ancestorY);
1083 yPos += (thisY - ancestorY);
1092 parentLayer->convertToLayerCoords(ancestorLayer, xPos, yPos);
1095 yPos += y();
H A DRenderBlockLineLayout.cpp1117 RootInlineBox* RenderBlock::determineEndPosition(RootInlineBox* startLine, InlineIterator& cleanLineStart, BidiStatus& cleanLineBidiStatus, int& yPos) argument
1137 yPos = prev->blockHeight();
1184 // Set our yPos to be the block height of endLine.
/external/webkit/WebCore/platform/chromium/
H A DScrollbarThemeChromium.cpp113 const int yPos = rect.topLeft().y() + (rect.height() * percent); local
115 IntPoint tick(scrollbar->x(), yPos);
H A DScrollbarThemeChromiumMac.mm438 const int yPos = static_cast<int>((thumbArea.topLeft().y() + (thumbArea.height() * percent))) & ~1;
442 FloatRect tickRect(thumbArea.topLeft().x() + indent, yPos, thumbArea.width() - 2 * indent - 1, 2);
/external/webkit/WebCore/platform/graphics/chromium/
H A DHarfbuzzSkia.cpp129 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
151 *yPos = SkiaScalarToHarfbuzzFixed(points[point].fY);
/external/webkit/WebCore/svg/
H A DSVGParserUtilities.cpp177 float yPos = 0.0f; local
178 if (!parseNumber(cur, end, yPos, false))
190 pointsList->appendItem(FloatPoint(xPos, yPos), ec);
/external/webkit/JavaScriptCore/runtime/
H A DDatePrototype.cpp220 char* yPos = strchr(formatString, 'y'); local
221 if (yPos)
222 *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

Completed in 878 milliseconds