HomeSort by relevance Sort by last modified time
    Searched defs:mOrientation (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /development/samples/ApiDemos/src/com/example/android/apis/app/
ScreenOrientation.java 32 Spinner mOrientation;
60 mOrientation = (Spinner)findViewById(R.id.orientation);
64 mOrientation.setAdapter(adapter);
65 mOrientation.setOnItemSelectedListener(
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
MockOrientationObserver.java 14 public int mOrientation = -1;
19 mOrientation = orientation;
  /frameworks/av/services/camera/libcameraservice/api1/
CameraClient.h 131 int mOrientation; // Current display orientation
  /packages/apps/Launcher2/src/com/android/launcher2/
HandleView.java 33 private int mOrientation = ORIENTATION_HORIZONTAL;
47 mOrientation = a.getInt(R.styleable.HandleView_direction, ORIENTATION_HORIZONTAL);
59 return (mOrientation == ORIENTATION_HORIZONTAL && direction == FOCUS_DOWN) ?
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
RotateLayout.java 28 private int mOrientation;
52 switch (mOrientation) {
67 switch(mOrientation) {
83 switch (mOrientation) {
101 mChild.setRotation(-mOrientation);
107 if (mOrientation == orientation) return;
108 mOrientation = orientation;
  /packages/apps/Camera2/src/com/android/camera/ui/
RotateLayout.java 32 private int mOrientation;
57 switch (mOrientation) {
72 switch(mOrientation) {
88 switch (mOrientation) {
106 mChild.setRotation(-mOrientation);
118 if (mOrientation == orientation) return;
119 mOrientation = orientation;
124 return mOrientation;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StateAdapter.java 35 private int mOrientation;
54 view.setOrientation(mOrientation);
77 mOrientation = orientation;
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/decorator/
DividerItemDecoration.java 41 private int mOrientation;
54 mOrientation = orientation;
59 if (mOrientation == VERTICAL_LIST) {
102 if (mOrientation == VERTICAL_LIST) {
  /frameworks/opt/bitmap/src/com/android/bitmap/
ReusableBitmap.java 30 private int mOrientation;
66 return mOrientation;
70 mOrientation = orientation;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ItemAlignment.java 35 private int mOrientation;
43 mOrientation = orientation;
95 if (mOrientation == HORIZONTAL) {
144 private int mOrientation = HORIZONTAL;
163 mOrientation = orientation;
164 if (mOrientation == HORIZONTAL) {
174 return mOrientation;
WindowAlignment.java 251 private int mOrientation = HORIZONTAL;
270 mOrientation = orientation;
271 if (mOrientation == HORIZONTAL) {
281 return mOrientation;
  /frameworks/support/v4/java/android/support/v4/print/
PrintHelper.java 117 int mOrientation = ORIENTATION_LANDSCAPE;
134 public void setOrientation(int orientation) { mOrientation = orientation; }
137 public int getOrientation() { return mOrientation; }
  /hardware/qcom/display/msm8084/liboverlay/
overlayRotator.h 149 utils::eTransform mOrientation;
201 utils::eTransform mOrientation;
  /hardware/qcom/display/msm8226/liboverlay/
overlayRotator.h 149 utils::eTransform mOrientation;
201 utils::eTransform mOrientation;
  /hardware/qcom/display/msm8960/liboverlay/
overlayRotator.h 165 utils::eTransform mOrientation;
215 utils::eTransform mOrientation;
  /hardware/qcom/display/msm8974/liboverlay/
overlayRotator.h 163 utils::eTransform mOrientation;
215 utils::eTransform mOrientation;
  /packages/apps/Camera/src/com/android/camera/ui/
RotateLayout.java 38 private int mOrientation;
66 switch (mOrientation) {
83 switch (mOrientation) {
97 mMatrix.postRotate(mOrientation);
111 switch (mOrientation) {
125 canvas.rotate(-mOrientation, 0, 0);
135 switch(mOrientation) {
152 switch (mOrientation) {
170 mChild.setRotation(-mOrientation);
183 if (mOrientation == orientation) return
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
AccelerometerListener.java 41 // mOrientation is the orientation value most recently reported to the client.
42 private int mOrientation;
46 // mOrientation.
76 mOrientation = ORIENTATION_UNKNOWN;
99 if (mOrientation != orientation) {
148 mOrientation = mPendingOrientation;
151 (mOrientation == ORIENTATION_HORIZONTAL ? "horizontal"
152 : (mOrientation == ORIENTATION_VERTICAL ? "vertical"
155 mListener.orientationChanged(mOrientation);
ProximitySensor.java 45 private int mOrientation = AccelerometerListener.ORIENTATION_UNKNOWN;
74 mOrientation = orientation;
92 mOrientation = AccelerometerListener.ORIENTATION_UNKNOWN;
189 (mOrientation == AccelerometerListener.ORIENTATION_HORIZONTAL);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollAdapterEditScrollListener.java 60 private int mOrientation;
78 mOrientation = mScrollAdapterView.getOrientation();
86 if (mOrientation == ScrollAdapterView.HORIZONTAL) {
88 } else if (mOrientation == ScrollAdapterView.VERTICAL) {
130 if (mOrientation == ScrollAdapterView.HORIZONTAL) {
142 if (mOrientation == ScrollAdapterView.HORIZONTAL) {
155 if (mOrientation == ScrollAdapterView.HORIZONTAL) {
167 if (mOrientation == ScrollAdapterView.HORIZONTAL) {
180 if (mOrientation == ScrollAdapterView.HORIZONTAL) {
193 if (mOrientation == ScrollAdapterView.HORIZONTAL)
    [all...]
  /packages/services/Telephony/src/com/android/phone/
AccelerometerListener.java 41 // mOrientation is the orientation value most recently reported to the client.
42 private int mOrientation;
46 // mOrientation.
76 mOrientation = ORIENTATION_UNKNOWN;
99 if (mOrientation != orientation) {
148 mOrientation = mPendingOrientation;
151 (mOrientation == ORIENTATION_HORIZONTAL ? "horizontal"
152 : (mOrientation == ORIENTATION_VERTICAL ? "vertical"
155 mListener.orientationChanged(mOrientation);
  /development/samples/Compass/src/com/example/android/compass/
CompassActivity.java 54 private float[] mOrientation = new float[3];
228 SensorManager.getOrientation(mR, mOrientation);
234 Log.d("Compass", "yaw: " + (int)(mOrientation[0]*rad2deg) +
235 " pitch: " + (int)(mOrientation[1]*rad2deg) +
236 " roll: " + (int)(mOrientation[2]*rad2deg) +
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ScreenOrientationListener.java 149 // mOrientation will be updated every time the orientation changes. When not
152 private int mOrientation;
224 obs.onScreenOrientationChanged(mOrientation);
252 int previousOrientation = mOrientation;
257 if (mOrientation == previousOrientation) {
262 observer.onScreenOrientationChanged(mOrientation);
267 * Updates |mOrientation| based on the default display rotation.
275 mOrientation = 0;
278 mOrientation = 90;
281 mOrientation = 180
    [all...]
  /frameworks/base/core/java/android/view/
OrientationEventListener.java 34 private int mOrientation = ORIENTATION_UNKNOWN;
141 if (orientation != mOrientation) {
142 mOrientation = orientation;
  /frameworks/native/services/surfaceflinger/
DisplayDevice.h 116 int getOrientation() const { return mOrientation; }
216 int mOrientation;

Completed in 608 milliseconds

1 2 3 4 5 6