Searched defs:bottom (Results 1 - 16 of 16) sorted by relevance

/development/ndk/platforms/android-9/include/android/
H A Drect.h34 int32_t bottom; member in struct:ARect
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
H A DCube.java22 public Cube(GLWorld world, float left, float bottom, float back, float right, float top, float front) { argument
24 GLVertex leftBottomBack = addVertex(left, bottom, back);
25 GLVertex rightBottomBack = addVertex(right, bottom, back);
28 GLVertex leftBottomFront = addVertex(left, bottom, front);
29 GLVertex rightBottomFront = addVertex(right, bottom, front);
34 // bottom
/development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
H A DExpandingListView.java87 * Calculates the top and bottom bound changes of the selected item. These values are
99 * full contents are visible. Lastly, this behaviour varies slightly near the bottom
100 * of the listview in order to account for the fact that the bottom bounds of the actual
103 private int[] getTopAndBottomTranslations(int top, int bottom, int yDelta, argument
108 int height = bottom - top;
128 boolean isCellCompletelyDisappearing = bottom - yTranslateBottom < 0;
134 yTranslateBottom = bottom;
147 * 1. Store the current top and bottom bounds of each visible item in the listview.
180 /* Store the original top and bottom bounds of all the cells.*/
376 /* Store the original top and bottom bound
[all...]
/development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
H A DBackgroundContainer.java51 public void showBackground(int top, int bottom) { argument
54 mOpenAreaHeight = bottom;
/development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
H A DBackgroundContainer.java52 public void showBackground(int top, int bottom) { argument
55 mOpenAreaHeight = bottom;
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DCustomLayout.java133 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
144 // These are the top and bottom edges in which we are performing layout.
146 final int parentBottom = bottom - top - getPaddingBottom();
170 mTmpContainerRect.bottom = parentBottom - lp.bottomMargin;
178 mTmpChildRect.right, mTmpChildRect.bottom);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
H A DMatrixStack.java42 public void glFrustumf(float left, float right, float bottom, float top, argument
44 Matrix.frustumM(mMatrix, mTop, left, right, bottom, top, near, far);
47 public void glFrustumx(int left, int right, int bottom, int top, int near, argument
50 fixedToFloat(bottom), fixedToFloat(top),
102 public void glOrthof(float left, float right, float bottom, float top, argument
104 Matrix.orthoM(mMatrix, mTop, left, right, bottom, top, near, far);
107 public void glOrthox(int left, int right, int bottom, int top, int near, argument
110 fixedToFloat(bottom), fixedToFloat(top),
H A DMatrixTrackingGL.java260 public void glFrustumf(float left, float right, float bottom, float top, argument
262 mCurrent.glFrustumf(left, right, bottom, top, near, far);
263 mgl.glFrustumf(left, right, bottom, top, near, far);
267 public void glFrustumx(int left, int right, int bottom, int top, int near, argument
269 mCurrent.glFrustumx(left, right, bottom, top, near, far);
270 mgl.glFrustumx(left, right, bottom, top, near, far);
490 public void glOrthof(float left, float right, float bottom, float top, argument
492 mCurrent.glOrthof(left, right, bottom, top, near, far);
493 mgl.glOrthof(left, right, bottom, top, near, far);
497 public void glOrthox(int left, int right, int bottom, in argument
[all...]
/development/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DExploreByTouchHelperActivity.java80 // Adds an item at the bottom-right quarter of the custom view.
140 * @param bottom Bottom coordinate as a fraction of the parent height,
145 public void addItem(String description, float top, float left, float bottom, float right) { argument
147 item.bounds = new RectF(top, left, bottom, right);
221 out.bottom = (int) (in.bottom * height);
/development/samples/Home/src/com/example/android/home/
H A DHome.java748 public void setBounds(int left, int top, int right, int bottom) { argument
749 super.setBounds(left, top, right, bottom);
/development/samples/training/AnimationsDemo/libs/
H A Dandroid-support-v13.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v13/ android/support/v13/app/ ...
/development/samples/training/InteractiveChart/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/app/ ...
/development/samples/training/bitmapfun/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/app/ ...
/development/samples/training/NavigationDrawer/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/util/ ...
/development/samples/training/ContactsList/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/development/samples/training/EffectiveNavigation/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...

Completed in 1236 milliseconds