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

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion5-expected-applyCompletion19.diff 1 Code completion in completion5.xml for android:orientation='^' selecting horizontal:
3 - android:orientation='^'
4 + android:orientation='horizontal'^
completion6-expected-applyCompletion22.diff 1 Code completion in completion6.xml for android:orientation="^" selecting horizontal:
3 - android:orientation="^"
4 + android:orientation="horizontal"^
completion7-expected-applyCompletion23.diff 1 Code completion in completion7.xml for android:orientation="^ selecting horizontal:
3 - android:orientation="^
4 + android:orientation="horizontal^
completionvalues1-expected-completion37.txt 1 Code completion in completionvalues1.xml for <item name="android:orientation">h^</item>:
completionvalues1-expected-applyCompletion37.diff 1 Code completion in completionvalues1.xml for <item name="android:orientation">h^</item> selecting horizontal:
3 - <item name="android:orientation">h^</item>
4 + <item name="android:orientation">horizontal^</item>
  /sdk/apps/DeviceConfig/res/values-land/
strings.xml 3 <string name="orientation">LANDSCAPE</string>
  /sdk/apps/DeviceConfig/res/values-port/
strings.xml 3 <string name="orientation">PORTRAIT</string>
  /external/webkit/Source/WebKit/chromium/src/
WebDeviceOrientation.cpp 34 WebDeviceOrientation::WebDeviceOrientation(const PassRefPtr<WebCore::DeviceOrientation>& orientation)
36 if (!orientation) {
48 m_canProvideAlpha = orientation->canProvideAlpha();
49 m_alpha = orientation->alpha();
50 m_canProvideBeta = orientation->canProvideBeta();
51 m_beta = orientation->beta();
52 m_canProvideGamma = orientation->canProvideGamma();
53 m_gamma = orientation->gamma();
56 WebDeviceOrientation& WebDeviceOrientation::operator=(const PassRefPtr<WebCore::DeviceOrientation>& orientation)
58 if (!orientation) {
    [all...]
  /external/skia/include/core/
SkDeviceProperties.h 18 /** The orientation of the pixel specifies the interpretation of the
19 * layout. If the orientation is horizontal, the layout is interpreted as
20 * left to right. It the orientation is vertical, the layout is
23 enum Orientation {
48 Orientation getOrientation() {
49 return static_cast<Orientation>(fGeometry | kOrientationMask);
64 static Orientation fromOldOrientation(SkFontHost::LCDOrientation orientation) {
65 switch (orientation) {
80 Orientation orientation = fromOldOrientation(SkFontHost::GetSubpixelOrientation()); //kHorizontal_Orientatio local
    [all...]
  /frameworks/base/tools/orientationplot/
README.txt 22 2. Enable the Window Orientation Listener debugging data log.
23 adb shell setprop debug.orientation.log true
35 filtered accelerometer data, measured tilt and orientation angle, confidence
36 intervals for the proposed orientation and accelerometer latency.
42 and the latency for orientation detection goes up. One way to observe this
43 is by holding the device vertically in one orientation then sharply turning
44 it 90 degrees to a different orientation. Compared the rapid changes in the
48 2. Ensure that there is an appropriate gap between adjacent orientation angles
49 for hysteresis. Try holding the device in one orientation and slowly turning
55 Next try holding the device in one orientation and rapidly turning it en
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
OrientationManager.java 34 // Orientation hysteresis amount used in rounding, in degrees
39 // If the framework orientation is locked.
43 // don't allow the orientation to be unlocked if the value is true.
63 // Orientation handling
65 // We can choose to lock the framework orientation or not. If we lock the
66 // framework orientation, we calculate a a compensation value according to
67 // current device orientation and send it to listeners. If we don't lock
68 // the framework orientation, we always set the compensation value to 0.
71 // Lock the framework orientation to the current device orientation
    [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);
  /frameworks/base/core/java/android/view/
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);
OrientationEventListener.java 28 * the orientation of the device has changed.
43 * Returned from onOrientationChanged when the device orientation cannot be determined
66 * SENSOR_DELAY_NORMAL} for simple screen orientation change detection.
84 * {@link #onOrientationChanged} when the device orientation changes.
120 int orientation = ORIENTATION_UNKNOWN; local
129 orientation = 90 - (int)Math.round(angle);
131 while (orientation >= 360) {
132 orientation -= 360;
134 while (orientation < 0) {
135 orientation += 360
    [all...]
  /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...]
  /packages/apps/Dialer/src/com/android/dialer/util/
OrientationUtil.java 23 * Static methods related to device orientation.
28 * @return if the context is in landscape orientation.
31 return context.getResources().getConfiguration().orientation
  /development/samples/WiFiDirectServiceDiscovery/res/layout/
main.xml 5 android:orientation="vertical" >
13 android:orientation="vertical" />
  /external/skia/legacy/src/core/
SkFontHost.cpp 22 void SkFontHost::SetSubpixelOrientation(LCDOrientation orientation)
24 gLCDOrientation = orientation;
  /external/skia/src/core/
SkFontHost.cpp 22 void SkFontHost::SetSubpixelOrientation(LCDOrientation orientation)
24 gLCDOrientation = orientation;
  /packages/apps/Camera/src/com/android/camera/
Exif.java 48 case ExifTag.Orientation.TOP_LEFT:
50 case ExifTag.Orientation.BOTTOM_LEFT:
52 case ExifTag.Orientation.RIGHT_TOP:
54 case ExifTag.Orientation.RIGHT_BOTTOM:
57 Log.i(TAG, "Unsupported orientation");
64 Log.i(TAG, "Orientation not found");
67 Log.w(TAG, "Failed to read EXIF orientation", e);
70 Log.w(TAG, "Failed to read EXIF orientation", e);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/refactoring/usecompound/
compound1.xml 5 android:orientation="vertical" >
12 android:orientation="vertical" >
compound2.xml 5 android:orientation="vertical" >
12 android:orientation="vertical" >
compound3.xml 5 android:orientation="vertical" >
12 android:orientation="horizontal" >
compound4.xml 5 android:orientation="vertical" >
12 android:orientation="horizontal" >
  /development/ndk/platforms/android-4/samples/san-angeles/res/layout/
main.xml 3 android:orientation="vertical"

Completed in 657 milliseconds

1 2 3 4 5 6 7 8 91011>>