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

12345

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDeviceOrientationController.cpp36 void WebDeviceOrientationController::didChangeDeviceOrientation(const WebDeviceOrientation& orientation) argument
38 RefPtr<WebCore::DeviceOrientationData> deviceOrientation = PassRefPtr<WebCore::DeviceOrientationData>(orientation);
H A DWebDeviceOrientation.cpp34 WebDeviceOrientation::WebDeviceOrientation(const WebCore::DeviceOrientationData* orientation) argument
36 if (!orientation) {
50 m_canProvideAlpha = orientation->canProvideAlpha();
51 m_alpha = orientation->alpha();
52 m_canProvideBeta = orientation->canProvideBeta();
53 m_beta = orientation->beta();
54 m_canProvideGamma = orientation->canProvideGamma();
55 m_gamma = orientation->gamma();
56 m_canProvideAbsolute = orientation->canProvideAbsolute();
57 m_absolute = orientation
[all...]
H A DWebDeviceOrientationClientMock.cpp61 void WebDeviceOrientationClientMock::setOrientation(WebDeviceOrientation& orientation) argument
63 m_clientMock->setOrientation(orientation);
/external/chromium_org/cc/quads/
H A Dio_surface_draw_quad.h29 Orientation orientation);
38 Orientation orientation);
42 Orientation orientation; member in class:cc::IOSurfaceDrawQuad
H A Dio_surface_draw_quad.cc15 orientation(FLIPPED) {
27 Orientation orientation) {
34 this->orientation = orientation;
44 Orientation orientation) {
49 this->orientation = orientation;
67 switch (orientation) {
76 value->SetString("orientation", orientation_string);
22 SetNew(const SharedQuadState* shared_quad_state, gfx::Rect rect, gfx::Rect opaque_rect, gfx::Size io_surface_size, unsigned io_surface_resource_id, Orientation orientation) argument
37 SetAll(const SharedQuadState* shared_quad_state, gfx::Rect rect, gfx::Rect opaque_rect, gfx::Rect visible_rect, bool needs_blending, gfx::Size io_surface_size, unsigned io_surface_resource_id, Orientation orientation) argument
/external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.h56 void setOrientation(ImageOrientation orientation) { m_orientation = orientation; } argument
/external/chromium_org/third_party/WebKit/Source/core/platform/mock/
H A DDeviceOrientationClientMock.cpp58 void DeviceOrientationClientMock::setOrientation(PassRefPtr<DeviceOrientationData> orientation) argument
60 m_orientation = orientation;
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceOrientationEvent.h42 static PassRefPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientationData* orientation) argument
44 return adoptRef(new DeviceOrientationEvent(eventType, orientation));
49 DeviceOrientationData* orientation() const { return m_orientation.get(); } function in class:WebCore::DeviceOrientationEvent
H A DDeviceOrientationEvent.cpp44 DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData* orientation) argument
46 , m_orientation(orientation)
51 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation) argument
57 m_orientation = orientation;
/external/chromium_org/ui/views/layout/
H A Dbox_layout_unittest.cc139 BoxLayout::Orientation orientation = i == 0 ? BoxLayout::kHorizontal : local
142 host_->SetLayoutManager(new BoxLayout(orientation, 0, 0, 5));
/external/chromium_org/printing/
H A Dprint_settings_initializer_mac.cc27 PMOrientation orientation = kPMPortrait; local
28 PMGetOrientation(page_format, &orientation);
29 print_settings->set_landscape(orientation == kPMLandscape);
H A Dprint_settings_initializer_gtk.cc69 // orientation, all that does is change the paper size. Which seems to be
71 // The orientation value stays as portrait and does not actually affect
74 // orientation and change the paper size ourselves.
75 GtkPageOrientation orientation = gtk_print_settings_get_orientation(settings); local
76 print_settings->SetOrientation(orientation == GTK_PAGE_ORIENTATION_LANDSCAPE);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8DeviceOrientationEventCustom.cpp52 RefPtr<DeviceOrientationData> orientation = DeviceOrientationData::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma, absoluteProvided, absolute); local
53 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAccessibilityScrollbar.cpp63 AccessibilityOrientation AccessibilityScrollbar::orientation() const function in class:WebCore::AccessibilityScrollbar
68 if (m_scrollbar->orientation() == HorizontalScrollbar)
70 if (m_scrollbar->orientation() == VerticalScrollbar)
100 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DSVGCSSComputedStyleDeclaration.cpp33 static PassRefPtr<CSSPrimitiveValue> glyphOrientationToCSSPrimitiveValue(EGlyphOrientation orientation) argument
35 switch (orientation) {
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDeviceOrientationController.cpp49 void DeviceOrientationController::didChangeDeviceOrientation(DeviceOrientationData* orientation) argument
51 orientation = InspectorInstrumentation::overrideDeviceOrientation(m_page, orientation);
52 dispatchDeviceEvent(DeviceOrientationEvent::create(eventNames().deviceorientationEvent, orientation));
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DFontPlatformData.cpp72 FontPlatformData::FontPlatformData(float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation, FontWidthVariant widthVariant) argument
75 , m_orientation(orientation)
90 FontPlatformData::FontPlatformData(CGFontRef cgFont, float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation, FontWidthVariant widthVariant) argument
93 , m_orientation(orientation)
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
H A DFontCustomPlatformDataSkia.cpp57 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant) argument
60 return FontPlatformData(m_typeface.get(), "", size, bold && !m_typeface->isBold(), italic && !m_typeface->isItalic(), orientation);
/external/chromium_org/ui/views/controls/
H A Dseparator.cc21 Separator::Separator(Orientation orientation) : orientation_(orientation) { argument
/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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowConfiguration.java19 public int orientation; field in class:ShadowConfiguration
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
H A DFontCustomPlatformDataMac.cpp46 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant widthVariant) argument
48 return FontPlatformData(m_cgFont.get(), size, bold, italic, orientation, widthVariant);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDetailsMarker.cpp71 RenderDetailsMarker::Orientation RenderDetailsMarker::orientation() const function in class:WebCore::RenderDetailsMarker
96 switch (orientation()) {
/external/chromium_org/third_party/WebKit/Source/web/linux/
H A DWebFontRendering.cpp90 void WebFontRendering::setLCDOrientation(SkFontHost::LCDOrientation orientation) argument
92 SkFontHost::SetSubpixelOrientation(orientation);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp47 QVariant EventListModel::headerData(int section, Qt::Orientation orientation, argument
53 if (orientation == Qt::Horizontal) {

Completed in 7017 milliseconds

12345