HomeSort by relevance Sort by last modified time
    Searched refs:yPos (Results 1 - 25 of 36) sorted by null

1 2

  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 68 Bitmap b, int xPos, int yPos, int w, int h);
70 int xPos, int yPos, int w, int h);
673 int yPos = mSpec.mCellSpacing + startRow * mBlockHeight;
678 mDrawAdapter.drawDecoration(canvas, image, xPos, yPos,
685 yPos += mBlockHeight;
910 final int yPos = currentBlock * height;
911 if (yPos >= scrollPos + thisHeight) {
917 blk.doDraw(canvas, 0, yPos);
919 drawEmptyBlock(canvas, 0, yPos, currentBlock);
933 private void drawEmptyBlock(Canvas canvas, int xPos, int yPos, int row)
    [all...]
ImageGallery.java 787 Bitmap b, int xPos, int yPos, int w, int h) {
805 mDstRect.set(xPos, yPos, xPos + w, yPos + h);
809 mDstRect.set(xPos, yPos, xPos + w, yPos + h);
820 int top = (w - height) / 2 + yPos;
842 canvas.drawRect(xPos, yPos, xPos + w, yPos + h, paint);
847 int top = (h - height) / 2 + yPos;
859 int xPos, int yPos, int w, int h)
    [all...]
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
PlaybackGraphs.java 289 int yPos = LABELOFFSET;
290 canvas.drawText(label, xPos, yPos, whiteLabels);
296 yPos = LABELOFFSET + (1 + statIndex) * PlaybackView.TILE_SCALE
298 canvas.drawText(label, xPos, yPos, whiteLabels);
302 int yPos = LABELOFFSET + stringIndex * PlaybackView.TILE_SCALE / 2;
303 canvas.drawText(strings.get(stringIndex), 0, yPos, whiteLabels);
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromium.cpp 131 const int yPos = rect.y() + (rect.height() * percent);
133 IntPoint tick(scrollbar->x(), yPos);
ScrollbarThemeChromiumMac.mm 453 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/
TextureAtlas.java 285 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 * width) * 2
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderFrameSet.cpp 141 int yPos = 0;
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;
548 child->setY(yPos);
574 yPos += height + borderThickness;
580 int newHeight = yPos - borderThickness;
608 yPos = 0
    [all...]
RenderFlexibleBox.cpp 324 int yPos = borderTop() + paddingTop();
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();
690 yPos = height();
708 remainingSpace = borderTop() + paddingTop() + contentHeight() - yPos;
    [all...]
RenderBox.cpp 758 bool RenderBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action)
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))
    [all...]
RenderTable.cpp     [all...]
RenderTableSection.cpp     [all...]
RenderTable.h 228 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int xPos, int yPos, int tx, int ty, HitTestAction);
RenderTextControl.cpp 478 void RenderTextControl::hitInnerTextElement(HitTestResult& result, int xPos, int yPos, int tx, int ty)
483 yPos - ty - y() - m_innerText->renderBox()->y()));
RenderBlock.h 498 BidiStatus& cleanLineBidiStatus, int& yPos);
540 int getClearDelta(RenderBox* child, int yPos);
    [all...]
RenderTextControlSingleLine.cpp 335 bool RenderTextControlSingleLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction hitTestAction)
343 if (!RenderTextControl::nodeAtPoint(request, result, xPos, yPos, tx, ty, hitTestAction))
350 hitInnerTextElement(result, xPos, yPos, tx, ty);
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGParserUtilities.cpp 201 float yPos = 0.0f;
202 if (!parseNumber(cur, end, yPos, false))
213 pointsList.append(FloatPoint(xPos, yPos));
  /external/skia/legacy/src/ports/
SkHarfBuzzFont.cpp 83 hb_uint32 index, HB_Fixed* xPos, HB_Fixed* yPos,
104 *yPos = SkScalarToHarfbuzzFixed(pt.fY);
  /external/skia/src/ports/
SkHarfBuzzFont.cpp 83 hb_uint32 index, HB_Fixed* xPos, HB_Fixed* yPos,
104 *yPos = SkScalarToHarfbuzzFixed(pt.fY);
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
HarfbuzzSkia.cpp 122 static HB_Error getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags, hb_uint32 point, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resultingNumPoints)
144 *yPos = SkiaScalarToHarfbuzzFixed(points[point].fY);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
HarfbuzzSkia.cpp 139 static HB_Error getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags, hb_uint32 point, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resultingNumPoints)
161 *yPos = SkiaScalarToHarfbuzzFixed(points[point].fY);
  /frameworks/base/services/java/com/android/server/wm/
DimLayer.java 163 final float yPos = -1 * dh / 6;
167 mDimSurface.setPosition(xPos, yPos);
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java 501 int yPos = (getMeasuredHeight() -
533 mCandRects.elementAt(i).set(xPos - 1, yPos + mFmiCandidates.top,
534 xPos + itemTotalWidth + 1, yPos + mFmiCandidates.bottom);
539 / 2, yPos, mFootnotePaint);
553 canvas.drawText(cand, xPos + centerOffset, yPos,
  /packages/wallpapers/NoiseField/src/com/android/noisefield/
NoiseFieldRS.java 147 float yPos = Float.parseFloat(values[1]);
151 mVertexColors.set_position(i, new Float3(xPos, yPos, 0.0f), false);
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
PhaseBeamRS.java 162 float yPos = new Float(values[1]);
166 mVertexColors.set_position(i, new Float3(xPos, yPos, 0.0f), false);
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
popuplib.js 110 var yPos = parentPos[1] +
112 return [xPos, yPos];

Completed in 973 milliseconds

1 2