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

1234567891011>>

/external/chromium_org/cc/quads/
H A Dio_surface_draw_quad.cc16 orientation(FLIPPED) {
25 Orientation orientation) {
31 this->orientation = orientation;
41 Orientation orientation) {
46 this->orientation = orientation;
67 switch (orientation) {
76 value->SetString("orientation", orientation_string);
19 SetNew(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, const gfx::Size& io_surface_size, unsigned io_surface_resource_id, Orientation orientation) argument
34 SetAll(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, bool needs_blending, const gfx::Size& io_surface_size, unsigned io_surface_resource_id, Orientation orientation) argument
H A Dio_surface_draw_quad.h31 Orientation orientation);
40 Orientation orientation);
44 Orientation orientation; member in class:cc::IOSurfaceDrawQuad
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DMockOrientationObserver.java18 public void onScreenOrientationChanged(int orientation) { argument
19 mOrientation = orientation;
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_screen_orientation_client.cc32 blink::WebScreenOrientationType orientation) {
34 if (device_orientation_ == orientation)
36 device_orientation_ = orientation;
37 if (!IsOrientationAllowedByCurrentLock(orientation))
39 UpdateScreenOrientation(orientation);
43 blink::WebScreenOrientationType orientation) {
44 if (current_orientation_ == orientation)
46 current_orientation_ = orientation;
65 // the angle in addition to the orientation type.
83 blink::WebScreenOrientationType orientation) {
30 UpdateDeviceOrientation( blink::WebLocalFrame* main_frame, blink::WebScreenOrientationType orientation) argument
42 UpdateScreenOrientation( blink::WebScreenOrientationType orientation) argument
82 IsOrientationAllowedByCurrentLock( blink::WebScreenOrientationType orientation) argument
109 lockOrientation( blink::WebScreenOrientationLockType orientation, blink::WebLockOrientationCallback* callback) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceOrientationEvent.cpp42 DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData* orientation) argument
44 , m_orientation(orientation)
48 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation) argument
54 m_orientation = orientation;
H A DDeviceOrientationEvent.h44 static PassRefPtrWillBeRawPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientationData* orientation) argument
46 return adoptRefWillBeNoop(new DeviceOrientationEvent(eventType, orientation));
51 DeviceOrientationData* orientation() const { return m_orientation.get(); } function in class:blink::FINAL
/external/chromium_org/content/public/common/
H A Dmanifest.cc21 orientation(blink::WebScreenOrientationLockDefault) {
32 orientation == blink::WebScreenOrientationLockDefault &&
/external/chromium_org/cc/layers/
H A Dsolid_color_scrollbar_layer.cc18 orientation(),
27 ScrollbarOrientation orientation,
33 new SolidColorScrollbarLayer(orientation,
41 ScrollbarOrientation orientation,
48 orientation_(orientation),
100 ScrollbarOrientation SolidColorScrollbarLayer::orientation() const { function in class:cc::SolidColorScrollbarLayer
26 Create( ScrollbarOrientation orientation, int thumb_thickness, int track_start, bool is_left_side_vertical_scrollbar, int scroll_layer_id) argument
40 SolidColorScrollbarLayer( ScrollbarOrientation orientation, int thumb_thickness, int track_start, bool is_left_side_vertical_scrollbar, int scroll_layer_id) argument
H A Dsolid_color_scrollbar_layer_impl.cc16 ScrollbarOrientation orientation,
24 orientation,
37 orientation(),
48 ScrollbarOrientation orientation,
55 orientation,
72 if (orientation() == HORIZONTAL)
85 if (orientation() == HORIZONTAL)
13 Create( LayerTreeImpl* tree_impl, int id, ScrollbarOrientation orientation, int thumb_thickness, int track_start, bool is_left_side_vertical_scrollbar, bool is_overlay) argument
45 SolidColorScrollbarLayerImpl( LayerTreeImpl* tree_impl, int id, ScrollbarOrientation orientation, int thumb_thickness, int track_start, bool is_left_side_vertical_scrollbar, bool is_overlay) argument
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dmargins.js50 * orientation Specifies the margin value to get.
51 * @return {number} Value of the margin of the given orientation.
53 get: function(orientation) {
54 return this.value_[orientation];
59 * orientation Specifies the margin to set.
64 set: function(orientation, value) {
66 newValue[orientation] = value;
83 for (var orientation in this.value_) {
84 if (this.value_[orientation] != other.value_[orientation]) {
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/previewarea/
H A Dmargin_control_container.js59 var orientation = print_preview.ticket_items.CustomMargins.Orientation[
61 var control = new print_preview.MarginControl(orientation);
62 this.controls_[orientation] = control;
111 * @param {!print_preview.ticket_items.CustomMargins.Orientation} orientation
113 * @return {boolean} Whether the given orientation is TOP or BOTTOM.
116 MarginControlContainer.isTopOrBottom_ = function(orientation) {
117 return orientation ==
119 orientation ==
135 for (var orientation in this.controls_) {
136 this.controls_[orientation]
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DScreenOrientationProvider.java27 private static int getOrientationFromWebScreenOrientations(byte orientation, argument
29 switch (orientation) {
61 Log.w(TAG, "Trying to lock to unsupported orientation!");
67 static void lockOrientation(byte orientation) { argument
68 lockOrientation(orientation, ApplicationStatus.getLastTrackedFocusedActivity());
74 int orientation = getOrientationFromWebScreenOrientations(webScreenOrientation, activity);
75 if (orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED) {
79 activity.setRequestedOrientation(orientation);
92 // which case, we want to use that as the default orientation.
93 int orientation
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/data/ticket_items/
H A Dcustom_margins.js39 * Mapping of a margin orientation to its opposite.
90 * orientation Specifies the margin to get the maximum value for.
93 getMarginMax: function(orientation) {
94 var oppositeOrient = CustomMargins.OppositeOrientation_[orientation];
96 return this.getMarginMax_(orientation, margins.get(oppositeOrient));
117 * orientation Specifies the margin to update.
120 updateMargin: function(orientation, value) {
122 var oppositeOrientation = CustomMargins.OppositeOrientation_[orientation];
124 this.getMarginMax_(orientation, margins.get(oppositeOrientation));
126 this.updateValue(margins.set(orientation, valu
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
H A DMediaStoreStreamLoader.java16 private final int orientation; field in class:MediaStoreStreamLoader
19 long dateModified, int orientation) {
24 this.orientation = orientation;
30 height, mimeType, dateModified, orientation);
18 MediaStoreStreamLoader(Context context, ModelLoader<Uri, InputStream> uriLoader, String mimeType, long dateModified, int orientation) argument
/external/skia/include/core/
H A DSkDeviceProperties.h9 /** The orientation of the pixel specifies the interpretation of the
10 * layout. If the orientation is horizontal, the layout is interpreted as
11 * left to right. It the orientation is vertical, the layout is
55 static Orientation fromOldOrientation(SkFontLCDConfig::LCDOrientation orientation) { argument
56 switch (orientation) {
71 Orientation orientation = fromOldOrientation(SkFontLCDConfig::GetSubpixelOrientation()); //kHorizontal_Orientation local
73 Geometry ret = { SkToU8(orientation | layout) };
77 static Geometry Make(Orientation orientation, Layout layout) { argument
78 Geometry ret = { SkToU8(orientation | layout) };
H A DSkFontLCDConfig.h30 static void SetSubpixelOrientation(LCDOrientation orientation);
/external/chromium_org/ui/views/controls/
H A Dseparator.cc21 Separator::Separator(Orientation orientation) : orientation_(orientation) { argument
/external/chromium_org/cc/blink/
H A Dweb_scrollbar_layer_impl.cc20 blink::WebScrollbar::Orientation orientation) {
21 return orientation == blink::WebScrollbar::Horizontal ? cc::HORIZONTAL
42 blink::WebScrollbar::Orientation orientation,
47 SolidColorScrollbarLayer::Create(ConvertOrientation(orientation),
19 ConvertOrientation( blink::WebScrollbar::Orientation orientation) argument
41 WebScrollbarLayerImpl( blink::WebScrollbar::Orientation orientation, int thumb_thickness, int track_start, bool is_left_side_vertical_scrollbar) argument
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXScrollbar.cpp69 AccessibilityOrientation AXScrollbar::orientation() const function in class:blink::AXScrollbar
74 if (m_scrollbar->orientation() == HorizontalScrollbar)
76 if (m_scrollbar->orientation() == VerticalScrollbar)
106 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DSVGGlyph.h56 , orientation(Both)
78 && orientation == other.orientation
92 unsigned orientation : 2; // Orientation member in struct:blink::SVGGlyph
/external/chromium_org/third_party/skia/include/core/
H A DSkFontHost.h67 static void SetSubpixelOrientation(LCDOrientation orientation);
H A DSkFontLCDConfig.h30 static void SetSubpixelOrientation(LCDOrientation orientation);
/external/deqp/framework/platform/android/
H A DtcuAndroidUtil.hpp47 void setRequestedOrientation (ANativeActivity* activity, ScreenOrientation orientation);
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Ddisplay_overscan_handler.cc27 // The value for the orientation of overscan operations.
147 std::string orientation; local
149 if (!args->GetString(0, &orientation)) {
150 LOG(ERROR) << "The first argument must be orientation";
162 if (orientation == kOrientationHorizontal) {
165 } else if (orientation == kOrientationVertical) {
169 LOG(ERROR) << "The orientation must be '" << kOrientationHorizontal
171 << orientation; local
178 std::string orientation; local
180 if (!args->GetString(0, &orientation)) {
202 << orientation; local
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
H A DScreenOrientation.cpp31 unsigned orientation; member in struct:blink::ScreenOrientationInfo
60 const AtomicString& ScreenOrientation::orientationTypeToString(WebScreenOrientationType orientation) argument
65 if (static_cast<unsigned>(orientation) == orientationMap[i].orientation)
79 return static_cast<WebScreenOrientationLockType>(orientationMap[i].orientation);
91 ScreenOrientation* orientation = adoptRefCountedGarbageCollectedWillBeNoop(new ScreenOrientation(frame)); local
92 ASSERT(orientation->controller());
100 orientation->controller()->setOrientation(orientation);
101 return orientation;
[all...]

Completed in 505 milliseconds

1234567891011>>