Searched refs:top (Results 226 - 250 of 349) sorted by relevance

1234567891011>>

/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardSecurityViewFlipper.java62 ev.offsetLocation(mTempRect.left, mTempRect.top);
64 ev.offsetLocation(-mTempRect.left, -mTempRect.top);
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py132 top = 0.95 - height * index
133 axes = self.fig.add_axes([0.1, top, 0.8, height],
/frameworks/native/include/utils/
H A DSortedVector.h99 //! stack-usage of the vector. returns the top of the stack (last element)
100 const TYPE& top() const;
201 const TYPE& SortedVector<TYPE>::top() const { function in class:android::SortedVector
/frameworks/base/core/java/android/webkit/
H A DWebView.java566 * Gets the SSL certificate for the main top-level page or null if there is
569 * @return the SSL certificate for the main top-level page
577 * Sets the SSL certificate for the main top-level page.
978 * @param top true to jump to the top of the page
981 public boolean pageUp(boolean top) { argument
983 return mProvider.pageUp(top);
1781 public boolean super_setFrame(int left, int top, int right, int bottom) { argument
1782 return WebView.super.setFrame(left, top, right, bottom);
2092 protected boolean setFrame(int left, int top, in argument
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp184 rect.left = rect.top = 0;
199 out << rect.top << ", ";
207 // Parse HWC rectangle description of form [left, top, right, bottom]
228 in >> rect.top;
249 // Validate right and bottom are greater than left and top
250 if ((rect.right <= rect.left) || (rect.bottom <= rect.top)) { return rect; }
485 - list->hwLayers[layer].sourceCrop.top)
487 - list->hwLayers[layer].displayFrame.top));
/frameworks/base/core/java/android/view/
H A DViewGroup.java357 * Clip bounds are the raw values of {@link #getLeft() left}, {@link #getTop() top},
382 // Index of the child's top position in the mLocation array
636 // root namespace means we should consider ourselves the top of the
2539 protected void internalSetPadding(int left, int top, int right, int bottom) { argument
2540 super.internalSetPadding(left, top, right, bottom);
2713 c.getTop() + insets.top,
4044 (int) (boundingRect.top - 0.5f),
4084 (int) (boundingRect.top - 0.5f),
4110 final int top = mTop;
4113 if (!dirty.intersect(0, 0, mRight - left, mBottom - top)) {
4203 invalidateChildInParentFast(int left, int top, final Rect dirty) argument
5839 setMargins(int left, int top, int right, int bottom) argument
5866 setMarginsRelative(int start, int top, int end, int bottom) argument
[all...]
H A DSurfaceView.java51 * normally appear on top of it. This can be used to place overlays such as
52 * buttons on top of the Surface, though note however that it can have an
58 * properties are used to draw a sibling view on top of the SurfaceView, the
291 protected boolean setFrame(int left, int top, int right, int bottom) { argument
292 boolean result = super.setFrame(left, top, right, bottom);
349 * Control whether the surface view's surface is placed on top of another
351 * This is typically used to place overlays on top of an underlying media
366 * Control whether the surface view's surface is placed on top of its
371 * SurfaceView is in will be visible on top of its surface.
450 + " top
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dintra_est.cpp52 /* top neighbor */
217 uint8 *pred, *top, *left; local
230 top = curL - pitch;
234 word1 = *((uint32*)(top)); /* read 4 bytes from top */
235 word2 = *((uint32*)(top + 4)); /* read 4 bytes from top */
236 word3 = *((uint32*)(top + 8)); /* read 4 bytes from top */
237 word4 = *((uint32*)(top
[all...]
/frameworks/base/core/java/android/widget/
H A DStackView.java1094 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
1313 p.invalidate(globalInvalidateRect.left, globalInvalidateRect.top,
1317 p.invalidate(globalInvalidateRect.left, globalInvalidateRect.top,
1348 int top = Math.min(mView.getTop() + verticalOffsetDelta, mView.getTop());
1351 invalidateRectf.set(left, top, right, bottom);
1354 float yoffset = -invalidateRectf.top;
1360 (int) Math.floor(invalidateRectf.top),
H A DGridLayout.java181 * {@link android.view.View#getTop() top},
202 * the quantity {@code top - layoutParams.topMargin} is the same for all children that
849 getMargin1(c, false, true) - insets.top,
1019 return result - (horizontal ? insets.left + insets.right : insets.top + insets.bottom);
1057 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
1061 int targetHeight = bottom - top;
1131 cy -= insets.top;
1133 height += (insets.top + insets.bottom);
1875 int left, int top, int right, int bottom,
1878 setMargins(left, top, righ
1873 LayoutParams( int width, int height, int left, int top, int right, int bottom, Spec rowSpec, Spec columnSpec) argument
[all...]
H A DProgressBar.java996 invalidate(dirty.left + scrollX, dirty.top + scrollY,
1017 int top = 0;
1038 top = (h - height) / 2;
1039 bottom = top + height;
1048 mIndeterminateDrawable.setBounds(left, top, right, bottom);
H A DSpinner.java578 mSpinnerPadding.top + mSpinnerPadding.bottom, lp.height);
589 int childTop = mSpinnerPadding.top
591 mSpinnerPadding.top - child.getMeasuredHeight()) / 2);
H A DSwitch.java672 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
673 super.onLayout(changed, left, top, right, bottom);
732 int switchInnerTop = switchTop + mTempRect.top;
H A DZoomButtonsController.java453 // The gap between the top of the owner and the top of the container
464 // lp.x and lp.y should be relative to the owner's window top-left
614 // Reverse order so the child drawn on top gets first dibs.
641 if (containerCoordsY >= frame.top && containerCoordsY <= frame.bottom) {
644 distanceY = Math.min(Math.abs(frame.top - containerCoordsY),
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java140 src.left, src.top,
141 src.right, src.top,
153 dst.top = Math.min(Math.min(corners[1], corners[3]), Math.min(corners[5], corners[7]));
613 ty = dst.top - src.top * sy;
/frameworks/av/services/camera/libcameraservice/
H A DCameraHardwareInterface.h624 int left, int top, int right, int bottom)
629 crop.top = top;
623 __set_crop(struct preview_stream_ops *w, int left, int top, int right, int bottom) argument
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java154 public void setBounds(int left, int top, int right, int bottom) { argument
156 mDrawTop = top + (bottom-top - mHeight) / 2;
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java154 setPadding(padding.left, padding.top, padding.right, padding.bottom);
199 padding.top = r.getDimensionPixelSize(com.android.internal.
282 int yPaddingDips = (int) ((padding.top + padding.bottom) / density);
436 // the new view will pop in on top of the old one during the cross fade,
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java141 // with top at 0 and bottom at whatever is natural, and
338 int top = reflowed.getLineTop(i) + startv;
340 top -= toppad;
341 ints[TOP] = top;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuView.java389 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
391 super.onLayout(changed, left, top, right, bottom);
396 final int midVertical = (top + bottom) / 2;
/frameworks/native/opengl/libagl/
H A Dstate.cpp463 c->transforms.modelview.top().elements(),
468 c->transforms.projection.top().elements(),
473 c->transforms.texture[c->textures.active].top().elements(),
/frameworks/av/media/libstagefright/yuv/
H A DYUVImage.cpp203 int32_t srcStartY = srcRect.top;
285 int32_t srcStartY = srcRect.top;
/frameworks/base/core/java/android/view/animation/
H A DAnimationSet.java337 public void initializeInvalidateRegion(int left, int top, int right, int bottom) { argument
339 region.set(left, top, right, bottom);
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java333 public void glFrustumf(float left, float right, float bottom, float top, argument
336 mgl.glFrustumf(left, right, bottom, top, near, far);
340 public void glFrustumx(int left, int right, int bottom, int top, int near, argument
343 mgl.glFrustumx(left, right, bottom, top, near, far);
607 public void glOrthof(float left, float right, float bottom, float top, argument
610 mgl.glOrthof(left, right, bottom, top, near, far);
614 public void glOrthox(int left, int right, int bottom, int top, int near, argument
617 mgl.glOrthox(left, right, bottom, top, near, far);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java174 (int) Math.floor(childBounds.top),
179 + "," + (int) Math.floor(childBounds.top)

Completed in 613 milliseconds

1234567891011>>