Searched refs:orientation (Results 1 - 25 of 154) sorted by relevance

1234567

/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DMainFrameScrollbarGtk.cpp32 PassRefPtr<MainFrameScrollbarGtk> MainFrameScrollbarGtk::create(ScrollableArea* scrollableArea, ScrollbarOrientation orientation) argument
34 return adoptRef(new MainFrameScrollbarGtk(scrollableArea, orientation));
43 MainFrameScrollbarGtk::MainFrameScrollbarGtk(ScrollableArea* scrollableArea, ScrollbarOrientation orientation) argument
44 : Scrollbar(scrollableArea, orientation, RegularScrollbar)
H A DScrollbarThemeGtk2.cpp72 return scrollbar->orientation() == VerticalScrollbar ? theme->gtkVScrollbar() : theme->gtkHScrollbar();
120 GtkOrientation orientation = GTK_ORIENTATION_HORIZONTAL; local
121 if (scrollbar->orientation() == VerticalScrollbar) {
123 orientation = GTK_ORIENTATION_VERTICAL;
129 widgetContext.gtkPaintSlider(sliderRect, widget, stateType, shadowType, "slider", orientation);
154 ScrollbarOrientation orientation = scrollbar->orientation(); local
155 int buttonSize = (orientation == VerticalScrollbar) ? rect.height() : rect.width();
173 if (orientation == VerticalScrollbar) {
182 const char* detail = orientation
[all...]
H A DScrollbarThemeGtk3.cpp69 static void applyScrollbarStyleContextClasses(GtkStyleContext* context, ScrollbarOrientation orientation) argument
72 gtk_style_context_add_class(context, orientation == VerticalScrollbar ? GTK_STYLE_CLASS_VERTICAL : GTK_STYLE_CLASS_HORIZONTAL);
86 applyScrollbarStyleContextClasses(m_context, scrollbar->orientation());
101 applyScrollbarStyleContextClasses(m_context, scrollbar->orientation());
112 ScrollbarOrientation orientation = scrollbar->orientation(); local
113 applyScrollbarStyleContextClasses(m_context, orientation);
124 orientation == VerticalScrollbar ? GTK_ORIENTATION_VERTICAL : GTK_ORIENTATION_HORIZONTAL);
133 ScrollbarOrientation orientation = scrollbar->orientation(); local
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DDeviceOrientationEvent.cpp43 DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData* orientation) argument
45 , m_orientation(orientation)
49 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation) argument
55 m_orientation = orientation;
H A DDeviceOrientationEvent.h42 static PassRefPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientationData* orientation) argument
44 return adoptRef(new DeviceOrientationEvent(eventType, orientation));
49 DeviceOrientationData* orientation() const { return m_orientation.get(); } function in class:WebCore::DeviceOrientationEvent
H A DViewportArguments.h53 float orientation; member in struct:WebCore::ViewportAttributes
89 , orientation(ValueAuto)
109 float orientation; member in struct:WebCore::ViewportArguments
131 && orientation == other.orientation;
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSDeviceOrientationEventCustom.cpp44 if (!imp.orientation()->canProvideAlpha())
46 return jsNumber(imp.orientation()->alpha());
52 if (!imp.orientation()->canProvideBeta())
54 return jsNumber(imp.orientation()->beta());
60 if (!imp.orientation()->canProvideGamma())
62 return jsNumber(imp.orientation()->gamma());
69 if (!imp.orientation()->canProvideCompassHeading())
71 return jsNumber(imp.orientation()->compassHeading());
77 if (!imp.orientation()->canProvideCompassAccuracy())
79 return jsNumber(imp.orientation()
111 RefPtr<DeviceOrientationData> orientation = DeviceOrientationData::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma, compassHeadingProvided, compassHeading, compassAccuracyProvided, compassAccuracy); local
115 RefPtr<DeviceOrientationData> orientation = DeviceOrientationData::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma, absoluteProvided, absolute); local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/efl/
H A DScrollbarEfl.cpp31 PassRefPtr<Scrollbar> Scrollbar::createNativeScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize size) argument
34 return adoptRef(new Scrollbar(scrollableArea, orientation, size));
36 return adoptRef(new ScrollbarEfl(scrollableArea, orientation, size));
39 ScrollbarEfl::ScrollbarEfl(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize) argument
40 : Scrollbar(scrollableArea, orientation, controlSize)
/macosx-10.10/WebCore-7600.1.25/accessibility/
H A DAccessibilityScrollbar.cpp66 AccessibilityOrientation AccessibilityScrollbar::orientation() const function in class:WebCore::AccessibilityScrollbar
71 if (m_scrollbar->orientation() == HorizontalScrollbar)
73 if (m_scrollbar->orientation() == VerticalScrollbar)
103 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebDeviceOrientationProviderMock.h38 - (void)setOrientation:(WebDeviceOrientation*)orientation;
H A DWebDeviceOrientationProviderMock.mm44 - (void)setOrientation:(WebDeviceOrientation*)orientation
46 m_core->setOrientation(core(orientation));
103 - (void)setOrientation:(WebDeviceOrientation*)orientation
105 [m_internal setOrientation:orientation];
H A DWebDeviceOrientation.mm58 DeviceOrientationData* core(WebDeviceOrientation* orientation)
60 return orientation ? orientation->m_internal->m_orientation.get() : 0;
H A DWebDeviceOrientationProviderMockInternal.h37 - (void)setOrientation:(WebDeviceOrientation*)orientation;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DImageOrientation.h34 // This enum intentionally matches the orientation values from the EXIF spec.
57 ImageOrientationEnum orientation)
59 , m_orientation(orientation)
78 void setImageOrientationEnum(ImageOrientationEnum orientation) { m_orientation = orientation; } argument
87 ImageOrientation(ImageOrientationEnum orientation = DefaultImageOrientation)
88 : m_orientation(orientation)
108 // This transform can be used for drawing an image according to the orientation.
56 ImageOrientationDescription(RespectImageOrientationEnum shouldRespectImageOrientation, ImageOrientationEnum orientation) argument
H A DSVGGlyph.h55 , orientation(Both)
77 && orientation == other.orientation
91 unsigned orientation : 2; // Orientation member in struct:WebCore::SVGGlyph
/macosx-10.10/WebCore-7600.1.25/platform/mock/
H A DDeviceOrientationClientMock.cpp58 void DeviceOrientationClientMock::setOrientation(PassRefPtr<DeviceOrientationData> orientation) argument
60 m_orientation = orientation;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py39 # Setup the orientation transformation matrix so that the image will display with the
40 # proper orientation
45 # Transforms the context based on the orientation of the image.
53 orientation = IIGetImageOrientation(image)
54 if orientation == 1:
59 elif orientation == 2:
64 elif orientation == 3:
69 elif orientation == 4:
74 elif orientation == 5:
79 elif orientation
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py39 # Setup the orientation transformation matrix so that the image will display with the
40 # proper orientation
45 # Transforms the context based on the orientation of the image.
53 orientation = IIGetImageOrientation(image)
54 if orientation == 1:
59 elif orientation == 2:
64 elif orientation == 3:
69 elif orientation == 4:
74 elif orientation == 5:
79 elif orientation
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py39 # Setup the orientation transformation matrix so that the image will display with the
40 # proper orientation
45 # Transforms the context based on the orientation of the image.
53 orientation = IIGetImageOrientation(image)
54 if orientation == 1:
59 elif orientation == 2:
64 elif orientation == 3:
69 elif orientation == 4:
74 elif orientation == 5:
79 elif orientation
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/win/
H A DScrollbarThemeSafari.cpp109 return scrollbar->enabled() && (scrollbar->orientation() == HorizontalScrollbar ?
116 return scrollbar->enabled() && (scrollbar->orientation() == HorizontalScrollbar ?
121 static IntRect buttonRepaintRect(const IntRect& buttonRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, bool start) argument
124 if (orientation == HorizontalScrollbar) {
146 if (scrollbar->orientation() == HorizontalScrollbar)
151 return buttonRepaintRect(result, scrollbar->orientation(), scrollbar->controlSize(), true);
164 if (scrollbar->orientation() == HorizontalScrollbar)
169 return buttonRepaintRect(result, scrollbar->orientation(), scrollbar->controlSize(), false);
173 static IntRect trackRepaintRect(const IntRect& trackRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize) argument
176 if (orientation
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/mac/
H A DFontCustomPlatformData.cpp34 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant widthVariant, FontRenderingMode) argument
36 return FontPlatformData(m_cgFont.get(), size, bold, italic, orientation, widthVariant);
H A DSimpleFontDataCoreText.cpp38 CFDictionaryRef SimpleFontData::getCFStringAttributes(TypesettingFeatures typesettingFeatures, FontOrientation orientation) const
57 bool allowLigatures = (orientation == Horizontal && platformData().allowsLigatures()) || (typesettingFeatures & Ligatures);
64 if (orientation == Vertical)
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.h77 void setOrientation(ImageOrientation orientation) { m_orientation = orientation; } argument
/macosx-10.10/WebCore-7600.1.25/Modules/webaudio/
H A DAudioListener.h58 void setOrientation(const FloatPoint3D &orientation) { m_orientation = orientation; } argument
59 const FloatPoint3D& orientation() const { return m_orientation; } function in class:WebCore::AudioListener
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderDetailsMarker.h36 Orientation orientation() const;

Completed in 383 milliseconds

1234567