Searched defs:orientation (Results 1 - 25 of 120) sorted by relevance

12345

/external/chromium_org/cc/quads/
H A Dio_surface_draw_quad.h29 Orientation orientation);
38 Orientation orientation);
42 Orientation orientation; member in class:cc::IOSurfaceDrawQuad
H A Dio_surface_draw_quad.cc15 orientation(FLIPPED) {
27 Orientation orientation) {
34 this->orientation = orientation;
44 Orientation orientation) {
49 this->orientation = orientation;
67 switch (orientation) {
76 value->SetString("orientation", orientation_string);
22 SetNew(const SharedQuadState* shared_quad_state, gfx::Rect rect, gfx::Rect opaque_rect, gfx::Size io_surface_size, unsigned io_surface_resource_id, Orientation orientation) argument
37 SetAll(const SharedQuadState* shared_quad_state, gfx::Rect rect, gfx::Rect opaque_rect, gfx::Rect visible_rect, bool needs_blending, gfx::Size io_surface_size, unsigned io_surface_resource_id, Orientation orientation) argument
/external/chromium_org/third_party/WebKit/Source/modules/device_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 DDeviceOrientationEvent.cpp44 DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData* orientation) argument
46 , m_orientation(orientation)
51 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation) argument
57 m_orientation = orientation;
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.h61 void setOrientation(ImageOrientation orientation) { m_orientation = orientation; } argument
/external/chromium_org/ui/views/layout/
H A Dbox_layout_unittest.cc139 BoxLayout::Orientation orientation = i == 0 ? BoxLayout::kHorizontal : local
142 host_->SetLayoutManager(new BoxLayout(orientation, 0, 0, 5));
/external/chromium_org/printing/
H A Dprint_settings_initializer_gtk.cc61 // orientation, all that does is change the paper size. Which seems to be
63 // The orientation value stays as portrait and does not actually affect
66 // orientation and change the paper size ourselves.
67 GtkPageOrientation orientation = gtk_print_settings_get_orientation(settings); local
69 print_settings->SetOrientation(orientation == GTK_PAGE_ORIENTATION_LANDSCAPE);
H A Dprint_settings_initializer_mac.cc21 PMOrientation orientation = kPMPortrait; local
22 PMGetOrientation(page_format, &orientation);
23 print_settings->SetOrientation(orientation == kPMLandscape);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8DeviceOrientationEventCustom.cpp51 RefPtr<DeviceOrientationData> orientation = DeviceOrientationData::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma, absoluteProvided, absolute); local
52 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXScrollbar.cpp69 AccessibilityOrientation AXScrollbar::orientation() const function in class:WebCore::AXScrollbar
74 if (m_scrollbar->orientation() == HorizontalScrollbar)
76 if (m_scrollbar->orientation() == VerticalScrollbar)
106 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
H A DAXSlider.cpp52 AccessibilityOrientation AXSlider::orientation() const function in class:WebCore::AXSlider
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontPlatformData.cpp71 FontPlatformData::FontPlatformData(float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation, FontWidthVariant widthVariant) argument
74 , m_orientation(orientation)
89 FontPlatformData::FontPlatformData(CGFontRef cgFont, float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation, FontWidthVariant widthVariant) argument
92 , m_orientation(orientation)
/external/chromium_org/ui/views/controls/
H A Dseparator.cc21 Separator::Separator(Orientation orientation) : orientation_(orientation) { argument
/external/chromium_org/webkit/renderer/compositor_bindings/
H A Dweb_scrollbar_layer_impl.cc19 blink::WebScrollbar::Orientation orientation) {
20 return orientation == blink::WebScrollbar::Horizontal ? cc::HORIZONTAL
39 blink::WebScrollbar::Orientation orientation,
44 ConvertOrientation(orientation),
18 ConvertOrientation( blink::WebScrollbar::Orientation orientation) argument
38 WebScrollbarLayerImpl( blink::WebScrollbar::Orientation orientation, int thumb_thickness, bool is_left_side_vertical_scrollbar) argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DSelfOrientingSashForm.java21 * automatically reset its orientation based on the relationship between the width and height of the
95 public void setOrientation(int orientation) { argument
100 super.setOrientation(orientation);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowConfiguration.java19 public int orientation; field in class:ShadowConfiguration
/external/chromium_org/cc/layers/
H A Dsolid_color_scrollbar_layer.cc16 tree_impl, id(), orientation(), thumb_thickness_,
21 ScrollbarOrientation orientation,
26 orientation,
33 ScrollbarOrientation orientation,
38 orientation_(orientation),
64 ScrollbarOrientation SolidColorScrollbarLayer::orientation() const { function in class:cc::SolidColorScrollbarLayer
20 Create( ScrollbarOrientation orientation, int thumb_thickness, bool is_left_side_vertical_scrollbar, int scroll_layer_id) argument
32 SolidColorScrollbarLayer( ScrollbarOrientation orientation, int thumb_thickness, bool is_left_side_vertical_scrollbar, int scroll_layer_id) argument
H A Dsolid_color_scrollbar_layer_impl.cc16 ScrollbarOrientation orientation,
20 tree_impl, id, orientation, thumb_thickness,
29 tree_impl, id(), orientation(), thumb_thickness_,
36 ScrollbarOrientation orientation,
39 : ScrollbarLayerImplBase(tree_impl, id, orientation,
52 if (orientation() == HORIZONTAL)
65 if (orientation() == HORIZONTAL)
13 Create( LayerTreeImpl* tree_impl, int id, ScrollbarOrientation orientation, int thumb_thickness, bool is_left_side_vertical_scrollbar) argument
33 SolidColorScrollbarLayerImpl( LayerTreeImpl* tree_impl, int id, ScrollbarOrientation orientation, int thumb_thickness, bool is_left_side_vertical_scrollbar) argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DSVGCSSComputedStyleDeclaration.cpp33 static PassRefPtr<CSSPrimitiveValue> glyphOrientationToCSSPrimitiveValue(EGlyphOrientation orientation) argument
35 switch (orientation) {
/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/platform/fonts/mac/
H A DFontCustomPlatformDataMac.cpp45 FontPlatformData FontCustomPlatformData::fontPlatformData(float size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant widthVariant) argument
47 return FontPlatformData(m_cgFont.get(), size, bold, italic, orientation, widthVariant);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
H A DFontCustomPlatformDataSkia.cpp56 FontPlatformData FontCustomPlatformData::fontPlatformData(float size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant) argument
79 return FontPlatformData(typeface.release(), "", size, syntheticBold, syntheticItalic, orientation);
82 return FontPlatformData(m_typeface.get(), "", size, bold && !m_typeface->isBold(), italic && !m_typeface->isItalic(), orientation);
/external/chromium_org/third_party/WebKit/Source/web/linux/
H A DWebFontRendering.cpp92 void WebFontRendering::setLCDOrientation(SkFontHost::LCDOrientation orientation) argument
94 SkFontHost::SetSubpixelOrientation(orientation);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp47 QVariant EventListModel::headerData(int section, Qt::Orientation orientation, argument
53 if (orientation == Qt::Horizontal) {
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Ddisplay_overscan_handler.cc26 // The value for the orientation of overscan operations.
140 std::string orientation; local
142 if (!args->GetString(0, &orientation)) {
143 LOG(ERROR) << "The first argument must be orientation";
155 if (orientation == kOrientationHorizontal) {
158 } else if (orientation == kOrientationVertical) {
162 LOG(ERROR) << "The orientation must be '" << kOrientationHorizontal
164 << orientation; local
171 std::string orientation; local
173 if (!args->GetString(0, &orientation)) {
195 << orientation; local
[all...]

Completed in 856 milliseconds

12345