HomeSort by relevance Sort by last modified time
    Searched refs:Scroll (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium/chrome/browser/bookmarks/
bookmark_drop_info.cc 48 &BookmarkDropInfo::Scroll);
55 void BookmarkDropInfo::Scroll() {
60 // TODO(port): Scroll the appropriate view/widget.
bookmark_drop_info.h 59 void Scroll();
  /external/chromium_org/ppapi/cpp/
graphics_2d.h 148 /// Scroll() enqueues a scroll of the context's backing store. This
156 /// The scroll can be larger than the area of the clipping rectangle, which
163 void Scroll(const Rect& clip, const Point& amount);
196 /// Flush() flushes any enqueued paint, scroll, and replace commands
graphics_2d.cc 102 void Graphics2D::Scroll(const Rect& clip, const Point& amount) {
104 get_interface<PPB_Graphics2D_1_1>()->Scroll(pp_resource(),
108 get_interface<PPB_Graphics2D_1_0>()->Scroll(pp_resource(),
  /external/chromium_org/ppapi/thunk/
ppb_graphics_2d_api.h 32 virtual void Scroll(const PP_Rect* clip_rect,
ppb_graphics_2d_thunk.cc 64 void Scroll(PP_Resource graphics_2d,
67 VLOG(4) << "PPB_Graphics2D::Scroll()";
71 enter.object()->Scroll(clip_rect, amount);
111 &Scroll,
121 &Scroll,
  /external/chromium_org/ppapi/c/
ppb_graphics_2d.h 136 * Scroll() enqueues a scroll of the context's backing store. This
144 * The scroll can be larger than the area of the clipping rectangle, which
153 void (*Scroll)(PP_Resource graphics_2d,
190 * Flush() flushes any enqueued paint, scroll, and replace commands to the
295 void (*Scroll)(PP_Resource graphics_2d,
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorDisplay.java 44 enum Scroll { UP, DOWN, NONE }
128 void setText(CharSequence text, Scroll dir) {
130 dir = Scroll.NONE;
133 if (dir == Scroll.UP) {
136 } else if (dir == Scroll.DOWN) {
139 } else { // Scroll.NONE
Logic.java 19 import com.android.calculator2.CalculatorDisplay.Scroll;
119 private void clearWithHistory(boolean scroll) {
126 evaluateAndShowResult(text, CalculatorDisplay.Scroll.NONE);
130 text, scroll ? CalculatorDisplay.Scroll.UP : CalculatorDisplay.Scroll.NONE);
135 private void clear(boolean scroll) {
137 mDisplay.setText("", scroll ? CalculatorDisplay.Scroll.UP : CalculatorDisplay.Scroll.NONE)
    [all...]
  /external/chromium_org/cc/output/
software_output_device.h 58 virtual void Scroll(gfx::Vector2d delta,
software_output_device.cc 51 void SoftwareOutputDevice::Scroll(
  /external/chromium_org/ppapi/api/
ppb_graphics_2d.idl 128 * Scroll() enqueues a scroll of the context's backing store. This
136 * The scroll can be larger than the area of the clipping rectangle, which
145 void Scroll(
187 * Flush() flushes any enqueued paint, scroll, and replace commands to the
  /external/chromium_org/ppapi/proxy/
graphics_2d_resource.h 38 virtual void Scroll(const PP_Rect* clip_rect,
graphics_2d_resource.cc 75 void Graphics2DResource::Scroll(const PP_Rect* clip_rect,
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTRegion.h 80 const AtomicString scroll() const;
113 Scroll
VTTRegion.cpp 160 const AtomicString VTTRegion::scroll() const function in class:WebCore::VTTRegion
175 exceptionState.throwDOMException(SyntaxError, "The value provided ('" + value + "') is invalid. The 'scroll' property must be either the empty string, or 'up'.");
190 setScroll(region->scroll(), ASSERT_NO_EXCEPTION);
216 DEFINE_STATIC_LOCAL(const AtomicString, scrollKeyword, ("scroll", AtomicString::ConstructFromLiteral));
229 return Scroll;
268 case Scroll:
272 WTF_LOG(Media, "VTTRegion::parseSettingValue, invalid Scroll");
357 // property to move elements. We should just scroll the text track cues on the
369 // Find first cue that is not entirely displayed and scroll it upwards.
  /external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
SchedGui.py 42 self.scroll = wx.ScrolledWindow(self.panel)
43 self.scroll.SetScrollbars(self.scroll_scale, self.scroll_scale, self.width_virtual / self.scroll_scale, self.height_virtual / self.scroll_scale)
44 self.scroll.EnableScrolling(True, True)
45 self.scroll.SetFocus()
48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2))
52 self.scroll.Bind(wx.EVT_PAINT, self.on_paint)
53 self.scroll.Bind(wx.EVT_KEY_DOWN, self.on_key_press)
54 self.scroll.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down)
56 self.scroll.Fit()
72 (x, y) = self.scroll.GetViewStart(
    [all...]
  /external/chromium_org/ppapi/utility/graphics/
paint_manager.cc 149 // Apply any scroll before asking the client to paint.
151 graphics_.Scroll(update.scroll_rect, update.scroll_delta);
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventFactoryMac.mm 639 // "Scroll"
641 return @"Scroll";
773 // shouldn't be used by Blink to scroll the current page, because we want
995 // There are three types of scroll data available on a scroll wheel CGEvent.
1015 // scroll events with delta 0 will be delivered, and every so often an event
    [all...]
  /external/chromium_org/ppapi/tests/
test_graphics_2d.cc 69 RUN_TEST_FORCEASYNC_AND_NOT(Scroll, filter);
229 // Scroll.
233 graphics_2d_interface_->Scroll(image.pp_resource(), NULL, &zero_ten);
234 graphics_2d_interface_->Scroll(null_context.pp_resource(),
471 // by specified amount. It's the area to which the scroll is limited. So if
473 // the scroll won't result in additional images.
477 dc.Scroll(clip, pp::Point(dx, dy));
486 // This scroll is invalid and will be a noop.
489 dc.Scroll(clip, pp::Point(scroll_x - image_x, scroll_y - image_y));
498 // so there is nothing to scroll
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/static/js/
scroll.js 5 // Scroll handling.
8 // depending on whether it's scrolled into view, and manages the scroll-to-top
13 var scrollToTop = document.getElementById('scroll-to-top');
31 // Whole sidebar doesn't fit, so show the scroll-to-top button instead.
42 window.addEventListener('scroll', relayout);
  /external/chromium_org/chrome/browser/resources/
gesture_config.js 220 label: 'Minimum Distance for Pinch Scroll',
240 label: 'Minimum Scroll Delta Squared',
245 label: 'Minimum Scroll Successive Velocity Events',
250 label: 'Scroll prediction interval<br>' +
251 '(Enable scroll prediction in ' +
  /external/chromium_org/chrome/browser/ui/pdf/
pdf_browsertest.cc 242 #define MAYBE_Scroll Scroll
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
scrollbar.js 8 * Creates a new scroll bar element.
80 this.view_.addEventListener('scroll', this.onScroll_.bind(this));
88 * Scroll handler.
136 * Mouse move handler. Updates the scroll position.
243 * Creates a new scroll bar for elements in the main panel.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
coverage_html.js 355 // Scroll the page if the chunk isn't fully visible.
357 // Need to move the page. The html,body trick makes it scroll in all

Completed in 1356 milliseconds

1 2