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

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceOrientationEvent.cpp 38 : m_orientation(DeviceOrientationData::create())
44 , m_orientation(orientation)
54 m_orientation = orientation;
59 if (m_orientation->canProvideAlpha())
60 return m_orientation->alpha();
68 if (m_orientation->canProvideBeta())
69 return m_orientation->beta();
77 if (m_orientation->canProvideGamma())
78 return m_orientation->gamma();
86 if (m_orientation->canProvideAbsolute()
    [all...]
DeviceOrientationEvent.h 51 DeviceOrientationData* orientation() const { return m_orientation.get(); }
66 PersistentWillBeMember<DeviceOrientationData> m_orientation; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenScreenOrientation.cpp 36 if (!self.m_orientation)
37 self.m_orientation = ScreenOrientation::create(screen.frame());
39 return self.m_orientation.get();
49 visitor->trace(m_orientation);
ScreenOrientationController.cpp 79 ASSERT(m_orientation);
90 m_orientation->setType(orientationType);
91 m_orientation->setAngle(screenOrientationAngle(view));
96 return m_orientation && frame() && page() && page()->visibilityState() == PageVisibilityStateVisible;
115 if (frame() == frame()->localFrameRoot() && m_orientation->angle() != currentAngle)
150 m_orientation = orientation;
151 if (m_orientation)
174 if (!m_orientation)
176 m_orientation->dispatchEvent(Event::create(EventTypeNames::change));
206 if (m_orientation && page()->visibilityState() == PageVisibilityStateVisible
    [all...]
ScreenScreenOrientation.h 31 PersistentWillBeMember<ScreenOrientation> m_orientation; member in class:blink::FINAL
ScreenOrientationController.h 66 PersistentWillBeMember<ScreenOrientation> m_orientation; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontPlatformData.cpp 46 , m_orientation(Horizontal)
75 , m_orientation(Horizontal)
104 , m_orientation(orientation)
133 , m_orientation(source.m_orientation)
164 , m_orientation(orientation)
184 , m_orientation(orientation)
206 , m_orientation(src.m_orientation)
243 m_orientation = other.m_orientation
    [all...]
FontDescription.h 63 , m_orientation(Horizontal)
160 FontOrientation orientation() const { return static_cast<FontOrientation>(m_orientation); }
182 void setOrientation(FontOrientation orientation) { m_orientation = orientation; }
216 unsigned m_orientation : 1; // FontOrientation - Whether the font is rendering on a horizontal line or a vertical line.
275 && m_orientation == other.m_orientation
FontPlatformData.h 116 FontOrientation orientation() const { return m_orientation; }
117 void setOrientation(FontOrientation orientation) { m_orientation = orientation; }
184 FontOrientation m_orientation; member in class:blink::FontPlatformData
  /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:blink::ImageOrientation
FrameData.cpp 36 , m_orientation(DefaultImageOrientation)
55 m_orientation = DefaultImageOrientation;
DeferredImageDecoder.cpp 50 , m_orientation(DefaultImageOrientation)
201 return m_actualDecoder ? m_actualDecoder->orientation() : m_orientation;
209 m_orientation = m_actualDecoder->orientation();
DeferredImageDecoder.h 95 ImageOrientation m_orientation; member in class:blink::DeferredImageDecoder
FrameData.h 51 ImageOrientation m_orientation; member in struct:blink::FrameData
ImageOrientation.cpp 39 switch (m_orientation) {
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.cpp 53 , m_orientation(orientation)
127 if (m_orientation == VerticalScrollbar && m_scrollableArea)
251 if (m_orientation == HorizontalScrollbar) {
281 float destinationPosition = (m_orientation == HorizontalScrollbar ? currentPosition.x() : currentPosition.y()) + delta;
282 destinationPosition = m_scrollableArea->clampScrollPosition(m_orientation, destinationPosition);
283 m_scrollableArea->scrollToOffsetWithoutAnimation(m_orientation, destinationPosition);
302 float minPos = m_scrollableArea->minimumScrollPosition(m_orientation);
303 float maxPos = m_scrollableArea->maximumScrollPosition(m_orientation);
306 m_scrollableArea->scrollToOffsetWithoutAnimation(m_orientation, newPosition);
383 m_scrollableArea->scrollToOffsetWithoutAnimation(m_orientation, m_dragOrigin + m_scrollableArea->minimumScrollPosition(m_orientation))
    [all...]
Scrollbar.h 82 virtual ScrollbarOrientation orientation() const OVERRIDE { return m_orientation; }
167 ScrollbarOrientation m_orientation; member in class:blink::Scrollbar
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioListener.cpp 44 , m_orientation(0, 0, -1)
118 if (m_orientation == orientation)
123 m_orientation = orientation;
AudioListener.h 63 const FloatPoint3D& orientation() const { return m_orientation; }
101 FloatPoint3D m_orientation; member in class:blink::AudioListener
PannerNode.cpp 52 , m_orientation(1, 0, 0)
360 if (m_orientation == orientation)
365 m_orientation = orientation;
496 double coneGain = m_coneEffect.gain(m_position, m_orientation, listenerPosition);
PannerNode.h 142 FloatPoint3D m_orientation; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
FontPlatformDataSkia.cpp 44 h ^= 0x01010101 * ((static_cast<int>(m_isHashTableDeletedValue) << 3) | (static_cast<int>(m_orientation) << 2) | (static_cast<int>(m_syntheticBold) << 1) | static_cast<int>(m_syntheticItalic));
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.h 67 void setOrientation(ImageOrientation orientation) { m_orientation = orientation; }
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/
FontPlatformDataCocoa.mm 39 uintptr_t hashCodes[3] = { (uintptr_t)m_font, m_widthVariant, static_cast<uintptr_t>(m_isHashTableDeletedValue << 3 | m_orientation << 2 | m_syntheticBold << 1 | m_syntheticItalic) };
50 , m_orientation(orientation)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h 170 ImageOrientation orientation() const { return m_orientation; }
304 ImageOrientation m_orientation; member in class:blink::ImageDecoder

Completed in 201 milliseconds

1 2