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

1 2 3 4 5 6 7 8 91011>>

  /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(
  /packages/apps/Camera2/src/com/android/camera/captureintent/event/
EventPictureCompressed.java 23 private final int mOrientation;
27 mOrientation = orientation;
35 return mOrientation;
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
ItemAlignment.java 31 private int mOrientation;
34 mOrientation = orientation;
41 return ItemAlignmentFacetHelper.getAlignmentPosition(itemView, this, mOrientation);
45 private int mOrientation = HORIZONTAL;
64 mOrientation = orientation;
65 if (mOrientation == HORIZONTAL) {
75 return mOrientation;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
ImageResource.java 27 protected final int mOrientation;
31 mOrientation = orientation;
61 return mOrientation;
  /frameworks/av/services/camera/libcameraservice/api1/
CameraClient.h 142 int mOrientation; // Current display orientation
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
StaggeredGridLayoutManagerWrapContentTest.java 41 int mOrientation = StaggeredGridLayoutManager.VERTICAL;
61 unspecifiedWithHintTest(mOrientation == StaggeredGridLayoutManager.HORIZONTAL);
86 mOrientation = HORIZONTAL;
149 return new StaggeredGridLayoutManager(3, mOrientation);
  /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;
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTest/java/android/databinding/testapp/
BaseDataBinderTest.java 31 private int mOrientation;
41 mOrientation = orientation;
47 getActivity().setRequestedOrientation(mOrientation);
  /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;
  /frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
RemoteHardwareConfig.java 39 private ScreenOrientation mOrientation;
61 mOrientation = orientation;
69 mOrientation, mScreenRoundness, mHasSoftwareButtons);
  /frameworks/opt/bitmap/src/com/android/bitmap/
ReusableBitmap.java 30 private int mOrientation;
66 return mOrientation;
70 mOrientation = orientation;
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
DividerItemDecoration.java 54 private int mOrientation;
87 mOrientation = orientation;
107 if (mOrientation == VERTICAL) {
175 if (mOrientation == VERTICAL) {
  /hardware/qcom/display/msm8084/liboverlay/
overlayRotator.h 149 utils::eTransform mOrientation;
201 utils::eTransform mOrientation;
  /hardware/qcom/display/msm8226/liboverlay/
overlayMdp.h 121 utils::eTransform mOrientation; //Holds requested orientation
overlayRotator.h 156 utils::eTransform mOrientation;
210 utils::eTransform mOrientation;
  /hardware/qcom/display/msm8960/liboverlay/
overlayRotator.h 165 utils::eTransform mOrientation;
215 utils::eTransform mOrientation;
  /hardware/qcom/display/msm8994/liboverlay/
overlayMdp.h 119 utils::eTransform mOrientation; //Holds requested orientation
overlayRotator.h 190 utils::eTransform mOrientation;
273 utils::eTransform mOrientation;
  /packages/apps/Camera2/src/com/android/camera/app/
OrientationManager.java 13 private final int mOrientation;
15 mOrientation = orientation;
  /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) +
  /frameworks/av/include/media/
MicrophoneInfo.h 53 mOrientation.push_back(characteristic.orientation.x);
54 mOrientation.push_back(characteristic.orientation.y);
55 mOrientation.push_back(characteristic.orientation.z);
84 RETURN_IF_FAILED(writeFloatVector(parcel, mOrientation));
113 RETURN_IF_FAILED(readFloatVector(parcel, &mOrientation, 3));
178 return mOrientation;
237 Vector<float> mOrientation;
  /frameworks/base/core/java/android/view/
OrientationEventListener.java 34 private int mOrientation = ORIENTATION_UNKNOWN;
141 if (orientation != mOrientation) {
142 mOrientation = orientation;
  /frameworks/base/graphics/java/android/graphics/drawable/
ClipDrawable.java 80 mState.mOrientation = orientation;
143 state.mOrientation = a.getInt(
144 R.styleable.ClipDrawable_clipOrientation, state.mOrientation);
186 if ((mState.mOrientation & HORIZONTAL) != 0) {
192 if ((mState.mOrientation & VERTICAL) != 0) {
216 int mOrientation = HORIZONTAL;
223 mOrientation = orig.mOrientation;

Completed in 2333 milliseconds

1 2 3 4 5 6 7 8 91011>>