HomeSort by relevance Sort by last modified time
    Searched defs:scrollbar (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXScrollbar.h 36 class Scrollbar;
40 static PassRefPtr<AXScrollbar> create(Scrollbar*);
42 Scrollbar* scrollbar() const { return m_scrollbar.get(); } function in class:blink::FINAL
45 explicit AXScrollbar(Scrollbar*);
64 RefPtr<Scrollbar> m_scrollbar;
  /external/chromium_org/cc/animation/
scrollbar_animation_controller_linear_fade.cc 55 ScrollbarLayerImplBase* scrollbar = *it; local
56 if (scrollbar->is_overlay_scrollbar())
57 scrollbar->SetOpacity(opacity);
scrollbar_animation_controller_thinning.cc 137 ScrollbarLayerImplBase* scrollbar = *it; local
138 if (scrollbar->is_overlay_scrollbar()) {
139 scrollbar->SetOpacity(
140 AdjustScale(opacity, scrollbar->opacity(), opacity_change_));
141 scrollbar->SetThumbThicknessScaleFactor(
143 scrollbar->thumb_thickness_scale_factor(),
  /external/chromium_org/third_party/WebKit/Source/web/
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...]
WebLocalFrameImpl.cpp 1919 Scrollbar* scrollbar = view->verticalScrollbar(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
PseudoStyleRequest.h 38 PseudoStyleRequest(PseudoId pseudoId, RenderScrollbar* scrollbar = 0, ScrollbarPart scrollbarPart = NoPart)
42 , scrollbar(scrollbar)
50 , scrollbar(0)
63 RenderScrollbar* scrollbar; member in class:blink::PseudoStyleRequest
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...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventWithHitTestResults.h 31 class Scrollbar;
47 Scrollbar* scrollbar() const { return m_hitTestResult.scrollbar(); } function in class:blink::EventWithHitTestResults
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/WebKit/Source/core/rendering/
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;
RenderLayerScrollableArea.cpp 181 void RenderLayerScrollableArea::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect)
186 if (scrollbar == m_vBar.get()) {
203 if (scrollbar == m_vBar.get())
206 scrollRect.move(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->height());
217 addScrollbarDamage(scrollbar, intRect);
253 static IntRect cornerRect(const RenderStyle* style, const Scrollbar* horizontalScrollbar, const Scrollbar* verticalScrollbar, const IntRect& bounds)
280 // We have a scrollbar corner when a scrollbar is visible and not filling the entire length of the box
875 RefPtr<Scrollbar>& scrollbar = orientation == HorizontalScrollbar ? m_hBar : m_vBar; local
    [all...]
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_context.cc 1004 scoped_refptr<PaintedScrollbarLayer> scrollbar = variable
    [all...]
layer_tree_host_impl_unittest.cc 821 // Trying to scroll without a vertical scrollbar will fail.
1596 scoped_ptr<PaintedScrollbarLayerImpl> scrollbar = local
    [all...]
  /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/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/ui/libgtk2ui/
gtk2_ui.cc 728 "scrollbar-slider-prelight-color", &theme_thumb_active,
729 "scrollbar-slider-normal-color", &theme_thumb_inactive,
730 "scrollbar-trough-color", &theme_trough_color,
733 // Ask the theme if the theme specifies all the scrollbar colors and short
746 // Create window containing scrollbar elements
749 GtkWidget* scrollbar = gtk_hscrollbar_new(NULL); local
751 gtk_container_add(GTK_CONTAINER(fixed), scrollbar); local
753 gtk_widget_realize(scrollbar);
755 // Draw scrollbar thumb part and track into offscreen image
758 GtkStyle* style = gtk_rc_get_style(scrollbar);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 257 Scrollbar* horizontalBar = horizontalScrollbar();
261 Scrollbar* verticalBar = verticalScrollbar();
278 // and determine which scrollbar style to use based on a lightness
303 // FIXME: do all scrollbar invalidations after layout of all frames is complete. It's currently not recursively true.
381 // FIXME: We need to update the scrollbar dynamically as documents change (or as doc elements and bodies get discovered that have custom styles).
384 // Try the <body> element first as a scrollbar source.
386 if (body && body->renderer() && body->renderer()->style()->hasPseudoStyle(SCROLLBAR)) {
393 if (docElement && docElement->renderer() && docElement->renderer()->style()->hasPseudoStyle(SCROLLBAR)) {
398 // If we have an owning ipage/LocalFrame element, then it can set the custom scrollbar also.
400 if (frameRenderer && frameRenderer->style()->hasPseudoStyle(SCROLLBAR)) {
2462 Scrollbar* scrollbar = static_cast<Scrollbar*>(widget); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp 3491 RefPtr<Scrollbar> scrollbar = frameView->createScrollbar(HorizontalScrollbar); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface_3.6.1.M20100825-0800.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
org.eclipse.jface_3.6.2.M20110210-1200.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 

Completed in 1515 milliseconds

1 2