HomeSort by relevance Sort by last modified time
    Searched full:orientation (Results 1 - 25 of 2520) 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:
2 < android:orientation='^'
4 > android:orientation='horizontal'^
completion6-expected-applyCompletion22.diff 1 Code completion in completion6.xml for android:orientation="^" selecting horizontal:
2 < android:orientation="^"
4 > android:orientation="horizontal"^
completion7-expected-applyCompletion23.diff 1 Code completion in completion7.xml for android:orientation="^ selecting horizontal:
2 < android:orientation="^
4 > android:orientation="horizontal^
completionvalues1-expected-applyCompletion37.diff 1 Code completion in completionvalues1.xml for <item name="android:orientation">h^</item> selecting horizontal:
2 < <item name="android:orientation">h^</item>
4 > <item name="android:orientation">horizontal^</item>
completionvalues1-expected-completion37.txt 1 Code completion in completionvalues1.xml for <item name="android:orientation">h^</item>:
  /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...]
  /sdk/ide_common/src/com/android/ide/common/resources/configuration/
ScreenOrientationQualifier.java 23 * Resource Qualifier for Screen Orientation.
27 public static final String NAME = "Screen Orientation";
54 return "Orientation";
59 ScreenOrientation orientation = ScreenOrientation.getEnum(value); local
60 if (orientation != null) {
61 ScreenOrientationQualifier qualifier = new ScreenOrientationQualifier(orientation);
  /sdk/files/
devices.xml 10 <d:screen-orientation>port</d:screen-orientation>
26 <d:screen-orientation>port</d:screen-orientation>
29 <d:screen-orientation>land</d:screen-orientation>
37 <d:screen-orientation>port</d:screen-orientation>
53 <d:screen-orientation>port</d:screen-orientation>
    [all...]
  /frameworks/base/tools/orientationplot/
README.txt 19 1. Enable the Window Orientation Listener debugging data log using the
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 end
59 different from the original orientation of the device). However, once i
    [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);
  /device/samsung/crespo/libsensors/
AkmSensor.cpp 77 mPendingEvents[Orientation ].version = sizeof(sensors_event_t);
78 mPendingEvents[Orientation ].sensor = ID_O;
79 mPendingEvents[Orientation ].type = SENSOR_TYPE_ORIENTATION;
80 mPendingEvents[Orientation ].orientation.status = SENSOR_STATUS_ACCURACY_HIGH;
111 mEnabled |= 1<<Orientation;
113 mPendingEvents[Orientation].orientation.azimuth = absinfo.value;
116 mPendingEvents[Orientation].orientation.pitch = absinfo.value
    [all...]
  /device/moto/stingray/sensors/
AkmSensor.cpp 51 mPendingEvents[Orientation ].version = sizeof(sensors_event_t);
52 mPendingEvents[Orientation ].sensor = ID_O;
53 mPendingEvents[Orientation ].type = SENSOR_TYPE_ORIENTATION;
54 mPendingEvents[Orientation ].orientation.status = SENSOR_STATUS_ACCURACY_HIGH;
77 mEnabled |= 1<<Orientation;
94 case ID_O: what = Orientation; break;
111 case Orientation: cmd = ECS_IOCTL_APP_SET_MFLAG; break;
136 case ID_O: what = Orientation; break;
243 mPendingMask |= 1<<Orientation;
    [all...]
  /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...]
  /sdk/common/src/com/android/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) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/sdk/
config_sample.xml 25 <d:screen-orientation>port</d:screen-orientation>
41 <d:screen-orientation>port</d:screen-orientation>
45 <d:screen-orientation>land</d:screen-orientation>
49 <d:screen-orientation>land</d:screen-orientation>
69 <d:config name="screen-orientation-port">
70 <d:screen-orientation>port</d:screen-orientation>
    [all...]
  /development/ndk/platforms/android-4/samples/san-angeles/res/layout/
main.xml 3 android:orientation="vertical"
  /development/samples/ApiDemos/res/layout/
videoview.xml 3 android:orientation="vertical"
  /development/tools/templates/
layout.template 3 android:orientation="vertical"
  /external/android-mock/livetests/com/google/android/testing/mocking/test/res/layout/
main.xml 3 android:orientation="vertical"
  /external/android-mock/livetests/com/google/android/testing/mocking/testapp/res/layout/
main.xml 3 android:orientation="vertical"
  /frameworks/base/core/tests/coretests/res/layout/
animator_basic.xml 6 android:orientation="vertical">
  /packages/apps/Mms/tests/SmsAutoReply/res/layout/
main.xml 3 android:orientation="vertical"
  /packages/experimental/BugReportSender/res/layout/
bugreport_preview.xml 3 android:orientation="vertical"

Completed in 995 milliseconds

1 2 3 4 5 6 7 8 91011>>