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

12345

/external/webkit/Source/WebKit/chromium/src/
H A DWebDeviceOrientationController.cpp36 void WebDeviceOrientationController::didChangeDeviceOrientation(const WebDeviceOrientation& orientation) argument
38 PassRefPtr<WebCore::DeviceOrientation> deviceOrientation(orientation);
H A DWebDeviceOrientation.cpp34 WebDeviceOrientation::WebDeviceOrientation(const PassRefPtr<WebCore::DeviceOrientation>& orientation) argument
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) argument
58 if (!orientation) {
[all...]
H A DWebDeviceOrientationClientMock.cpp61 void WebDeviceOrientationClientMock::setOrientation(WebDeviceOrientation& orientation) argument
63 m_clientMock->setOrientation(orientation);
/external/skia/src/core/
H A DSkFontHost.cpp22 void SkFontHost::SetSubpixelOrientation(LCDOrientation orientation) argument
24 gLCDOrientation = orientation;
/external/webkit/Source/WebCore/dom/
H A DDeviceOrientationEvent.cpp42 DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientation* orientation) argument
44 , m_orientation(orientation)
48 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientation* orientation) argument
54 m_orientation = orientation;
H A DDeviceOrientationEvent.h42 static PassRefPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientation* orientation) argument
44 return adoptRef(new DeviceOrientationEvent(eventType, orientation));
51 DeviceOrientation* orientation() const { return m_orientation.get(); } function in class:WebCore::DeviceOrientationEvent
H A DDeviceOrientationController.cpp54 RefPtr<DeviceOrientation> orientation = m_client->lastOrientation(); local
55 RefPtr<DeviceOrientationEvent> event = DeviceOrientationEvent::create(eventNames().deviceorientationEvent, orientation.get());
66 // If the client already has an orientation, we should fire an event with that
67 // orientation. The event is fired asynchronously, but without
68 // waiting for the client to get a new orientation.
102 void DeviceOrientationController::didChangeDeviceOrientation(DeviceOrientation* orientation) argument
104 RefPtr<DeviceOrientationEvent> event = DeviceOrientationEvent::create(eventNames().deviceorientationEvent, orientation);
/external/webkit/Source/WebCore/platform/mock/
H A DDeviceOrientationClientMock.cpp58 void DeviceOrientationClientMock::setOrientation(PassRefPtr<DeviceOrientation> orientation) argument
60 m_orientation = orientation;
/external/webkit/Source/WebCore/platform/qt/
H A DWheelEventQt.cpp33 void PlatformWheelEvent::applyDelta(int delta, Qt::Orientation orientation) argument
40 if (orientation == Qt::Horizontal) {
73 applyDelta(e->delta(), e->orientation());
92 applyDelta(e->delta(), e->orientation());
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDeviceOrientationProviderQt.h45 DeviceOrientation* orientation() const { return m_orientation.get(); } function in class:WebCore::DeviceOrientationProviderQt
H A DDeviceOrientationClientQt.cpp61 return m_provider->orientation();
69 void DeviceOrientationClientQt::changeDeviceOrientation(DeviceOrientation* orientation) argument
74 m_controller->didChangeDeviceOrientation(orientation);
H A DDeviceOrientationProviderQt.cpp53 // Provide device orientation data according W3C spec:
54 // http://dev.w3.org/geo/api/spec-source-orientation.html
72 void DeviceOrientationProviderQt::changeDeviceOrientation(DeviceOrientation* orientation) argument
74 m_orientation = orientation;
/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/webkit/Source/WebCore/accessibility/
H A DAccessibilityScrollbar.cpp67 AccessibilityOrientation AccessibilityScrollbar::orientation() const function in class:WebCore::AccessibilityScrollbar
72 if (m_scrollbar->orientation() == HorizontalScrollbar)
74 if (m_scrollbar->orientation() == VerticalScrollbar)
104 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
/external/webkit/Source/WebCore/bindings/js/
H A DJSDeviceOrientationEventCustom.cpp41 if (!imp->orientation()->canProvideAlpha())
43 return jsNumber(imp->orientation()->alpha());
49 if (!imp->orientation()->canProvideBeta())
51 return jsNumber(imp->orientation()->beta());
57 if (!imp->orientation()->canProvideGamma())
59 return jsNumber(imp->orientation()->gamma());
75 RefPtr<DeviceOrientation> orientation = DeviceOrientation::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma); local
77 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
/external/webkit/Source/WebCore/css/
H A DSVGCSSComputedStyleDeclaration.cpp33 static PassRefPtr<CSSPrimitiveValue> glyphOrientationToCSSPrimitiveValue(EGlyphOrientation orientation) argument
35 switch (orientation) {
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DFontPlatformData.h81 FontOrientation orientation() const { return Horizontal; } // FIXME: Implement. function in class:WebCore::FontPlatformData
/external/webkit/Source/WebKit/chromium/src/linux/
H A DWebFontRendering.cpp65 void WebFontRendering::setLCDOrientation(SkFontHost::LCDOrientation orientation) argument
67 SkFontHost::SetSubpixelOrientation(orientation);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DeviceOrientationEventCustom.cpp45 if (!imp->orientation()->canProvideAlpha())
47 return v8::Number::New(imp->orientation()->alpha());
55 if (!imp->orientation()->canProvideBeta())
57 return v8::Number::New(imp->orientation()->beta());
65 if (!imp->orientation()->canProvideGamma())
67 return v8::Number::New(imp->orientation()->gamma());
84 RefPtr<DeviceOrientation> orientation = DeviceOrientation::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma); local
85 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DFontPlatformDataChromiumWin.h73 FontOrientation orientation() const { return Horizontal; } // FIXME: Implement. function in class:WebCore::FontPlatformData
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DFontCustomPlatformData.cpp41 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation orientation, TextOrientation textOrientation, FontWidthVariant widthVariant, FontRenderingMode) argument
43 return FontPlatformData(m_cgFont, size, bold, italic, orientation, textOrientation, widthVariant);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DFontPlatformData.h143 FontOrientation orientation() const { return Horizontal; } // FIXME: Implement. function in class:WebCore::FontPlatformData
/external/webkit/Source/WebCore/platform/gtk/
H A DMainFrameScrollbarGtk.cpp33 PassRefPtr<MainFrameScrollbarGtk> MainFrameScrollbarGtk::create(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, GtkAdjustment* adj) argument
35 return adoptRef(new MainFrameScrollbarGtk(scrollableArea, orientation, adj));
45 MainFrameScrollbarGtk::MainFrameScrollbarGtk(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, GtkAdjustment* adjustment) argument
46 : Scrollbar(scrollableArea, orientation, RegularScrollbar)
124 that->scrollableArea()->scrollToOffsetWithoutAnimation(that->orientation(), newValue);
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp53 QVariant EventListModel::headerData(int section, Qt::Orientation orientation, argument
59 if (orientation == Qt::Horizontal) {
/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 1384 milliseconds

12345