HomeSort by relevance Sort by last modified time
    Searched refs:topLeft (Results 26 - 50 of 97) sorted by null

12 3 4

  /frameworks/base/core/java/android/transition/
ChangeBounds.java 87 new Property<ViewBounds, PointF>(PointF.class, "topLeft") {
89 public void set(ViewBounds viewBounds, PointF topLeft) {
90 viewBounds.setTopLeft(topLeft);
130 new Property<View, PointF>(PointF.class, "topLeft") {
132 public void set(View view, PointF topLeft) {
133 int left = Math.round(topLeft.x);
134 int top = Math.round(topLeft.y);
149 public void set(View view, PointF topLeft) {
150 int left = Math.round(topLeft.x);
151 int top = Math.round(topLeft.y)
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
ExternalVideoSurfaceContainer.java 220 RenderCoordinates.NormalizedPoint topLeft = renderCoordinates.createNormalizedPoint();
222 topLeft.setAbsoluteCss(mLeft, mTop);
224 float top = topLeft.getYPix();
225 float left = topLeft.getXPix();
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FELighting.cpp 72 inline void FELighting::LightingData::topLeft(int offset, IntPoint& normalVector)
126 int topLeft = static_cast<int>(pixels->item(offset - cPixelSize + cAlphaChannelOffset));
133 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1) - bottomLeft + bottomRight);
134 normalVector.setY(-topLeft - (top << 1) - topRight + bottomLeft + (bottom << 1) + bottomRight);
142 int topLeft = static_cast<int>(pixels->item(offset - cPixelSize + cAlphaChannelOffset));
147 normalVector.setX(-topLeft + top - (left << 1) + (center << 1) - bottomLeft + bottom);
148 normalVector.setY(-topLeft - (top << 1) + bottomLeft + (bottom << 1));
168 int topLeft = static_cast<int>(pixels->item(offset - cPixelSize + cAlphaChannelOffset));
171 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1));
172 normalVector.setY(-topLeft - (top << 1) - topRight + left + (center << 1) + right)
    [all...]
FELighting.h 64 inline void topLeft(int offset, IntPoint& normalVector);
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRoundedRect.cpp 48 FloatRoundedRect::FloatRoundedRect(const FloatRect& rect, const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight)
50 , m_radii(topLeft, topRight, bottomLeft, bottomRight)
FloatRoundedRectTest.cpp 59 << ::testing::PrintToString(radii.topLeft()) << ", "
90 EXPECT_EQ(FloatSize(), r.radii().topLeft());
126 EXPECT_EQ(cornerRadii, r.radii().topLeft());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MarqueeGesture.java 80 LayoutPoint topLeft = ControlPoint.create(mCanvas, x, y).toLayout();
82 mCanvas.getSelectionManager().selectWithin(topLeft, bottomRight, mInitialSelection);
ViewHierarchy.java 386 * @param topLeft The top left corner of the selection rectangle.
392 LayoutPoint topLeft,
394 Rectangle selectionRectangle = new Rectangle(topLeft.x, topLeft.y, bottomRight.x
395 - topLeft.x, bottomRight.y - topLeft.y);
GCWrapper.java 418 public void drawString(@NonNull String string, @NonNull Point topLeft) {
419 drawString(string, topLeft.x, topLeft.y);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestGraphics.java 90 public void drawString(@NonNull String string, @NonNull Point topLeft) {
91 mDrawn.add("drawString(" + string + "," + topLeft + ")");
  /external/eigen/test/
geo_alignedbox.cpp 124 Vector2f topLeft; topLeft << m[0], M[1];
126 VERIFY_IS_APPROX( topLeft, box.corner( BoxType::TopLeft ) );
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_pic_param_set.c 179 ALLOCATE(pPicParamSet->topLeft,
183 if (pPicParamSet->topLeft == NULL ||
191 pPicParamSet->topLeft[i] = value;
h264bsd_storage.c 244 FREE(pStorage->pps[id]->topLeft);
253 FREE(pStorage->pps[id]->topLeft);
816 ASSERT(pps->topLeft);
820 if (pps->topLeft[i] > pps->bottomRight[i] ||
824 if ( (pps->topLeft[i] % sps->picWidthInMbs) >
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.cpp 283 caretRect.moveBy(roundedLayoutPoint(firstBox->topLeft()));
568 yield(FloatRect(curr->topLeft(), curr->size()));
706 LayoutPoint topLeft;
708 topLeft = flooredLayoutPoint(firstBox->topLeft());
709 return adjustedPositionRelativeToOffsetParent(topLeft).x();
714 LayoutPoint topLeft;
716 topLeft = flooredLayoutPoint(firstBox->topLeft());
717 return adjustedPositionRelativeToOffsetParent(topLeft).y()
    [all...]
InlineBox.h 53 InlineBox(RenderObject& obj, FloatPoint topLeft, float logicalWidth, bool firstLine, bool constructed,
59 , m_topLeft(topLeft)
202 const FloatPoint& topLeft() const { return m_topLeft; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderData.h 122 const LengthSize& topLeft() const { return m_topLeft; }
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCommon.cpp 231 int* endIndex, SkPoint* topLeft, bool* unsortable, bool* done, bool firstPass) {
246 if (bounds.fBottom < topLeft->fY) {
250 if (bounds.fBottom == topLeft->fY && bounds.fRight < topLeft->fX) {
254 contour->topSortableSegment(*topLeft, &bestXY, &topStart);
262 *topLeft = bestXY;
320 int* endIndexPtr, SkPoint* topLeft, bool* unsortable, bool* done, bool* onlyVertical,
322 SkOpSegment* current = findTopSegment(contourList, indexPtr, endIndexPtr, topLeft, unsortable,
  /external/skia/src/pathops/
SkPathOpsCommon.cpp 231 int* endIndex, SkPoint* topLeft, bool* unsortable, bool* done, bool firstPass) {
246 if (bounds.fBottom < topLeft->fY) {
250 if (bounds.fBottom == topLeft->fY && bounds.fRight < topLeft->fX) {
254 contour->topSortableSegment(*topLeft, &bestXY, &topStart);
262 *topLeft = bestXY;
320 int* endIndexPtr, SkPoint* topLeft, bool* unsortable, bool* done, bool* onlyVertical,
322 SkOpSegment* current = findTopSegment(contourList, indexPtr, endIndexPtr, topLeft, unsortable,
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
StyledCornersBitmapDrawable.java 123 public void setCornerStyles(int topLeft, int topRight, int bottomRight, int bottomLeft) {
124 boolean changed = mTopLeftCornerStyle != topLeft
129 mTopLeftCornerStyle = topLeft;
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 193 Float3 topLeft = new Float3(-1.0f, 1.0f, 0.0f);
198 fullQuad.set_position(0, topLeft, false);
  /frameworks/base/core/java/com/android/internal/app/
WindowDecorActionBar.java 766 int topLeft[] = {0, 0};
767 mContainerView.getLocationInWindow(topLeft);
768 startingY -= topLeft[1];
827 int topLeft[] = {0, 0};
828 mContainerView.getLocationInWindow(topLeft);
829 endingY -= topLeft[1];
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
WindowDecorActionBar.java 777 int topLeft[] = {0, 0};
778 mContainerView.getLocationInWindow(topLeft);
779 startingY -= topLeft[1];
838 int topLeft[] = {0, 0};
839 mContainerView.getLocationInWindow(topLeft);
840 endingY -= topLeft[1];
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BoxPainter.cpp 248 if (!clipRect.radii().topLeft().isEmpty() || !clipRect.radii().bottomRight().isEmpty()) {
251 topCornerRadii.setTopLeft(clipRect.radii().topLeft());
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 228 float topLeft = (float) Math.sqrt(xFloorSq + yFloorSq);
232 float sum = topLeft + topRight + btmLeft + btmRight;
234 float value = topLeft / sum;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGradientValue.cpp     [all...]

Completed in 2342 milliseconds

12 3 4