HomeSort by relevance Sort by last modified time
    Searched refs:orientation (Results 226 - 250 of 686) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/view/src/android/view/cts/
OrientationListenerTest.java 103 public void onOrientationChanged(int orientation) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ScreenOrientation.java 34 // Orientation spinner choices
60 mOrientation = (Spinner)findViewById(R.id.orientation);
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHAL.cpp 105 cameraInfo->orientation = mm_camer_obj->camera_info.sensor_mount_angle;
  /device/lge/mako/camera/
QCameraHAL.cpp 104 cameraInfo->orientation = mm_camer_obj->camera_info.sensor_mount_angle;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilitySlider.cpp 50 AccessibilityOrientation AccessibilitySlider::orientation() const function in class:WebCore::AccessibilitySlider
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollbarTheme.cpp 209 int thickness = scrollbar->orientation() == HorizontalScrollbar ? scrollbar->height() : scrollbar->width();
211 if (scrollbar->orientation() == HorizontalScrollbar) {
272 return (scrollbar->orientation() == HorizontalScrollbar) ? constrainedTrackRect.x() - scrollbar->x() : constrainedTrackRect.y() - scrollbar->y();
278 return (scrollbar->orientation() == HorizontalScrollbar) ? constrainedTrackRect.width() : constrainedTrackRect.height();
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginScrollbarImpl.h 45 WebPluginScrollbarImpl(Orientation,
75 virtual WebScrollbar::Orientation orientation() const OVERRIDE;
  /external/chromium_org/ui/views/controls/
slider.h 50 enum Orientation {
55 Slider(SliderListener* listener, Orientation orientation);
103 Orientation orientation_;
  /frameworks/native/include/private/gui/
LayerState.h 118 uint32_t orientation; member in struct:android::DisplayState
  /frameworks/native/services/surfaceflinger/
Transform.h 41 explicit Transform(uint32_t orientation);
  /hardware/invensense/60xx/mlsdk/mllite/
accel.c 137 signed char *mtx = mldl_cfg->pdata->accel.orientation;
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXFD.cpp 117 status_t OMXCameraAdapter::setFaceDetection(bool enable, OMX_U32 orientation)
133 if ( orientation > 270 ) {
134 orientation = 0;
139 objDetection.nDeviceOrientation = orientation;
  /hardware/ti/omap4xxx/camera/inc/V4LCameraAdapter/
V4LCameraAdapter.h 94 virtual void onOrientationEvent(uint32_t orientation, uint32_t tilt);
  /packages/apps/Camera/src/com/android/camera/
CameraActivity.java 56 // The degrees of the device rotated clockwise from its natural orientation.
125 public void onOrientationChanged(int orientation) {
126 // We keep the last known orientation. So if the user first orient
128 // the correct orientation.
129 if (orientation == ORIENTATION_UNKNOWN) return;
130 mLastRawOrientation = orientation;
131 mCurrentModule.onOrientationChanged(orientation);
223 // create new layout with the current orientation
Util.java 71 // Orientation hysteresis amount used in rounding, in degrees
396 result = (info.orientation + degrees) % 360;
399 result = (info.orientation - degrees + 360) % 360;
407 return info.orientation;
410 public static int roundOrientation(int orientation, int orientationHistory) {
415 int dist = Math.abs(orientation - orientationHistory);
420 return ((orientation + 45) / 90 * 90) % 360;
447 // layout the viewfinder in the portrait orientation and thus get the
693 public static int getJpegRotation(int cameraId, int orientation) {
697 if (orientation != OrientationEventListener.ORIENTATION_UNKNOWN)
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoCarousel.java 189 int orientation = (width > height ? LANDSCAPE : PORTRAIT); local
192 destination.setTag(R.id.photo_orientation, Integer.valueOf(orientation));
208 int orientation = ((Integer) photo.getTag(R.id.photo_orientation)).intValue(); local
215 } else if (orientation == mOrientation) {
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
InfoDialogFragment.java 54 b.append(" Orientation: ");
55 b.append(cameraInfo.orientation);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
DeferredImageDecoder.cpp 202 ImageOrientation DeferredImageDecoder::orientation() const function in class:WebCore::DeferredImageDecoder
204 return m_actualDecoder ? m_actualDecoder->orientation() : m_orientation;
212 m_orientation = m_actualDecoder->orientation();
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
CameraBinderTest.java 82 info.info.orientation = -1;
89 assertTrue("Orientation was not set for camera " + cameraId,
90 info.info.orientation != -1);
93 + ", orientation " + info.info.orientation);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
Camera2Source.java 119 .addOutputPort("orientation", Signature.PORT_REQUIRED,
228 OutputPort orientationPort = getConnectedOutputPort("orientation");
231 // FIXME: Hardcoded value because ORIENTATION returns null, Qualcomm
233 Integer orientation = mProperties.get(CameraCharacteristics.SENSOR_ORIENTATION); local
235 if (orientation != null) {
236 temp = orientation.floatValue();
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 149 // Determine the orientation for this image
151 final int orientation = Exif.getOrientation(is, -1); local
165 // Rotate the Bitmap based on the orientation
166 if (originalBitmap != null && orientation != 0) {
168 matrix.postRotate(orientation);
219 * may load EXIF orientation, and the second pass may do the actual Bitmap decode.
  /packages/apps/Browser/src/com/android/browser/
NavScreen.java 77 mOrientation = activity.getResources().getConfiguration().orientation;
101 if (newconfig.orientation != mOrientation) {
104 mOrientation = newconfig.orientation;
  /packages/apps/Camera2/src/com/android/camera/
PhotoUI.java 145 public DecodeTask(byte[] data, int orientation, boolean mirror) {
147 mOrientation = orientation;
176 public DecodeImageForReview(byte[] data, int orientation, boolean mirror) {
177 super(data, orientation, mirror);
363 public void animateCapture(final byte[] jpegData, int orientation, boolean mirror) {
365 DecodeTask task = new DecodeTask(jpegData, orientation, mirror);
662 protected void showCapturedImageForReview(byte[] jpegData, int orientation, boolean mirror) {
663 mDecodeTaskForReview = new DecodeImageForReview(jpegData, orientation, mirror);
686 public void setDisplayOrientation(int orientation) {
688 mFaceView.setDisplayOrientation(orientation);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MovieActivity.java 101 int orientation = intent.getIntExtra( local
104 if (orientation != getRequestedOrientation()) {
105 setRequestedOrientation(orientation);
  /packages/apps/LegacyCamera/src/com/android/camera/
ModePicker.java 192 public void setOrientation(int orientation) {
194 mModeSelectionIcon[i].setOrientation(orientation);
196 mCurrentModeIcon[i].setOrientation(orientation);

Completed in 889 milliseconds

1 2 3 4 5 6 7 8 91011>>