Searched refs:m_orientation (Results 1 - 25 of 33) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DDeviceOrientationEvent.cpp38 : m_orientation(DeviceOrientation::create())
44 , m_orientation(orientation)
54 m_orientation = orientation;
H A DDeviceOrientationEvent.h51 DeviceOrientation* orientation() const { return m_orientation.get(); }
57 RefPtr<DeviceOrientation> m_orientation; member in class:WebCore::DeviceOrientationEvent
/external/webkit/Source/WebCore/webaudio/
H A DAudioListener.cpp41 , m_orientation(0.0, 0.0, -1.0)
H A DAudioListener.h58 void setOrientation(const FloatPoint3D &orientation) { m_orientation = orientation; }
59 const FloatPoint3D& orientation() const { return m_orientation; }
83 FloatPoint3D m_orientation; member in class:WebCore::AudioListener
H A DAudioPannerNode.h83 void setOrientation(float x, float y, float z) { m_orientation = FloatPoint3D(x, y, z); }
133 FloatPoint3D m_orientation; member in class:WebCore::AudioPannerNode
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDeviceOrientationClientMockQt.cpp43 m_orientation = DeviceOrientation::create();
68 return m_orientation.get();
78 m_orientation = DeviceOrientation::create(canProvideAlpha, alpha,
81 m_clientMock->setOrientation(m_orientation);
83 emit mockOrientationChanged(m_orientation.get());
H A DDeviceOrientationProviderQt.cpp30 m_orientation = DeviceOrientation::create();
64 m_orientation = DeviceOrientation::create(hasAlpha(), reading->z(),
67 emit deviceOrientationChanged(m_orientation.get());
74 m_orientation = orientation;
H A DDeviceOrientationProviderQt.h45 DeviceOrientation* orientation() const { return m_orientation.get(); }
57 RefPtr<DeviceOrientation> m_orientation; member in class:WebCore::DeviceOrientationProviderQt
H A DDeviceOrientationClientMockQt.h56 RefPtr<DeviceOrientation> m_orientation; member in class:WebCore::DeviceOrientationClientMockQt
/external/webkit/Source/WebCore/platform/graphics/
H A DFontPlatformData.cpp37 , m_orientation(source.m_orientation)
54 m_orientation = other.m_orientation;
H A DFontDescription.h61 , m_orientation(Horizontal)
103 FontOrientation orientation() const { return m_orientation; }
125 void setOrientation(FontOrientation orientation) { m_orientation = orientation; }
136 FontOrientation m_orientation; // Whether the font is rendering on a horizontal line or a vertical line. member in class:WebCore::FontDescription
176 && m_orientation == other.m_orientation
H A DFontPlatformData.h113 , m_orientation(Horizontal)
137 , m_orientation(Horizontal)
162 , m_orientation(orientation)
189 , m_orientation(orientation)
242 FontOrientation orientation() const { return m_orientation; }
246 void setOrientation(FontOrientation orientation) { m_orientation = orientation; }
260 uintptr_t hashCodes[3] = { (uintptr_t)m_font, m_widthVariant, m_textOrientation << 3 | m_orientation << 2 | m_syntheticBold << 1 | m_syntheticOblique };
276 && m_orientation == other.m_orientation
321 FontOrientation m_orientation; member in class:WebCore::FontPlatformData
[all...]
H A DFontCache.cpp68 , m_orientation(orientation)
81 m_renderingMode == other.m_renderingMode && m_orientation == other.m_orientation && m_textOrientation == other.m_textOrientation && m_widthVariant == other.m_widthVariant;
90 FontOrientation m_orientation; member in struct:WebCore::FontPlatformDataCacheKey
105 static_cast<unsigned>(fontKey.m_textOrientation) << 4 | static_cast<unsigned>(fontKey.m_orientation) << 3 | static_cast<unsigned>(fontKey.m_italic) << 2 | static_cast<unsigned>(fontKey.m_printerFont) << 1 | static_cast<unsigned>(fontKey.m_renderingMode)
/external/webkit/Source/WebCore/platform/mock/
H A DDeviceOrientationClientMock.cpp60 m_orientation = orientation;
69 m_controller->didChangeDeviceOrientation(m_orientation.get());
H A DDeviceOrientationClientMock.h51 virtual DeviceOrientation* lastOrientation() const { return m_orientation.get(); }
59 RefPtr<DeviceOrientation> m_orientation; member in class:WebCore::DeviceOrientationClientMock
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DFontPlatformDataLinux.h70 , m_orientation(Horizontal)
80 , m_orientation(Horizontal)
90 , m_orientation(Horizontal)
120 FontOrientation orientation() const { return m_orientation; }
121 void setOrientation(FontOrientation orientation) { m_orientation = orientation; }
169 FontOrientation m_orientation; member in class:WebCore::FontPlatformData
H A DFontPlatformDataLinux.cpp78 , m_orientation(src.m_orientation)
93 , m_orientation(orientation)
107 , m_orientation(src.m_orientation)
140 m_orientation = src.m_orientation;
206 && m_orientation == a.m_orientation
214 h ^= 0x01010101 * ((static_cast<int>(m_textOrientation) << 3) | (static_cast<int>(m_orientation) <<
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDeviceOrientationInternal.h33 RefPtr<WebCore::DeviceOrientation> m_orientation; variable
H A DWebDeviceOrientation.mm37 m_orientation = coreDeviceOrientation;
60 return orientation ? orientation->m_internal->m_orientation.get() : 0;
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityScrollbar.h66 AccessibilityOrientation m_orientation; member in class:WebCore::AccessibilityScrollbar
/external/webkit/Source/WebCore/platform/
H A DScrollbar.h61 ScrollbarOrientation orientation() const { return m_orientation; }
146 ScrollbarOrientation m_orientation; member in class:WebCore::Scrollbar
H A DScrollbar.cpp67 , m_orientation(orientation)
238 if (m_orientation == HorizontalScrollbar) {
272 m_scrollableArea->scrollToOffsetWithoutAnimation(m_orientation, newPosition);
306 m_scrollableArea->scrollToOffsetWithoutAnimation(m_orientation, m_dragOrigin);
308 moveThumb(m_orientation == HorizontalScrollbar ?
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontPlatformDataWin.cpp41 , m_orientation(Horizontal)
H A DFontPlatformDataCairoWin.cpp62 , m_orientation(Horizontal)
/external/webkit/Source/WebCore/platform/graphics/cocoa/
H A DFontPlatformDataCocoa.mm52 , m_orientation(orientation)
220 + (m_syntheticBold ? " synthetic bold" : "") + (m_syntheticOblique ? " synthetic oblique" : "") + (m_orientation ? " vertical orientation" : "");

Completed in 800 milliseconds

12