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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/content/browser/device_orientation/
data_fetcher_impl_win.h 19 class Orientation;
26 // orientation data.
45 void OnOrientationData(Orientation* orientation);
46 const Orientation* GetOrientation();
51 scoped_refptr<Orientation> current_orientation_;
56 scoped_refptr<Orientation> next_orientation_;
  /external/chromium_org/ppapi/c/dev/
pp_print_settings_dev.h 64 PP_PrintOrientation_Dev orientation; member in struct:PP_PrintSettings_Dev
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityScrollbar.h 53 virtual AccessibilityOrientation orientation() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollbarThemeClient.h 66 virtual ScrollbarOrientation orientation() const = 0;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDetailsMarker.h 32 enum Orientation { Up, Down, Left, Right };
34 Orientation orientation() const;
  /external/chromium_org/third_party/skia/include/core/
SkFontHost.h 69 static void SetSubpixelOrientation(LCDOrientation orientation);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowConfiguration.java 19 public int orientation; field in class:ShadowConfiguration
  /external/skia/include/core/
SkFontHost.h 69 static void SetSubpixelOrientation(LCDOrientation orientation);
  /external/chromium/chrome/browser/chromeos/input_method/
candidate_window.cc 106 // Creates shortcut text from the given index and the orientation.
108 chromeos::InputMethodLookupTable::Orientation orientation) {
119 if (orientation == chromeos::InputMethodLookupTable::kVertical) {
131 chromeos::InputMethodLookupTable::Orientation orientation) {
137 if (orientation == chromeos::InputMethodLookupTable::kVertical) {
155 chromeos::InputMethodLookupTable::Orientation orientation) {
160 (orientation == chromeos::InputMethodLookupTable::kVertical
966 const InputMethodLookupTable::Orientation orientation = local
    [all...]
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/
ml_math_func.c 577 /** Converts an orientation matrix made up of 0,+1,and -1 to a scalar representation.
578 * @param[in] mtx Orientation matrix to convert to a scalar.
579 * @return Description of orientation matrix. The lowest 2 bits (0 and 1) represent the column the one is on for the
608 /** Uses the scalar orientation value to convert from chip frame to body frame
609 * @param[in] orientation A scalar that represent how to go from chip to body frame
613 void inv_convert_to_body(unsigned short orientation, const long *input, long *output)
615 output[0] = input[orientation & 0x03] * SIGNSET(orientation & 0x004);
616 output[1] = input[(orientation>>3) & 0x03] * SIGNSET(orientation & 0x020)
    [all...]
  /external/chromium_org/cc/layers/
scrollbar_layer_impl.h 22 ScrollbarOrientation orientation);
41 ScrollbarOrientation Orientation() const;
71 ScrollbarOrientation orientation);
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ScrollbarThemeChromiumOverlay.cpp 94 if (scrollbar->orientation() == HorizontalScrollbar)
104 if (scrollbar->orientation() == HorizontalScrollbar)
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
FontCustomPlatformDataMac.cpp 46 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant widthVariant)
48 return FontPlatformData(m_cgFont.get(), size, bold, italic, orientation, widthVariant);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
FontCustomPlatformDataSkia.cpp 57 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant)
60 return FontPlatformData(m_typeface.get(), "", size, bold && !m_typeface->isBold(), italic && !m_typeface->isItalic(), orientation);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
SelfOrientingSashForm.java 21 * automatically reset its orientation based on the relationship between the width and height of the
95 public void setOrientation(int orientation) {
100 super.setOrientation(orientation);
  /hardware/ti/omap4xxx/camera/inc/
SensorListener.h 39 typedef void (*orientation_callback_t) (uint32_t orientation, uint32_t tilt, void* cookie);
85 void handleOrientation(uint32_t orientation, uint32_t tilt);
  /packages/apps/Camera/src/com/android/camera/ui/
RotateTextToast.java 35 public RotateTextToast(Activity activity, int textResourceId, int orientation) {
42 mToast.setOrientation(orientation, false);
RotateLayout.java 45 // happened when the view is rotated as the device's orientation
181 public void setOrientation(int orientation, boolean animation) {
182 orientation = orientation % 360;
183 if (mOrientation == orientation) return;
184 mOrientation = orientation;
  /packages/apps/Camera2/src/com/android/camera/ui/
RotateTextToast.java 35 public RotateTextToast(Activity activity, int textResourceId, int orientation) {
42 mToast.setOrientation(orientation, false);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
RotateTextToast.java 35 public RotateTextToast(Activity activity, int textResourceId, int orientation) {
42 mToast.setOrientation(orientation);
FaceView.java 37 // The orientation compensation for the face indicator to make it look
66 public void setDisplayOrientation(int orientation) {
67 mDisplayOrientation = orientation;
68 if (LOGV) Log.v(TAG, "mDisplayOrientation=" + orientation);
71 public void setOrientation(int orientation) {
72 mOrientation = orientation;
  /packages/apps/UnifiedEmail/src/com/android/bitmap/
ReusableBitmap.java 69 public void setOrientation(final int orientation) {
70 mOrientation = orientation;
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
RectUtils.java 27 * given by the orientation. Transform the upright partial rectangle such that it would apply
31 * @param orientation The exif orientation (0, 90, 180, 270) of the original image. The
32 * transformed full and partial rectangles will be in this orientation's
37 public static void rotateRectForOrientation(final int orientation, final Rect fullRect,
40 // Exif orientation specifies how the camera is rotated relative to the actual subject.
42 matrix.setRotate(-orientation);
52 // Orientation transformation is complete.
  /external/chromium_org/chrome/browser/resources/image_loader/
image_loader.js 111 // Orientation has to be adjusted.
112 if (options.orientation)
135 // Flip dimensions for odd orientation values: 1 (90deg) and 3 (270deg).
136 if (options.orientation && options.orientation % 2) {
189 // Default orientation is 0deg.
190 var orientation = options.orientation || 0;
192 // For odd orientation values: 1 (90deg) and 3 (270deg) flip dimensions.
195 if (orientation % 2)
    [all...]
  /external/eigen/demos/opengl/
quaternion_demo.cpp 132 Quaternionf(lerp(alpha,OrientationType(a.orientation),OrientationType(b.orientation))));
222 aux.orientation = mCamera.viewMatrix().linear();
302 currentFrame.orientation.coeffs().normalize();
305 currentFrame.orientation = currentFrame.orientation.inverse();
306 currentFrame.position = - (currentFrame.orientation * currentFrame.position);
486 mInitFrame.orientation = mCamera.orientation().inverse();
516 aux0.orientation = aux0.orientation.inverse()
    [all...]

Completed in 876 milliseconds

1 2 34 5 6 7 8 91011>>