/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/ |
DeviceOrientationEvent.cpp | 39 : m_orientation(DeviceOrientationData::create()) 46 , m_orientation(orientation) 57 m_orientation = orientation; 62 if (m_orientation->canProvideAlpha()) 63 return m_orientation->alpha(); 71 if (m_orientation->canProvideBeta()) 72 return m_orientation->beta(); 80 if (m_orientation->canProvideGamma()) 81 return m_orientation->gamma(); 89 if (m_orientation->canProvideAbsolute() [all...] |
DeviceOrientationEvent.h | 49 DeviceOrientationData* orientation() const { return m_orientation.get(); } 62 RefPtr<DeviceOrientationData> m_orientation; member in class:WebCore::DeviceOrientationEvent
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
ImageOrientation.h | 60 : m_orientation(orientation) 67 return m_orientation >= OriginLeftTop; 84 inline bool operator==(const ImageOrientation& other) const { return other.m_orientation == m_orientation; } 89 ImageOrientationEnum m_orientation; member in class:WebCore::ImageOrientation
|
FrameData.cpp | 36 , m_orientation(DefaultImageOrientation) 55 m_orientation = DefaultImageOrientation;
|
FrameData.h | 61 ImageOrientation m_orientation; member in struct:WebCore::FrameData
|
ImageOrientation.cpp | 39 switch (m_orientation) {
|
DeferredImageDecoder.h | 93 ImageOrientation m_orientation; member in class:WebCore::DeferredImageDecoder
|
DeferredImageDecoder.cpp | 53 , m_orientation(DefaultImageOrientation) 198 return m_actualDecoder ? m_actualDecoder->orientation() : m_orientation; 206 m_orientation = m_actualDecoder->orientation();
|
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
AudioListener.cpp | 41 , m_orientation(0, 0, -1)
|
AudioListener.h | 59 void setOrientation(const FloatPoint3D &orientation) { m_orientation = orientation; } 60 const FloatPoint3D& orientation() const { return m_orientation; } 84 FloatPoint3D m_orientation; member in class:WebCore::AudioListener
|
PannerNode.h | 92 void setOrientation(float x, float y, float z) { m_orientation = FloatPoint3D(x, y, z); } 146 FloatPoint3D m_orientation; member in class:WebCore::PannerNode
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
FontPlatformData.cpp | 40 , m_orientation(Horizontal) 57 , m_orientation(Horizontal) 74 , m_orientation(orientation) 92 , m_orientation(orientation) 107 , m_orientation(source.m_orientation) 127 m_orientation = other.m_orientation;
|
FontPlatformData.h | 122 FontOrientation orientation() const { return m_orientation; } 125 void setOrientation(FontOrientation orientation) { m_orientation = orientation; } 135 uintptr_t hashCodes[3] = { (uintptr_t)m_font, m_widthVariant, static_cast<uintptr_t>(m_isPrinterFont << 3 | m_orientation << 2 | m_syntheticBold << 1 | m_syntheticOblique) }; 153 && m_orientation == other.m_orientation 186 FontOrientation m_orientation; member in class:WebCore::FontPlatformData
|
FontDescription.h | 80 , m_orientation(Horizontal) 136 FontOrientation orientation() const { return static_cast<FontOrientation>(m_orientation); } 168 void setOrientation(FontOrientation orientation) { m_orientation = orientation; } 188 unsigned m_orientation : 1; // FontOrientation - Whether the font is rendering on a horizontal line or a vertical line. 241 && m_orientation == other.m_orientation
|
FontDescription.cpp | 170 static_cast<unsigned>(m_orientation) << 2 | // bit 3
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/ |
FontPlatformDataHarfBuzz.cpp | 85 , m_orientation(Horizontal) 95 , m_orientation(Horizontal) 105 , m_orientation(Horizontal) 117 , m_orientation(src.m_orientation) 131 , m_orientation(orientation) 144 , m_orientation(src.m_orientation) 172 m_orientation = src.m_orientation; [all...] |
FontPlatformDataHarfBuzz.h | 98 FontOrientation orientation() const { return m_orientation; } 99 void setOrientation(FontOrientation orientation) { m_orientation = orientation; } 139 FontOrientation m_orientation; member in class:WebCore::FontPlatformData
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/ |
FontPlatformDataWin.cpp | 174 , m_orientation(Horizontal) 190 , m_orientation(Horizontal) 208 , m_orientation(orientation) 222 , m_orientation(Horizontal) 238 , m_orientation(data.m_orientation) 254 , m_orientation(data.m_orientation) 272 , m_orientation(orientation) 297 m_orientation = data.m_orientation [all...] |
FontPlatformDataWin.h | 102 FontOrientation orientation() const { return m_orientation; } 103 void setOrientation(FontOrientation orientation) { m_orientation = orientation; } 171 FontOrientation m_orientation; member in class:WebCore::FontPlatformData
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/ |
JPEGImageDecoder.h | 61 void setOrientation(ImageOrientation orientation) { m_orientation = orientation; }
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
Scrollbar.cpp | 55 , m_orientation(orientation) 134 if (m_orientation == VerticalScrollbar && m_scrollableArea) 263 if (m_orientation == HorizontalScrollbar) { 293 float destinationPosition = (m_orientation == HorizontalScrollbar ? currentPosition.x() : currentPosition.y()) + delta; 294 destinationPosition = m_scrollableArea->clampScrollPosition(m_orientation, destinationPosition); 295 m_scrollableArea->scrollToOffsetWithoutAnimation(m_orientation, destinationPosition); 314 float minPos = m_scrollableArea->minimumScrollPosition(m_orientation); 315 float maxPos = m_scrollableArea->maximumScrollPosition(m_orientation); 318 m_scrollableArea->scrollToOffsetWithoutAnimation(m_orientation, newPosition); 395 m_scrollableArea->scrollToOffsetWithoutAnimation(m_orientation, m_dragOrigin) [all...] |
Scrollbar.h | 83 virtual ScrollbarOrientation orientation() const { return m_orientation; } 168 ScrollbarOrientation m_orientation; member in class:WebCore::Scrollbar
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/ |
FontPlatformDataSkia.cpp | 44 h ^= 0x01010101 * ((static_cast<int>(m_orientation) << 2) | (static_cast<int>(m_fakeBold) << 1) | static_cast<int>(m_fakeItalic));
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ |
ImageDecoder.h | 154 ImageOrientation orientation() const { return m_orientation; } 268 ImageOrientation m_orientation; member in class:WebCore::ImageDecoder
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
Frame.h | 193 int orientation() const { return m_orientation; } 242 int m_orientation; member in class:WebCore::Frame
|