HomeSort by relevance Sort by last modified time
    Searched refs:scrollbar (Results 51 - 75 of 124) sorted by null

1 23 4 5

  /external/chromium_org/third_party/WebKit/Source/web/
WebScrollbarThemePainter.cpp 31 #include "platform/scroll/Scrollbar.h"
117 WebScrollbarThemePainter::WebScrollbarThemePainter(ScrollbarTheme* theme, Scrollbar* scrollbar)
119 , m_scrollbar(scrollbar)
WebPluginScrollbarImpl.h 37 class Scrollbar;
53 Scrollbar* scrollbar() { return m_scrollbar.get(); } function in class:blink::FINAL
96 RefPtr<Scrollbar> m_scrollbar;
PopupListBox.cpp 95 Scrollbar* scrollbar = scrollbarAtWindowPoint(event.position()); local
96 if (scrollbar) {
97 m_capturingScrollbar = scrollbar;
115 Scrollbar* scrollbar = scrollbarAtWindowPoint(event.position()); local
116 if (m_lastScrollbarUnderMouse != scrollbar) {
117 // Send mouse exited to the old scrollbar.
120 m_lastScrollbarUnderMouse = scrollbar;
123 if (scrollbar) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 22 import org.eclipse.swt.widgets.ScrollBar;
58 /** Scrollbar widget. */
59 private ScrollBar mScrollbar;
61 public CanvasTransform(LayoutCanvas layoutCanvas, ScrollBar scrollbar) {
63 mScrollbar = scrollbar;
89 /** Recomputes the scrollbar and view port settings */
  /external/chromium_org/cc/layers/
scrollbar_layer_unittest.cc 37 scoped_ptr<Scrollbar> scrollbar,
47 child2 = SolidColorScrollbarLayer::Create(scrollbar->Orientation(),
53 child2 = PaintedScrollbarLayer::Create(scrollbar.Pass(), child1->id());
65 scoped_ptr<Scrollbar> scrollbar(new FakeScrollbar);
67 host.get(), scrollbar.Pass(), false, false, 0, 0);
81 scoped_ptr<Scrollbar> scrollbar(new FakeScrollbar);
83 host.get(), scrollbar.Pass(), true, false, 0, 0)
    [all...]
painted_scrollbar_layer.cc 30 scoped_ptr<Scrollbar> scrollbar,
33 new PaintedScrollbarLayer(scrollbar.Pass(), scroll_layer_id));
36 PaintedScrollbarLayer::PaintedScrollbarLayer(scoped_ptr<Scrollbar> scrollbar,
38 : scrollbar_(scrollbar.Pass()),
  /external/chromium_org/cc/blink/
web_compositor_support_impl.h 36 blink::WebScrollbar* scrollbar,
  /external/chromium_org/chrome/browser/resources/net_internals/
timeline_view.css 92 #timeline-view-scrollbar-div {
97 #timeline-view-scrollbar-inner-div {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarPart.cpp 37 RenderScrollbarPart::RenderScrollbarPart(RenderScrollbar* scrollbar, ScrollbarPart part)
39 , m_scrollbar(scrollbar)
48 RenderScrollbarPart* RenderScrollbarPart::createAnonymous(Document* document, RenderScrollbar* scrollbar, ScrollbarPart part)
50 RenderScrollbarPart* renderer = new RenderScrollbarPart(scrollbar, part);
107 // Buttons and track pieces can all have margins along the axis of the scrollbar.
124 // Buttons and track pieces can all have margins along the axis of the scrollbar.
HitTestResult.cpp 41 #include "platform/scroll/Scrollbar.h"
85 , m_scrollbar(other.scrollbar())
106 m_scrollbar = other.scrollbar();
186 void HitTestResult::setScrollbar(Scrollbar* s)
419 if (!m_scrollbar && other.scrollbar()) {
420 setScrollbar(other.scrollbar());
HitTestResult.h 47 class Scrollbar;
73 Scrollbar* scrollbar() const { return m_scrollbar.get(); } function in class:blink::HitTestResult
102 void setScrollbar(Scrollbar*);
149 RefPtr<Scrollbar> m_scrollbar;
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp 97 PassRefPtr<Scrollbar> ScrollView::createScrollbar(ScrollbarOrientation orientation)
99 return Scrollbar::create(this, orientation, RegularScrollbar);
177 if (Scrollbar* verticalBar = verticalScrollbar())
179 if (Scrollbar* horizontalBar = horizontalScrollbar())
244 Scrollbar* scrollbar = ((orientation == HorizontalScrollbar) ? m_horizontalScrollbar : m_verticalScrollbar).get(); local
247 if (!scrollbar) {
253 return scrollbar->totalSize() - scrollbar->visibleSize();
372 // If we ever turn one scrollbar off, always turn the other one off too
    [all...]
  /external/chromium_org/chrome/browser/resources/ntp4/
footer_menu.css 55 /* TODO(dubroy): Unify this with tile page scrollbar. */
56 .footer-menu::-webkit-scrollbar-button {
60 .footer-menu::-webkit-scrollbar {
64 .footer-menu::-webkit-scrollbar-thumb {
new_tab_theme.css 57 .tile-page-scrollbar {
  /external/chromium_org/chrome/browser/web_dev_style/
css_checker.py 192 'scrollbar',
193 'scrollbar-button',
194 'scrollbar-corner',
195 'scrollbar-thumb',
196 'scrollbar-track',
197 'scrollbar-track-piece',
  /external/chromium_org/ui/webui/resources/css/
overlay.css 157 .overlay .page .content-area::-webkit-scrollbar {
162 .overlay .page .content-area::-webkit-scrollbar-thumb {
168 .overlay .page .content-area::-webkit-scrollbar-thumb:hover {
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.h 69 , scrollbar(0)
86 RenderScrollbar* scrollbar; member in struct:blink::SelectorChecker::SelectorCheckingContext
SelectorChecker.cpp 209 // We make an exception for scrollbar pseudo elements and allow a set of pseudo classes (but nothing else)
211 nextContext.hasScrollbarPseudo = dynamicPseudo != NOPSEUDO && (context.scrollbar || dynamicPseudo == SCROLLBAR_CORNER || dynamicPseudo == RESIZER);
992 RenderScrollbar* scrollbar = context.scrollbar; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
AutoCompleteWindow.py 28 self.autocompletewindow = self.listbox = self.scrollbar = None
184 self.scrollbar = scrollbar = Scrollbar(acw, orient=VERTICAL)
185 self.listbox = listbox = Listbox(acw, yscrollcommand=scrollbar.set,
191 scrollbar.config(command=listbox.yview)
192 scrollbar.pack(side=RIGHT, fill=Y)
400 self.scrollbar.destroy()
401 self.scrollbar = None
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
AutoCompleteWindow.py 28 self.autocompletewindow = self.listbox = self.scrollbar = None
184 self.scrollbar = scrollbar = Scrollbar(acw, orient=VERTICAL)
185 self.listbox = listbox = Listbox(acw, yscrollcommand=scrollbar.set,
191 scrollbar.config(command=listbox.yview)
192 scrollbar.pack(side=RIGHT, fill=Y)
400 self.scrollbar.destroy()
401 self.scrollbar = None
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 238 static PassOwnPtr<WebScrollbarLayer> createScrollbarLayer(Scrollbar* scrollbar)
240 ScrollbarTheme* theme = scrollbar->theme();
241 blink::WebScrollbarThemePainter painter(theme, scrollbar);
244 OwnPtr<WebScrollbarLayer> scrollbarLayer = adoptPtr(blink::Platform::current()->compositorSupport()->createScrollbarLayer(new blink::WebScrollbarImpl(scrollbar), painter, geometry.leakPtr()));
317 Scrollbar* scrollbar = orientation == HorizontalScrollbar ? scrollableArea->horizontalScrollbar() : scrollableArea->verticalScrollbar(); local
318 if (scrollbar->isCustomScrollbar()) {
330 webScrollbarLayer = createSolidColorScrollbarLayer(orientation, scrollbar->theme()->thumbThickness(scrollbar), scrollbar->theme()->trackPosition(scrollbar), scrollableArea->shouldPlaceVerticalScrollbarOnLeft (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp 98 #include "platform/scroll/Scrollbar.h"
591 // so it's allowed to start a drag or selection if it wasn't in a scrollbar.
592 m_mouseDownMayStartSelect = canMouseDownStartSelect(event.innerNode()) && !event.scrollbar();
1433 Scrollbar* scrollbar = 0; local
2103 RefPtr<Scrollbar> scrollbar = targetedEvent.hitTestResult().scrollbar(); local
2147 RefPtr<Scrollbar> scrollbar; local
3464 Scrollbar* scrollbar = mev.scrollbar(); local
    [all...]
  /external/chromium_org/third_party/skia/experimental/webtry/res/css/cm/
codemirror.css 22 .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
140 .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
155 .CodeMirror-scrollbar-filler {
  /external/skia/experimental/webtry/res/css/cm/
codemirror.css 22 .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
140 .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
155 .CodeMirror-scrollbar-filler {
  /external/chromium_org/remoting/webapp/
main.css 149 ::-webkit-scrollbar {
154 ::-webkit-scrollbar-button {
159 ::-webkit-scrollbar-thumb {
168 ::-webkit-scrollbar-thumb:hover {
173 ::-webkit-scrollbar-thumb:active {
178 ::-webkit-scrollbar-track:hover {
183 ::-webkit-scrollbar-track:active {
189 ::-webkit-scrollbar-track-piece {

Completed in 2279 milliseconds

1 23 4 5