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

12 3 4 5 6 7

  /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) +
  /packages/apps/Camera2/src/com/android/camera/ui/
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/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;
  /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; }
  /development/samples/devbytes/graphics/FoldingLayout/src/com/example/android/foldinglayout/
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) {
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;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GridLayoutManager.java 203 private int mOrientation = HORIZONTAL;
399 mOrientation = orientation;
406 if (mOrientation == HORIZONTAL) {
512 if (mOrientation == HORIZONTAL) {
520 if (mOrientation == HORIZONTAL) {
601 return mOrientation == HORIZONTAL || mNumRows > 1;
608 return mOrientation == VERTICAL || mNumRows > 1;
656 return (mOrientation == HORIZONTAL) ? getOpticalLeft(v) : getOpticalTop(v);
660 return (mOrientation == HORIZONTAL) ? getOpticalRight(v) : getOpticalBottom(v);
664 return (mOrientation == HORIZONTAL) ? getViewCenterX(view) : getViewCenterY(view)
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
PopupTouchHandleDrawable.java 63 private int mOrientation = -1;
147 if (mOrientation == orientation) return;
149 final boolean hadValidOrientation = mOrientation != -1;
150 mOrientation = orientation;
  /hardware/qcom/display/msm8084/liboverlay/
overlayMdssRot.cpp 111 mOrientation = static_cast<utils::eTransform>(flags);
116 mRotInfo.flags |= mOrientation;
117 if(mOrientation & utils::OVERLAY_TRANSFORM_ROT_90)
236 mOrientation = utils::OVERLAY_TRANSFORM_0;
overlayRotator.h 149 utils::eTransform mOrientation;
201 utils::eTransform mOrientation;
  /hardware/qcom/display/msm8960/liboverlay/
overlayMdpRot.cpp 123 mOrientation = static_cast<utils::eTransform>(r);
128 if(mOrientation & utils::OVERLAY_TRANSFORM_ROT_90)
149 if(mOrientation & utils::OVERLAY_TRANSFORM_ROT_90)
230 mOrientation = utils::OVERLAY_TRANSFORM_0;
overlayRotator.h 165 utils::eTransform mOrientation;
215 utils::eTransform mOrientation;
  /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/LegacyCamera/src/com/android/camera/ui/
SecondLevelIndicatorControlBar.java 41 int mOrientation = 0;
65 if (mOrientation != 0) setOrientation(mOrientation);
167 mOrientation = orientation;
ZoomControl.java 44 protected int mOrientation;
211 mOrientation = orientation;
  /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/media/mca/filterpacks/java/android/filterpacks/videosrc/
MediaSource.java 95 private int mOrientation = 0;
295 switch (mOrientation) {
319 Log.v(TAG, "OrientationHint = " + mOrientation);
412 if (mOrientation == 0 || mOrientation == 180) {
516 if (mOrientation == 0 || mOrientation == 180) {
  /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
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
LinearLayoutManagerTest.java 98 mLayoutManager = new WrappedLinearLayoutManager(getActivity(), config.mOrientation,
153 .createOrientationHelper(mLayoutManager, config.mOrientation);
282 if (config.mOrientation == HORIZONTAL) {
531 if (config.mOrientation == HORIZONTAL) {
615 config.mOrientation = 1 - config.mOrientation;
616 mLayoutManager.setOrientation(config.mOrientation);
    [all...]
  /frameworks/native/services/surfaceflinger/
DisplayDevice.h 116 int getOrientation() const { return mOrientation; }
216 int mOrientation;
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
GridLayoutManager.java 102 if (mOrientation == HORIZONTAL) {
114 if (mOrientation == VERTICAL) {
133 if (mOrientation == HORIZONTAL) {
394 if (mOrientation == VERTICAL) {
413 if (mOrientation == VERTICAL) {
424 if (mOrientation == VERTICAL) {
444 if (mOrientation == VERTICAL) {
513 if (mOrientation == VERTICAL && isLayoutRTL()) { // start from last span
  /hardware/qcom/display/msm8226/liboverlay/
overlayRotator.h 156 utils::eTransform mOrientation;
210 utils::eTransform mOrientation;
  /hardware/qcom/display/msm8974/liboverlay/
overlayRotator.h 163 utils::eTransform mOrientation;
215 utils::eTransform mOrientation;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java 617 private int mOrientation = ScrollAdapterView.HORIZONTAL;
669 mOrientation = orientation;
670 if (mOrientation == ScrollAdapterView.HORIZONTAL) {
692 return mOrientation;
841 if (mOrientation == ScrollAdapterView.HORIZONTAL) {
871 if (mOrientation == ScrollAdapterView.HORIZONTAL) {
    [all...]

Completed in 1558 milliseconds

12 3 4 5 6 7