Searched refs:orientation (Results 101 - 125 of 239) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DDeferredImageDecoder.h72 ImageOrientation orientation() const;
H A DDeferredImageDecoder.cpp196 ImageOrientation DeferredImageDecoder::orientation() const function in class:WebCore::DeferredImageDecoder
198 return m_actualDecoder ? m_actualDecoder->orientation() : m_orientation;
206 m_orientation = m_actualDecoder->orientation();
H A DBitmapImage.cpp82 // Since we don't have a decoder, we can't figure out the image orientation.
273 ImageOrientation orientation = DefaultImageOrientation;
275 orientation = frameOrientationAtIndex(m_currentFrame);
278 if (orientation != DefaultImageOrientation) {
285 ctxt->concatCTM(orientation.transformFromDefault(normDstRect.size()));
287 if (orientation.usesWidthAsHeight()) {
288 // The destination rect will have it's width and height already reversed for the orientation of
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollbarThemeClient.h67 virtual ScrollbarOrientation orientation() const = 0;
H A DScrollAnimatorNone.cpp398 bool ScrollAnimatorNone::scroll(ScrollbarOrientation orientation, ScrollGranularity granularity, float step, float multiplier) argument
401 return ScrollAnimator::scroll(orientation, granularity, step, multiplier);
416 return ScrollAnimator::scroll(orientation, granularity, step, multiplier);
421 return ScrollAnimator::scroll(orientation, granularity, step, multiplier);
424 float scrollableSize = static_cast<float>(m_scrollableArea->scrollSize(orientation));
426 PerAxisData& data = (orientation == VerticalScrollbar) ? m_verticalData : m_horizontalData;
H A DScrollbarThemeMacOverlayAPI.mm61 bool isHorizontal = scrollbar->orientation() == HorizontalScrollbar;
162 return scrollbar->enabled() && (scrollbar->orientation() == HorizontalScrollbar ?
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebScrollbar.h108 virtual Orientation orientation() const = 0;
/external/chromium_org/third_party/skia/src/core/
H A DSkFontHost.cpp18 void SkFontLCDConfig::SetSubpixelOrientation(LCDOrientation orientation) { argument
19 gLCDOrientation = orientation;
39 void SkFontHost::SetSubpixelOrientation(LCDOrientation orientation) { argument
40 SkFontLCDConfig::SetSubpixelOrientation((SkFontLCDConfig::LCDOrientation)orientation);
/external/chromium_org/webkit/child/
H A Dwebthemeengine_impl_mac.cc46 if (scrollbarInfo.orientation ==
/external/chromium_org/webkit/renderer/compositor_bindings/
H A Dweb_compositor_support_impl.h38 blink::WebScrollbar::Orientation orientation, int thumb_thickness,
/external/skia/src/core/
H A DSkFontHost.cpp18 void SkFontLCDConfig::SetSubpixelOrientation(LCDOrientation orientation) { argument
19 gLCDOrientation = orientation;
39 void SkFontHost::SetSubpixelOrientation(LCDOrientation orientation) { argument
40 SkFontLCDConfig::SetSubpixelOrientation((SkFontLCDConfig::LCDOrientation)orientation);
/external/qemu/android/
H A Dhw-sensors.c116 Orientation orientation; member in union:__anon25059::__anon25060
154 * orientation:<azimuth>:<pitch>:<roll>
319 snprintf(buffer, sizeof buffer, "orientation:%g:%g:%g",
320 sensor->u.orientation.azimuth,
321 sensor->u.orientation.pitch,
322 sensor->u.orientation.roll);
539 qemu_put_float(f, s->u.orientation.azimuth);
540 qemu_put_float(f, s->u.orientation.pitch);
541 qemu_put_float(f, s->u.orientation.roll);
590 s->u.orientation
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCameraTest.java189 assertThat(cameraQuery.orientation, equalTo(0));
201 assertThat( cameraQuery.orientation, equalTo(0) );
204 assertThat( cameraQuery.orientation, equalTo(90) );
210 frontCamera.orientation = 0;
217 backCamera.orientation = 90;
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
H A DScrollingCoordinator.cpp219 void ScrollingCoordinator::removeWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation) argument
221 ScrollbarMap& scrollbars = orientation == HorizontalScrollbar ? m_horizontalScrollbars : m_verticalScrollbars;
237 PassOwnPtr<WebScrollbarLayer> ScrollingCoordinator::createSolidColorScrollbarLayer(ScrollbarOrientation orientation, int thumbThickness, bool isLeftSideVerticalScrollbar) argument
239 blink::WebScrollbar::Orientation webOrientation = (orientation == HorizontalScrollbar) ? blink::WebScrollbar::Horizontal : blink::WebScrollbar::Vertical;
267 WebScrollbarLayer* ScrollingCoordinator::addWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, PassOwnPtr<blink::WebScrollbarLayer> scrollbarLayer) argument
269 ScrollbarMap& scrollbars = orientation == HorizontalScrollbar ? m_horizontalScrollbars : m_verticalScrollbars;
273 WebScrollbarLayer* ScrollingCoordinator::getWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation) argument
275 ScrollbarMap& scrollbars = orientation == HorizontalScrollbar ? m_horizontalScrollbars : m_verticalScrollbars;
279 void ScrollingCoordinator::scrollableAreaScrollbarLayerDidChange(ScrollableArea* scrollableArea, ScrollbarOrientation orientation) argument
299 GraphicsLayer* scrollbarGraphicsLayer = orientation
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
H A DSimpleFontDataMac.mm129 FontPlatformData substitutePlatform(substituteFont, platformData().size(), isUsingPrinterFont, syntheticBold, syntheticOblique, platformData().orientation(), platformData().widthVariant());
234 if (platformData().orientation() == Vertical && !isTextOrientationFallback())
239 if (platformData().orientation() == Horizontal) {
312 FontPlatformData scaledFontData([[NSFontManager sharedFontManager] convertFont:m_platformData.font() toSize:size], size, m_platformData.isPrinterFont(), false, false, m_platformData.orientation());
373 boundingBox = CTFontGetBoundingRectsForGlyphs(m_platformData.ctFont(), platformData().orientation() == Vertical ? kCTFontVerticalOrientation : kCTFontHorizontalOrientation, &glyph, 0, 1);
384 if (platformData().orientation() == Horizontal || m_isBrokenIdeographFallback) {
432 ProviderInfo info = { characters, length, getCFStringAttributes(0, platformData().orientation()) };
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXScrollView.cpp59 AXObject* AXScrollView::scrollBar(AccessibilityOrientation orientation) argument
63 switch (orientation) {
H A DAXSlider.cpp52 AccessibilityOrientation AXSlider::orientation() const function in class:WebCore::AXSlider
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDetailsMarker.cpp71 RenderDetailsMarker::Orientation RenderDetailsMarker::orientation() const function in class:WebCore::RenderDetailsMarker
96 switch (orientation()) {
/external/chromium_org/third_party/WebKit/Source/web/
H A DPinchViewports.cpp137 void PinchViewports::setupScrollbar(WebScrollbar::Orientation orientation) argument
139 bool isHorizontal = orientation == WebScrollbar::Horizontal;
H A DWebPluginScrollbarImpl.h73 virtual WebScrollbar::Orientation orientation() const OVERRIDE;
/external/chromium_org/ui/views/layout/
H A Dbox_layout.cc12 BoxLayout::BoxLayout(BoxLayout::Orientation orientation, argument
16 : orientation_(orientation),
/external/chromium_org/cc/layers/
H A Dpainted_scrollbar_layer.h36 virtual ScrollbarOrientation orientation() const OVERRIDE;
H A Dpainted_scrollbar_layer.cc67 ScrollbarOrientation PaintedScrollbarLayer::orientation() const { function in class:cc::PaintedScrollbarLayer
117 if (orientation() == HORIZONTAL) {
165 if (orientation() == HORIZONTAL) {
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebScrollbarThemeClientImpl.h65 virtual ScrollbarOrientation orientation() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
H A DFontPlatformDataWin.cpp203 FontPlatformData::FontPlatformData(HFONT font, float size, FontOrientation orientation) argument
208 , m_orientation(orientation)
267 float textSize, bool fakeBold, bool fakeItalic, FontOrientation orientation,
272 , m_orientation(orientation)
266 FontPlatformData(PassRefPtr<SkTypeface> tf, const char* family, float textSize, bool fakeBold, bool fakeItalic, FontOrientation orientation, bool useSubpixelPositioning) argument

Completed in 809 milliseconds

12345678910