HomeSort by relevance Sort by last modified time
    Searched refs:m_orientation (Results 1 - 25 of 33) sorted by null

1 2

  /external/webkit/Source/WebCore/dom/
DeviceOrientationEvent.cpp 38 : m_orientation(DeviceOrientation::create())
44 , m_orientation(orientation)
54 m_orientation = orientation;
DeviceOrientationEvent.h 51 DeviceOrientation* orientation() const { return m_orientation.get(); }
57 RefPtr<DeviceOrientation> m_orientation; member in class:WebCore::DeviceOrientationEvent
  /external/webkit/Source/WebCore/webaudio/
AudioListener.cpp 41 , m_orientation(0.0, 0.0, -1.0)
AudioListener.h 58 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
AudioPannerNode.h 83 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/
DeviceOrientationClientMockQt.cpp 43 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());
DeviceOrientationProviderQt.cpp 30 m_orientation = DeviceOrientation::create();
64 m_orientation = DeviceOrientation::create(hasAlpha(), reading->z(),
67 emit deviceOrientationChanged(m_orientation.get());
74 m_orientation = orientation;
DeviceOrientationProviderQt.h 45 DeviceOrientation* orientation() const { return m_orientation.get(); }
57 RefPtr<DeviceOrientation> m_orientation; member in class:WebCore::DeviceOrientationProviderQt
DeviceOrientationClientMockQt.h 56 RefPtr<DeviceOrientation> m_orientation; member in class:WebCore::DeviceOrientationClientMockQt
  /external/webkit/Source/WebCore/platform/graphics/
FontPlatformData.cpp 37 , m_orientation(source.m_orientation)
54 m_orientation = other.m_orientation;
FontDescription.h 61 , 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
FontPlatformData.h 113 , 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...]
FontCache.cpp 68 , 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/
DeviceOrientationClientMock.h 51 virtual DeviceOrientation* lastOrientation() const { return m_orientation.get(); }
59 RefPtr<DeviceOrientation> m_orientation; member in class:WebCore::DeviceOrientationClientMock
DeviceOrientationClientMock.cpp 60 m_orientation = orientation;
69 m_controller->didChangeDeviceOrientation(m_orientation.get());
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontPlatformDataLinux.h 70 , 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
FontPlatformDataLinux.cpp 78 , 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) << 2) | (static_cast<int>(m_fakeBold) << 1) | static_cast<int>(m_fakeItalic))
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebDeviceOrientationInternal.h 33 RefPtr<WebCore::DeviceOrientation> m_orientation; variable
WebDeviceOrientation.mm 37 m_orientation = coreDeviceOrientation;
60 return orientation ? orientation->m_internal->m_orientation.get() : 0;
  /external/webkit/Source/WebCore/accessibility/
AccessibilityScrollbar.h 66 AccessibilityOrientation m_orientation; member in class:WebCore::AccessibilityScrollbar
  /external/webkit/Source/WebCore/platform/
Scrollbar.h 61 ScrollbarOrientation orientation() const { return m_orientation; }
146 ScrollbarOrientation m_orientation; member in class:WebCore::Scrollbar
Scrollbar.cpp 67 , 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/
FontPlatformDataWin.cpp 41 , m_orientation(Horizontal)
FontPlatformDataCairoWin.cpp 62 , m_orientation(Horizontal)
  /external/webkit/Source/WebCore/platform/graphics/cocoa/
FontPlatformDataCocoa.mm 52 , m_orientation(orientation)
220 + (m_syntheticBold ? " synthetic bold" : "") + (m_syntheticOblique ? " synthetic oblique" : "") + (m_orientation ? " vertical orientation" : "");

Completed in 251 milliseconds

1 2