HomeSort by relevance Sort by last modified time
    Searched refs:getOrientation (Results 1 - 25 of 274) sorted by null

1 2 3 4 5 6 7 8 91011

  /packages/apps/Camera2/src/com/android/camera/
Exif.java 38 public static int getOrientation(ExifInterface exif) {
47 public static int getOrientation(byte[] jpegData) {
51 return getOrientation(exif);
  /packages/apps/Camera2/src/com/android/camera/captureintent/event/
EventPictureCompressed.java 34 public int getOrientation() {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Exif.java 32 public static int getOrientation(InputStream is) {
69 public static int getOrientation(ExifInterface exif) {
79 * See {@link #getOrientation(byte[])}, but using the picture bytes instead.
81 public static int getOrientation(byte[] jpegData) {
86 return getOrientation(exif);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
ImageResource.java 60 public int getOrientation() {
DecodedImageResource.java 103 public int getOrientation() {
140 return OrientedBitmapDrawable.create(getOrientation(), resources, mBitmap);
218 return new EncodedImageResource(getKey(), encodedBytes, getOrientation());
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
SelfOrientingSashForm.java 80 public int getOrientation() {
81 int currentOrientation = super.getOrientation();
129 oldOrientation = super.getOrientation();
  /frameworks/support/v4/java/android/support/v4/print/
PrintHelper.java 103 public int getOrientation();
137 public int getOrientation() { return mOrientation; }
189 public int getOrientation() {
190 return mPrintHelper.getOrientation();
300 public int getOrientation() {
301 return mImpl.getOrientation();
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/
LinearLayoutManagerActivity.java 40 mDividerItemDecoration = new DividerItemDecoration(this, mLayoutManager.getOrientation());
50 return mLayoutManager.getOrientation() == LinearLayoutManager.HORIZONTAL;
58 mDividerItemDecoration.setOrientation(mLayoutManager.getOrientation());
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
PanelTrack.java 25 public int getOrientation();
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
Exif.java 39 public static int getOrientation(final InputStream inputStream, final long byteSize) {
213 public static int getOrientation(final byte[] jpeg) {
214 return getOrientation(new ByteArrayInputStream(jpeg), jpeg.length);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Exif.java 34 public static int getOrientation(final InputStream inputStream, final long byteSize) {
208 public static int getOrientation(final byte[] jpeg) {
209 return getOrientation(new ByteArrayInputStream(jpeg), jpeg.length);
  /frameworks/base/core/java/com/android/internal/widget/
ButtonBarLayout.java 49 if (!mAllowStacking && getOrientation() == LinearLayout.VERTICAL) {
120 return getOrientation() == LinearLayout.VERTICAL;
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
NoIdTest.java 43 assertEquals(LinearLayout.VERTICAL, linearLayout.getOrientation());
46 assertEquals(LinearLayout.HORIZONTAL, linearLayout.getOrientation());
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/test/
RecyclerViewTest.java 54 LinearLayout.HORIZONTAL, gridLayoutManager.getOrientation());
66 LinearLayout.VERTICAL, customLayoutManager.getOrientation());
  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripItemBase.java 130 public int getOrientation() {
131 return mData.getOrientation();
139 return new MediaStoreSignature(mimeType, modTimeSeconds, data.getOrientation());
PlaceholderItem.java 149 public int getOrientation() {
150 return mItemData.getOrientation();
FilmstripItem.java 145 public int getOrientation();
SessionItem.java 188 public int getOrientation() {
189 return mData.getOrientation();
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ItemAlignment.java 78 final public int getOrientation() {
  /packages/apps/Camera/src/com/android/camera/
Exif.java 33 public static int getOrientation(byte[] jpeg) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
IconView.java 82 if (getOrientation() == VERTICAL) {
126 public int getOrientation() {
184 if (getOrientation() == VERTICAL && isHalfImage()) {
233 if (getOrientation() == VERTICAL && isHalfImage()) {
  /frameworks/native/services/surfaceflinger/
Transform.h 66 uint32_t getOrientation() const;
  /frameworks/opt/bitmap/src/com/android/bitmap/
ReusableBitmap.java 65 public int getOrientation() {
  /packages/apps/Camera2/src/com/android/camera/hardware/
HeadingSensor.java 121 SensorManager.getOrientation(mRotationMatrix, orientation);
  /packages/apps/Camera2/src/com/android/camera/ui/
RotateLayout.java 123 public int getOrientation() {

Completed in 749 milliseconds

1 2 3 4 5 6 7 8 91011