Searched defs:orientation (Results 1 - 25 of 152) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDetailsMarker.cpp39 RenderDetailsMarker::Orientation RenderDetailsMarker::orientation() const function in class:blink::RenderDetailsMarker
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceOrientationEvent.h44 static PassRefPtrWillBeRawPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientationData* orientation) argument
46 return adoptRefWillBeNoop(new DeviceOrientationEvent(eventType, orientation));
51 DeviceOrientationData* orientation() const { return m_orientation.get(); } function in class:blink::FINAL
H A DDeviceOrientationEvent.cpp42 DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData* orientation) argument
44 , m_orientation(orientation)
48 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation) argument
54 m_orientation = orientation;
/external/chromium_org/cc/layers/
H A Dpainted_scrollbar_layer_impl_unittest.cc33 ScrollbarOrientation orientation = VERTICAL; local
36 impl.AddChildToRoot<PaintedScrollbarLayerImpl>(orientation);
H A Dsolid_color_scrollbar_layer_impl_unittest.cc19 ScrollbarOrientation orientation = VERTICAL; local
27 orientation,
/external/chromium_org/cc/quads/
H A Dio_surface_draw_quad.h31 Orientation orientation);
40 Orientation orientation);
44 Orientation orientation; member in class:cc::IOSurfaceDrawQuad
H A Dio_surface_draw_quad.cc16 orientation(FLIPPED) {
25 Orientation orientation) {
31 this->orientation = orientation;
41 Orientation orientation) {
46 this->orientation = orientation;
67 switch (orientation) {
76 value->SetString("orientation", orientation_string);
19 SetNew(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, const gfx::Size& io_surface_size, unsigned io_surface_resource_id, Orientation orientation) argument
34 SetAll(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, bool needs_blending, const gfx::Size& io_surface_size, unsigned io_surface_resource_id, Orientation orientation) argument
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dprinting_gtk2_util.cc84 // orientation, all that does is change the paper size. Which seems to be
86 // The orientation value stays as portrait and does not actually affect
89 // orientation and change the paper size ourselves.
90 GtkPageOrientation orientation = gtk_print_settings_get_orientation(settings); local
92 print_settings->SetOrientation(orientation == GTK_PAGE_ORIENTATION_LANDSCAPE);
/external/chromium_org/chrome/common/cloud_print/
H A Dcloud_print_cdd_conversion.cc116 OrientationCapability orientation; local
117 orientation.AddDefaultOption(PORTRAIT, true);
118 orientation.AddOption(LANDSCAPE);
119 orientation.AddOption(AUTO_ORIENTATION);
120 orientation.SaveTo(&description);
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DScreenOrientationProvider.java27 private static int getOrientationFromWebScreenOrientations(byte orientation, argument
29 switch (orientation) {
61 Log.w(TAG, "Trying to lock to unsupported orientation!");
67 static void lockOrientation(byte orientation) { argument
68 lockOrientation(orientation, ApplicationStatus.getLastTrackedFocusedActivity());
74 int orientation = getOrientationFromWebScreenOrientations(webScreenOrientation, activity);
75 if (orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED) {
79 activity.setRequestedOrientation(orientation);
92 // which case, we want to use that as the default orientation.
93 int orientation
[all...]
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DScreenOrientationListenerTest.java34 * Returns the expected orientation angle based on the orientation type.
36 private static int orientationTypeToAngle(int orientation) { argument
37 switch (orientation) {
53 * Locks the screen orientation to the predefined orientation type then wait
54 * for the orientation change to happen.
56 private void lockOrientationAndWait(final int orientation) throws InterruptedException { argument
59 orientationTypeToAngle(orientation));
63 getActivity().setRequestedOrientation(orientation);
[all...]
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DMockOrientationObserver.java18 public void onScreenOrientationChanged(int orientation) { argument
19 mOrientation = orientation;
/external/chromium_org/printing/
H A Dprint_settings_initializer_mac.cc21 PMOrientation orientation = kPMPortrait; local
22 PMGetOrientation(page_format, &orientation);
23 print_settings->SetOrientation(orientation == kPMLandscape);
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8DeviceOrientationEventCustom.cpp51 DeviceOrientationData* orientation = DeviceOrientationData::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma, absoluteProvided, absolute); local
52 impl->initDeviceOrientationEvent(type, bubbles, cancelable, orientation);
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXScrollbar.cpp69 AccessibilityOrientation AXScrollbar::orientation() const function in class:blink::AXScrollbar
74 if (m_scrollbar->orientation() == HorizontalScrollbar)
76 if (m_scrollbar->orientation() == VerticalScrollbar)
106 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
H A DAXSlider.cpp52 AccessibilityOrientation AXSlider::orientation() const function in class:blink::AXSlider
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
H A DScreenScreenOrientation.cpp30 ScreenOrientation* ScreenScreenOrientation::orientation(ScriptState* state, Screen& screen) function in class:blink::ScreenScreenOrientation
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.h67 void setOrientation(ImageOrientation orientation) { m_orientation = orientation; } argument
/external/chromium_org/ui/views/controls/
H A Dseparator.cc21 Separator::Separator(Orientation orientation) : orientation_(orientation) { argument
/external/chromium_org/ui/views/layout/
H A Dbox_layout_unittest.cc184 BoxLayout::Orientation orientation = i == 0 ? BoxLayout::kHorizontal : local
187 host_->SetLayoutManager(new BoxLayout(orientation, 0, 0, 5));
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DSelfOrientingSashForm.java21 * automatically reset its orientation based on the relationship between the width and height of the
95 public void setOrientation(int orientation) { argument
100 super.setOrientation(orientation);
/external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
H A DMediaStoreStreamLoader.java16 private final int orientation; field in class:MediaStoreStreamLoader
19 long dateModified, int orientation) {
24 this.orientation = orientation;
30 height, mimeType, dateModified, orientation);
18 MediaStoreStreamLoader(Context context, ModelLoader<Uri, InputStream> uriLoader, String mimeType, long dateModified, int orientation) argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowConfiguration.java19 public int orientation; field in class:ShadowConfiguration
/external/chromium_org/cc/blink/
H A Dweb_scrollbar_layer_impl.cc20 blink::WebScrollbar::Orientation orientation) {
21 return orientation == blink::WebScrollbar::Horizontal ? cc::HORIZONTAL
42 blink::WebScrollbar::Orientation orientation,
47 SolidColorScrollbarLayer::Create(ConvertOrientation(orientation),
19 ConvertOrientation( blink::WebScrollbar::Orientation orientation) argument
41 WebScrollbarLayerImpl( blink::WebScrollbar::Orientation orientation, int thumb_thickness, int track_start, bool is_left_side_vertical_scrollbar) argument
/external/chromium_org/content/renderer/screen_orientation/
H A Dscreen_orientation_dispatcher.cc62 blink::WebScreenOrientationLockType orientation,
68 routing_id(), orientation, request_id));
61 lockOrientation( blink::WebScreenOrientationLockType orientation, blink::WebLockOrientationCallback* callback) argument

Completed in 760 milliseconds

1234567