Searched refs:getOrientation (Results 1 - 25 of 80) sorted by relevance

1234

/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DLinearLayoutManagerActivity.java43 mDividerItemDecoration = new DividerItemDecoration(this, mLayoutManager.getOrientation());
54 return mLayoutManager.getOrientation() == LinearLayoutManager.HORIZONTAL;
62 mDividerItemDecoration.setOrientation(mLayoutManager.getOrientation());
H A DGridLayoutManagerActivity.java57 return mLayoutManager.getOrientation() == LinearLayoutManager.HORIZONTAL;
H A DStableIdActivity.java74 new DividerItemDecoration(this, mLayoutManager.getOrientation()));
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DLinearLayoutManagerActivity.java43 mDividerItemDecoration = new DividerItemDecoration(this, mLayoutManager.getOrientation());
54 return mLayoutManager.getOrientation() == LinearLayoutManager.HORIZONTAL;
62 mDividerItemDecoration.setOrientation(mLayoutManager.getOrientation());
H A DGridLayoutManagerActivity.java57 return mLayoutManager.getOrientation() == LinearLayoutManager.HORIZONTAL;
H A DStableIdActivity.java74 new DividerItemDecoration(this, mLayoutManager.getOrientation()));
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DThumbnailData.java39 out.orientation = snapshot.getOrientation();
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DExif.java39 public static int getOrientation(final InputStream inputStream, final long byteSize) { method in class:Exif
213 public static int getOrientation(final byte[] jpeg) { method in class:Exif
214 return getOrientation(new ByteArrayInputStream(jpeg), jpeg.length);
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DExif.java34 public static int getOrientation(final InputStream inputStream, final long byteSize) { method in class:Exif
208 public static int getOrientation(final byte[] jpeg) { method in class:Exif
209 return getOrientation(new ByteArrayInputStream(jpeg), jpeg.length);
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DTaskStackTests.java78 assertEquals(SCREEN_ORIENTATION_PORTRAIT, stack.getOrientation());
80 assertEquals(SCREEN_ORIENTATION_LANDSCAPE, stack.getOrientation());
98 assertEquals(SCREEN_ORIENTATION_PORTRAIT, stack.getOrientation());
100 assertEquals(SCREEN_ORIENTATION_LANDSCAPE, stack.getOrientation());
H A DWindowContainerTests.java425 assertEquals(expectedOrientation, root.getOrientation());
433 assertEquals(SCREEN_ORIENTATION_UNSPECIFIED, root.getOrientation());
447 assertEquals(SCREEN_ORIENTATION_LANDSCAPE, invisibleChild1VisibleAndSet.getOrientation());
450 assertEquals(SCREEN_ORIENTATION_LANDSCAPE, invisible.getOrientation());
452 assertEquals(SCREEN_ORIENTATION_LANDSCAPE, root.getOrientation());
457 assertEquals(SCREEN_ORIENTATION_UNSET, visibleUnset.getOrientation());
458 assertEquals(SCREEN_ORIENTATION_LANDSCAPE, root.getOrientation());
478 visibleUnsetChild1VisibleSetBehind.getOrientation());
479 assertEquals(SCREEN_ORIENTATION_BEHIND, visibleUnset.getOrientation());
480 assertEquals(SCREEN_ORIENTATION_BEHIND, root.getOrientation());
808 int getOrientation(int candidate) { method in class:WindowContainerTests.TestWindowContainer
813 int getOrientation() { method in class:WindowContainerTests.TestWindowContainer
[all...]
H A DAppWindowTokenTests.java197 assertEquals(SCREEN_ORIENTATION_LANDSCAPE, token.getOrientation());
203 assertEquals(SCREEN_ORIENTATION_UNSET, token.getOrientation());
205 assertEquals(SCREEN_ORIENTATION_LANDSCAPE, token.getOrientation(SCREEN_ORIENTATION_BEHIND));
210 assertEquals(SCREEN_ORIENTATION_LANDSCAPE, token.getOrientation());
H A DAppWindowContainerControllerTests.java75 assertEquals(SCREEN_ORIENTATION_UNSPECIFIED, controller.getOrientation());
79 assertEquals(SCREEN_ORIENTATION_LANDSCAPE, controller.getOrientation());
83 assertEquals(SCREEN_ORIENTATION_UNSPECIFIED, controller.getOrientation());
H A DTaskSnapshotPersisterLoaderTest.java67 assertEquals(Configuration.ORIENTATION_PORTRAIT, snapshot.getOrientation());
160 assertEquals(Configuration.ORIENTATION_PORTRAIT, snapshot.getOrientation());
H A DDisplayContentTests.java401 SCREEN_ORIENTATION_LANDSCAPE, dc.getOrientation());
405 SCREEN_ORIENTATION_PORTRAIT, dc.getOrientation());
409 SCREEN_ORIENTATION_LANDSCAPE, dc.getOrientation());
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DItemAlignment.java74 final public int getOrientation() { method in class:ItemAlignment
H A DNonOverlappingLinearLayout.java65 && getOrientation() == HORIZONTAL
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DNoIdTest.java43 assertEquals(LinearLayout.VERTICAL, linearLayout.getOrientation());
46 assertEquals(LinearLayout.HORIZONTAL, linearLayout.getOrientation());
/frameworks/base/core/java/com/android/internal/widget/
H A DButtonBarLayout.java61 if (!mAllowStacking && getOrientation() == LinearLayout.VERTICAL) {
170 return getOrientation() == LinearLayout.VERTICAL;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DButtonBarLayout.java64 if (!mAllowStacking && getOrientation() == LinearLayout.VERTICAL) {
176 return getOrientation() == LinearLayout.VERTICAL;
/frameworks/native/services/surfaceflinger/
H A DTransform.h65 uint32_t getOrientation() const;
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DReusableBitmap.java65 public int getOrientation() { method in class:ReusableBitmap
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseGridLayoutManagerTest.java96 if (mGlm.getOrientation() == GridLayoutManager.HORIZONTAL) {
198 if (getOrientation() == RecyclerView.HORIZONTAL) {
241 if (getOrientation() == HORIZONTAL) {
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/test/
H A DRecyclerViewTest.java91 LinearLayout.HORIZONTAL, gridLayoutManager.getOrientation());
103 LinearLayout.VERTICAL, customLayoutManager.getOrientation());
/frameworks/support/core-utils/java/android/support/v4/print/
H A DPrintHelper.java137 int getOrientation(); method in interface:PrintHelper.PrintHelperVersionImpl
182 public int getOrientation() { method in class:PrintHelper.PrintHelperStub
290 public int getOrientation() { method in class:PrintHelper.PrintHelperApi19
967 public int getOrientation() { method in class:PrintHelper
968 return mImpl.getOrientation();

Completed in 3917 milliseconds

1234