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

1 2 3 4 5 6 7 8 910

  /packages/apps/Gallery3D/src/com/cooliris/cache/
ImageList.java 23 public int orientation[]; field in class:ImageList
  /external/webkit/WebCore/platform/win/
PlatformScrollBarWin.cpp 36 PlatformScrollbar::PlatformScrollbar(ScrollbarClient* client, ScrollbarOrientation orientation, ScrollbarControlSize size,
38 : Scrollbar(client, orientation, size, theme)
PlatformScrollBar.h 39 static PassRefPtr<PlatformScrollbar> create(ScrollbarClient* client, ScrollbarOrientation orientation, ScrollbarControlSize size)
41 return adoptRef(new PlatformScrollbar(client, orientation, size));
ScrollbarThemeSafari.cpp 109 return scrollbar->enabled() && (scrollbar->orientation() == HorizontalScrollbar ?
116 return scrollbar->enabled() && (scrollbar->orientation() == HorizontalScrollbar ?
121 static IntRect buttonRepaintRect(const IntRect& buttonRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, bool start)
124 if (orientation == HorizontalScrollbar) {
146 if (scrollbar->orientation() == HorizontalScrollbar)
151 return buttonRepaintRect(result, scrollbar->orientation(), scrollbar->controlSize(), true);
164 if (scrollbar->orientation() == HorizontalScrollbar)
169 return buttonRepaintRect(result, scrollbar->orientation(), scrollbar->controlSize(), false);
173 static IntRect trackRepaintRect(const IntRect& trackRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize)
176 if (orientation == HorizontalScrollbar
    [all...]
  /external/webkit/WebKit/chromium/src/linux/
WebFontRendering.cpp 65 void WebFontRendering::setLCDOrientation(SkFontHost::LCDOrientation orientation)
67 SkFontHost::SetSubpixelOrientation(orientation);
  /packages/apps/Camera/src/com/android/camera/ui/
AbstractIndicator.java 68 public void setOrientation(int orientation) {
69 if (orientation % 90 != 0) throw new IllegalArgumentException();
70 orientation = orientation % 360;
71 if (orientation < 0) orientation += 360;
73 if (mOrientation == orientation) return;
74 mOrientation = orientation;
  /frameworks/base/core/java/android/view/
OrientationEventListener.java 29 * the orientation of the device has changed.
44 * Returned from onOrientationChanged when the device orientation cannot be determined
67 * SENSOR_DELAY_NORMAL} for simple screen orientation change detection.
85 * {@link #onOrientationChanged} when the device orientation changes.
121 int orientation = ORIENTATION_UNKNOWN; local
130 orientation = 90 - (int)Math.round(angle);
132 while (orientation >= 360) {
133 orientation -= 360;
135 while (orientation < 0) {
136 orientation += 360
    [all...]
OrientationListener.java 24 * the orientation of the device has changed.
33 * Returned from onOrientationChanged when the device orientation cannot be determined
56 * SENSOR_DELAY_NORMAL} for simple screen orientation change detection.
73 public void onOrientationChanged(int orientation) {
74 OrientationListener.this.onOrientationChanged(orientation);
80 * {@link #onOrientationChanged} when the device orientation changes.
104 * @param orientation The new orientation of the device.
108 abstract public void onOrientationChanged(int orientation);
  /packages/apps/Phone/src/com/android/phone/
AccelerometerListener.java 30 * orientation of the phone. The client of this class is notified when
31 * the orientation changes between horizontal and vertical.
41 // mOrientation is the orientation value most recently reported to the client.
44 // mPendingOrientation is the latest orientation computed based on the sensor value.
51 // Device orientation
63 public void orientationChanged(int orientation);
87 private void setOrientation(int orientation) {
89 if (mPendingOrientation == orientation) {
90 // Pending orientation has not changed, so do nothing.
96 // if the orientation has not changed
128 int orientation = (angle > VERTICAL_ANGLE ? ORIENTATION_VERTICAL : ORIENTATION_HORIZONTAL); local
    [all...]
  /cts/tests/src/android/app/cts/
OrientationTestUtils.java 26 * Change the activity's orientation to something different and then switch back. This is used
29 * @param activity whose orientation will be changed and restored
37 * is called after each orientation change.
39 * @param activity whose orientation will be changed and restored
44 final int originalOrientation = activity.getResources().getConfiguration().orientation;
53 Instrumentation instrumentation, final int orientation) {
54 activity.setRequestedOrientation(orientation);
  /external/webkit/WebCore/platform/qt/
WheelEventQt.cpp 32 void PlatformWheelEvent::applyDelta(int delta, Qt::Orientation orientation)
34 if (orientation == Qt::Horizontal) {
69 applyDelta(e->delta(), e->orientation());
88 applyDelta(e->delta(), e->orientation());
  /external/webkit/WebCore/svg/
SVGGlyphElement.h 38 enum Orientation {
55 , orientation(Both)
76 orientation == other.orientation &&
89 unsigned orientation : 2; // Orientation member in struct:WebCore::SVGGlyphIdentifier
  /frameworks/base/include/ui/
DisplayInfo.h 32 uint8_t orientation; member in struct:android::DisplayInfo
  /frameworks/base/media/libstagefright/colorconversion/
SoftwareRenderer.cpp 61 uint32_t orientation; local
63 case 0: orientation = ISurface::BufferHeap::ROT_0; break;
64 case 90: orientation = ISurface::BufferHeap::ROT_90; break;
65 case 180: orientation = ISurface::BufferHeap::ROT_180; break;
66 case 270: orientation = ISurface::BufferHeap::ROT_270; break;
67 default: orientation = ISurface::BufferHeap::ROT_0; break;
74 orientation, 0,
  /hardware/msm7k/libstagefrighthw/
QComHardwareRenderer.cpp 135 uint32_t orientation; local
137 case 0: orientation = ISurface::BufferHeap::ROT_0; break;
138 case 90: orientation = ISurface::BufferHeap::ROT_90; break;
139 case 180: orientation = ISurface::BufferHeap::ROT_180; break;
140 case 270: orientation = ISurface::BufferHeap::ROT_270; break;
141 default: orientation = ISurface::BufferHeap::ROT_0; break;
148 orientation, 0,
  /external/webkit/WebCore/platform/gtk/
ScrollbarGtk.cpp 32 PassRefPtr<Scrollbar> Scrollbar::createNativeScrollbar(ScrollbarClient* client, ScrollbarOrientation orientation, ScrollbarControlSize size)
34 return adoptRef(new ScrollbarGtk(client, orientation, size));
37 PassRefPtr<ScrollbarGtk> ScrollbarGtk::createScrollbar(ScrollbarClient* client, ScrollbarOrientation orientation, GtkAdjustment* adj)
39 return adoptRef(new ScrollbarGtk(client, orientation, adj));
50 ScrollbarGtk::ScrollbarGtk(ScrollbarClient* client, ScrollbarOrientation orientation,
52 : Scrollbar(client, orientation, controlSize)
55 GtkWidget* scrollBar = orientation == HorizontalScrollbar ?
78 ScrollbarGtk::ScrollbarGtk(ScrollbarClient* client, ScrollbarOrientation orientation, GtkAdjustment* adjustment)
79 : Scrollbar(client, orientation, RegularScrollbar)
  /device/samsung/crespo/libstagefrighthw/
SecHardwareRenderer.cpp 71 uint32_t orientation; local
73 case 0: orientation = ISurface::BufferHeap::ROT_0; break;
74 case 90: orientation = ISurface::BufferHeap::ROT_90; break;
75 case 180: orientation = ISurface::BufferHeap::ROT_180; break;
76 case 270: orientation = ISurface::BufferHeap::ROT_270; break;
77 default: orientation = ISurface::BufferHeap::ROT_0; break;
86 HAL_PIXEL_FORMAT_CUSTOM_YCbCr_420_SP, orientation);
94 orientation);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/resources/
ScreenOrientation.java 20 * Screen Orientation enum.
24 PORTRAIT("port", "Portrait", "Portrait Orientation"), //$NON-NLS-1$
25 LANDSCAPE("land", "Landscape", "Landscape Orientation"), //$NON-NLS-1$
26 SQUARE("square", "Square", "Square Orientation"); //$NON-NLS-1$
65 public static int getIndex(ScreenOrientation orientation) {
68 if (orient == orientation) {
ScreenRatio.java 64 public static int getIndex(ScreenRatio orientation) {
67 if (orient == orientation) {
ScreenSize.java 65 public static int getIndex(ScreenSize orientation) {
68 if (orient == orientation) {
  /external/webkit/WebCore/css/
SVGCSSPropertyNames.in 44 glyph-orientation-horizontal
45 glyph-orientation-vertical
  /frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java 31 public final float orientation; field in class:OrientedBoundingBox
37 orientation = angle;
61 matrix.setRotate(orientation);
  /packages/apps/Gallery/src/com/android/camera/
MovieView.java 57 int orientation = intent.getIntExtra( local
60 if (orientation != getRequestedOrientation()) {
61 setRequestedOrientation(orientation);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/
ScreenOrientationQualifier.java 26 * Resource Qualifier for Screen Orientation.
30 public static final String NAME = "Screen Orientation";
57 return "Orientation";
62 return IconFactory.getInstance().getIcon("orientation"); //$NON-NLS-1$
67 ScreenOrientation orientation = ScreenOrientation.getEnum(value); local
68 if (orientation != null) {
69 ScreenOrientationQualifier qualifier = new ScreenOrientationQualifier(orientation);
  /packages/apps/Gallery3D/src/com/cooliris/media/
ImageManager.java 89 int orientation = orientationInput; local
90 if (orientation == -1) {
91 orientation = 0;
94 orientation = orientation % 360;
96 if (orientation < (0 * 90) + 45) {
98 } else if (orientation < (1 * 90) + 45) {
100 } else if (orientation < (2 * 90) + 45) {
102 } else if (orientation < (3 * 90) + 45) {
135 * picture. The degree is a one element array which returns the orientation
202 int orientation = exif.getAttributeInt( local
    [all...]

Completed in 700 milliseconds

1 2 3 4 5 6 7 8 910