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

12 3 4 5 6

  /frameworks/support/v4/kitkat/android/support/v4/print/
PrintHelperKitkat.java 89 int mOrientation = ORIENTATION_LANDSCAPE;
138 mOrientation = orientation;
148 return mOrientation;
455 if (mOrientation == ORIENTATION_LANDSCAPE) {
457 } else if (mOrientation == ORIENTATION_PORTRAIT) {
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
StaggeredGridLayoutManager.java 107 private int mOrientation;
206 mOrientation = orientation;
286 final int preferredSpanDir = mOrientation == VERTICAL && isLayoutRTL() ? 1 : -1;
388 if (orientation == mOrientation) {
391 mOrientation = orientation;
493 mPrimaryOrientation = OrientationHelper.createOrientationHelper(this, mOrientation);
495 .createOrientationHelper(this, 1 - mOrientation);
507 if (mOrientation == VERTICAL || !isLayoutRTL()) {
765 if (mOrientation == VERTICAL) {
    [all...]
  /hardware/qcom/display/msm8084/liboverlay/
overlayMdp.h 121 utils::eTransform mOrientation; //Holds requested orientation
  /hardware/qcom/display/msm8226/liboverlay/
overlayMdp.h 119 utils::eTransform mOrientation; //Holds requested orientation
  /hardware/qcom/display/msm8960/liboverlay/
overlayMdp.h 125 utils::eTransform mOrientation; //Holds requested orientation
  /hardware/qcom/display/msm8974/liboverlay/
overlayMdp.h 126 utils::eTransform mOrientation; //Holds requested orientation
  /packages/apps/Camera/src/com/android/camera/
PreviewGestures.java 61 private int mOrientation;
93 mOrientation = orientation;
247 switch (mOrientation) {
  /packages/apps/Camera2/src/com/android/camera/
TextureViewHelper.java 70 private int mOrientation = UNSET;
99 if (mWidth != width || mHeight != height || mOrientation != rotation) {
102 mOrientation = rotation;
257 matrix = info.getPreviewTransform(mOrientation, new RectF(0, 0, mWidth, mHeight),
  /packages/apps/Camera2/src/com/android/camera/ui/
FaceView.java 45 private int mOrientation;
119 mOrientation = orientation;
188 mMatrix.postRotate(mOrientation); // postRotate is clockwise
189 canvas.rotate(-mOrientation); // rotate is counter-clockwise (for canvas)
ZoomView.java 51 private int mOrientation;
84 rotationMatrix.setRotate(mOrientation, 0, 0);
128 if ((mOrientation + 360) % 180 == 0) {
159 rotation.setRotate(mOrientation);
209 mOrientation = orientation;
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
FaceView.java 40 private int mOrientation;
72 mOrientation = orientation;
129 mMatrix.postRotate(mOrientation); // postRotate is clockwise
130 canvas.rotate(-mOrientation); // rotate is counter-clockwise (for canvas)
IndicatorControl.java 48 private int mOrientation = 0;
65 mOrientation = orientation;
SecondLevelIndicatorControlBar.java 41 int mOrientation = 0;
65 if (mOrientation != 0) setOrientation(mOrientation);
167 mOrientation = orientation;
ZoomControl.java 44 protected int mOrientation;
211 mOrientation = orientation;
SharePopup.java 62 private int mOrientation;
85 r.setOrientation(mOrientation);
164 mOrientation = orientation;
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 74 private int mOrientation = VERTICAL;
97 mOrientation = a.getInt(R.styleable.ApplicationsStackLayout_stackOrientation, VERTICAL);
127 return mOrientation;
138 if (mOrientation == VERTICAL) {
148 if (mOrientation == VERTICAL) {
187 if (mOrientation == VERTICAL) {
247 final boolean isVertical = mOrientation == VERTICAL;
  /development/samples/devbytes/graphics/FoldingLayout/src/com/example/android/foldinglayout/
FoldingLayout.java 72 private Orientation mOrientation = Orientation.HORIZONTAL;
181 if (orientation != mOrientation) {
182 mOrientation = orientation;
206 return mOrientation;
218 prepareFold(mOrientation, mAnchorFactor, mNumberOfFolds);
246 mOrientation = orientation;
FoldingLayoutActivity.java 84 private Orientation mOrientation = Orientation.HORIZONTAL;
284 mOrientation = (mOrientation == Orientation.HORIZONTAL) ? Orientation.VERTICAL :
286 item.setTitle((mOrientation == Orientation.HORIZONTAL) ? R.string.vertical :
289 mFoldLayout.setOrientation(mOrientation);
383 if (mOrientation == Orientation.VERTICAL) {
  /packages/apps/Browser/src/com/android/browser/
NavScreen.java 68 int mOrientation;
77 mOrientation = activity.getResources().getConfiguration().orientation;
101 if (newconfig.orientation != mOrientation) {
104 mOrientation = newconfig.orientation;
130 mScroller.setOrientation(mOrientation == Configuration.ORIENTATION_LANDSCAPE
  /packages/apps/Camera/src/com/android/camera/ui/
FaceView.java 49 private int mOrientation;
124 mOrientation = orientation;
198 mMatrix.postRotate(mOrientation); // postRotate is clockwise
199 canvas.rotate(-mOrientation); // rotate is counter-clockwise (for canvas)
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryAdapter.java 39 private int mOrientation;
96 view.setOrientation(mOrientation);
102 if (mOrientation == CategoryView.HORIZONTAL) {
109 && mOrientation == CategoryView.VERTICAL) {
194 mOrientation = orientation;
IconView.java 45 private int mOrientation = HORIZONTAL;
91 if (mOrientation == HORIZONTAL) {
127 return mOrientation;
131 mOrientation = orientation;
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoCarousel.java 57 private int mOrientation;
215 } else if (orientation == mOrientation) {
282 mOrientation = (mWidth > mHeight ? LANDSCAPE : PORTRAIT);
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
TargetControlPane.java 83 private int mOrientation = 0;
158 mOrientation = orientation;
160 mCurrentOutput.setUiOrientation(mOrientation);
240 mCurrentOutput.setUiOrientation(mOrientation);
  /frameworks/base/graphics/java/android/graphics/drawable/
ClipDrawable.java 70 mClipState.mOrientation = orientation;
109 mClipState.mOrientation = orientation;
226 if ((mClipState.mOrientation & HORIZONTAL) != 0) {
231 if ((mClipState.mOrientation & VERTICAL) != 0) {
274 int mOrientation;
291 mOrientation = orig.mOrientation;

Completed in 642 milliseconds

12 3 4 5 6