HomeSort by relevance Sort by last modified time
    Searched defs:mPoint (Results 1 - 11 of 11) sorted by null

  /frameworks/base/core/java/android/animation/
PointFEvaluator.java 27 * mPoint will be modified and returned on every evaluate.
29 private PointF mPoint;
51 mPoint = reuse;
76 if (mPoint != null) {
77 mPoint.set(x, y);
78 return mPoint;
  /cts/tests/tests/graphics/src/android/graphics/cts/
PointTest.java 35 private Point mPoint;
39 mPoint = new Point();
40 mPoint = new Point(10, 10);
43 mPoint = new Point(point);
48 mPoint = new Point();
49 mPoint.set(3, 4);
50 assertEquals(3, mPoint.x);
51 assertEquals(4, mPoint.y);
56 mPoint = new Point(3, 4);
57 assertTrue(mPoint.equals(3, 4))
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/interactions/
TouchPointManager.java 15 private Point mPoint = new Point();
28 return mPoint;
32 mPoint.set(x, y);
44 return mPoint.x != 0 || mPoint.y != 0;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
HardwareBgDrawable.java 33 private int mPoint;
69 mPoint = point;
74 return mPoint;
79 if (mPoint >= 0 && !mRotatedBackground) {
81 int top = bounds.top + mPoint;
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/
ViewAutoScrollerTest.java 48 private Point mPoint;
57 mPoint = new Point();
72 return mPoint;
96 mPoint = new Point(0, VIEW_HEIGHT/2);
108 mPoint = new Point(0, TOP_Y_POINT);
120 mPoint = new Point(0, TOP_Y_POINT);
131 mPoint = new Point(0, BOTTOM_Y_POINT);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
PathAnimations.java 244 Point mPoint = new Point();
252 mPoint.set(Math.round(value.x), Math.round(value.y));
253 return mPoint;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
HeadsUpAppearanceController.java 64 Point mPoint;
151 if (mPoint == null) {
152 mPoint = new Point();
157 mStackScroller.getDisplay().getRealSize(mPoint);
158 realDisplaySize = mPoint.x;
  /external/robolectric/v1/lib/main/
maps_v16.jar 
  /frameworks/base/core/java/android/view/
View.java     [all...]
  /prebuilts/tools/common/api-versions/android-1/
android.jar 
  /prebuilts/tools/common/api-versions/android-2/
android.jar 

Completed in 605 milliseconds