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

1 23 4 5 6

  /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) {
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
MultiPaneChallengeLayout.java 36 final int mOrientation;
74 mOrientation = a.getInt(R.styleable.MultiPaneChallengeLayout_android_orientation,
296 if (mOrientation == HORIZONTAL) {
377 final boolean fixedLayoutHorizontal = fixedLayoutSize && mOrientation == HORIZONTAL;
378 final boolean fixedLayoutVertical = fixedLayoutSize && mOrientation == VERTICAL;
523 if (parent.mOrientation == HORIZONTAL) {
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
ConfigGenerator.java 126 private ScreenOrientation mOrientation = ScreenOrientation.PORTRAIT;
153 config.setScreenOrientationQualifier(new ScreenOrientationQualifier(mOrientation));
171 mOrientation, mSoftButtons);
251 mOrientation = orientation;
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
GridLayoutManagerTest.java 71 mGlm = new WrappedGridLayoutManager(getActivity(), config.mSpanCount, config.mOrientation,
580 int mOrientation = GridLayoutManager.VERTICAL;
591 mOrientation = orientation;
596 mOrientation = orientation;
604 ", mOrientation=" + (mOrientation == GridLayoutManager.HORIZONTAL ? "h" : "v") +
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...]
StaggeredGridLayoutManagerTest.java 78 mAdapter = new GridTestAdapter(config.mItemCount, config.mOrientation);
83 config.mOrientation);
117 View child1 = mLayoutManager.findViewByPosition(config.mOrientation == VERTICAL ? 1
121 if (config.mOrientation == VERTICAL || !config.mReverseLayout) {
371 if (config.mOrientation == LinearLayoutManager.HORIZONTAL) {
618 if (config.mOrientation == VERTICAL) {
678 mLayoutManager = new WrappedLayoutManager(config.mSpanCount, config.mOrientation);
692 config.mOrientation, mLayoutManager.getOrientation());
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekAdapter.java 57 protected int mOrientation = Configuration.ORIENTATION_LANDSCAPE;
243 drawingParams.put(MonthWeekEventsView.VIEW_PARAMS_ORIENTATION, mOrientation);
282 mOrientation = mContext.getResources().getConfiguration().orientation;
MonthWeekEventsView.java 111 protected int mOrientation = Configuration.ORIENTATION_LANDSCAPE;
494 mOrientation = params.get(VIEW_PARAMS_ORIENTATION);
735 if (mOrientation == Configuration.ORIENTATION_PORTRAIT) {
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSimpleAdapter.java 62 private int mOrientation;
99 mOrientation = context.getResources().getConfiguration().orientation;
342 bg |= (position == 0 && mOrientation == Configuration.ORIENTATION_LANDSCAPE) ? IS_TOP : 0;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StateView.java 58 private int mOrientation = LinearLayout.VERTICAL;
143 if (mOrientation == LinearLayout.HORIZONTAL) {
269 mOrientation = orientation;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollAdapterView.java 166 private int mOrientation = HORIZONTAL;
547 mOrientation = orientation;
552 return mOrientation;
588 if (mOrientation == HORIZONTAL) {
692 (mOrientation == HORIZONTAL ? View.FOCUS_RIGHT : View.FOCUS_DOWN) :
693 (mOrientation == HORIZONTAL ? View.FOCUS_LEFT : View.FOCUS_UP);
    [all...]
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/
CameraRecordingStream.java 61 private int mOrientation;
99 (mOrientation != orientation);
104 mOrientation = orientation;
442 mMuxer.setOrientationHint(mOrientation);
467 mMediaRecorder.setOrientationHint(mOrientation);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/orientation/
CameraOrientationActivity.java 136 mNextPreviewOrientation = settings.mOrientation;
547 int mOrientation;
551 mOrientation = orientation;
  /frameworks/base/core/java/com/android/internal/widget/
RotarySelector.java 167 private int mOrientation;
182 mOrientation = a.getInt(R.styleable.RotarySelector_orientation, HORIZONTAL);
242 return mOrientation == HORIZONTAL;
SlidingTab.java 84 private final int mOrientation;
458 mOrientation = a.getInt(R.styleable.SlidingTab_orientation, HORIZONTAL);
720 return mOrientation == HORIZONTAL;
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
CaptureModule.java 201 private int mOrientation = OrientationEventListener.ORIENTATION_UNKNOWN;
624 mOrientation = (360 - orientation) % 360;
    [all...]
PhotoModule.java 167 private int mOrientation = OrientationEventListener.ORIENTATION_UNKNOWN;
    [all...]
PhotoUI.java 181 private final int mOrientation;
186 mOrientation = orientation;
194 if (mOrientation != 0 || mMirror) {
200 m.preRotate(mOrientation);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 255 int mOrientation;
261 mOrientation = 0;
269 mOrientation = ImageLoader.getMetadataRotation(mContext, uri);
275 doneLoadBitmap(result, new RectF(mOriginalBounds), mOrientation);
  /frameworks/base/core/java/android/gesture/
GestureOverlayView.java 85 private int mOrientation = ORIENTATION_VERTICAL;
172 mOrientation = a.getInt(R.styleable.GestureOverlayView_orientation, mOrientation);
200 return mOrientation;
204 mOrientation = orientation;
655 (mOrientation == ORIENTATION_VERTICAL ?
  /frameworks/base/core/java/android/widget/
LinearLayout.java 102 * if {@link #mOrientation} is horizontal.
126 private int mOrientation;
337 if (mOrientation == VERTICAL) {
512 if (mOrientation == VERTICAL) {
612 if (mOrientation == VERTICAL) {
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/
BackDropperFilter.java 122 private int mOrientation = 0;
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java 95 * if {@link #mOrientation} is horizontal.
115 private int mOrientation;
283 if (mOrientation == VERTICAL) {
450 if (mOrientation == VERTICAL) {
546 if (mOrientation == VERTICAL) {
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
LinearLayoutManager.java 63 int mOrientation;
75 * Based on {@link #mOrientation}, an implementation is lazily created in
257 return mOrientation == HORIZONTAL;
265 return mOrientation == VERTICAL;
288 * @see #mOrientation
292 return mOrientation;
306 if (orientation == mOrientation) {
309 mOrientation = orientation;
321 if (mOrientation == VERTICAL || !isLayoutRTL()) {
419 if (mOrientation == HORIZONTAL)
    [all...]

Completed in 601 milliseconds

1 23 4 5 6