HomeSort by relevance Sort by last modified time
    Searched full:scrollbar (Results 151 - 175 of 451) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeMock.h 33 // Scrollbar theme used in image snapshots, to eliminate appearance differences between platforms.
  /external/chromium_org/third_party/WebKit/public/web/mac/
WebScrollbarTheme.h 46 // Updates the scrollbar appearance and behavior.
  /frameworks/base/core/java/android/widget/
ScrollBarDrawable.java 53 * Indicate whether the horizontal scrollbar track should always be drawn regardless of the
63 * Indicate whether the vertical scrollbar track should always be drawn regardless of the
73 * Indicates whether the vertical scrollbar track should always be drawn regardless of the
81 * Indicates whether the horizontal scrollbar track should always be drawn regardless of the
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ScrollNotifyingListView.java 28 * Ordinary list view with extra boilerplate to notify on scrollbar-related events (unrelated to
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
overlay.css 149 .overlay .page .content-area::-webkit-scrollbar {
154 .overlay .page .content-area::-webkit-scrollbar-thumb {
160 .overlay .page .content-area::-webkit-scrollbar-thumb:hover {
  /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...]
EventHandler.h 77 class Scrollbar;
308 void updateLastScrollbarUnderMouse(Scrollbar*, bool);
359 RefPtr<Scrollbar> m_lastScrollbarUnderMouse;
398 RefPtr<Scrollbar> m_scrollbarHandlingScrollGesture;
  /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/ui/views/controls/
scroll_view.cc 12 #include "ui/views/controls/scrollbar/native_scroll_bar.h"
189 void ScrollView::SetHorizontalScrollBar(ScrollBar* horiz_sb) {
197 void ScrollView::SetVerticalScrollBar(ScrollBar* vert_sb) {
243 // happy, assume a vertical scrollbar but no horizontal scrollbar. To override
263 // Assumes a vertical scrollbar since most of the current views are designed
345 // Give vertical scrollbar priority
404 void ScrollView::ScrollToPosition(ScrollBar* source, int position) {
428 int ScrollView::GetScrollIncrement(ScrollBar* source, bool is_page,
538 // Make sure that a single scrollbar is created and visible as neede
    [all...]
  /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/third_party/WebKit/Source/core/frame/
FrameView.h 88 virtual PassRefPtr<Scrollbar> createScrollbar(ScrollbarOrientation) OVERRIDE;
214 virtual void paintScrollbar(GraphicsContext*, Scrollbar*, const IntRect&) OVERRIDE;
311 // Override scrollbar notifications to update the AXObject cache.
312 virtual void didAddScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE;
313 virtual void willRemoveScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE;
333 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE;
  /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 {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/widgets/
ImageCanvas.java 39 import org.eclipse.swt.widgets.ScrollBar;
48 private ScrollBar mHorizontalScrollBar;
49 private ScrollBar mVerticalScrollBar;
  /developers/build/prebuilts/gradle/CustomChoiceList/Application/src/main/res/layout/
sample_main.xml 43 you should set the android:scrollbarStyle such that the scrollbar
  /developers/samples/android/ui/lists/CustomChoiceList/Application/src/main/res/layout/
sample_main.xml 43 you should set the android:scrollbarStyle such that the scrollbar
  /development/samples/browseable/CustomChoiceList/res/layout/
sample_main.xml 43 you should set the android:scrollbarStyle such that the scrollbar
  /external/chromium_org/native_client_sdk/src/resources/
index.js 77 // HACK: magic 4... without it, the scrollbar is always visible. :(
  /external/chromium_org/ppapi/c/private/
ppb_find_private.h 67 * Updates the tickmarks on the scrollbar for the find request. |tickmarks|
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.cpp 351 // Catch the case if an (unsupported) widget type is used. Only FrameView and ScrollBar are supported now.
981 // Send document value changed on scrollbar value changed notification.
982 Scrollbar* scrollBar = toAXScrollbar(obj)->scrollbar();
983 if (!scrollBar || !scrollBar->parent() || !scrollBar->parent()->isFrameView())
985 Document* document = toFrameView(scrollBar->parent())->frame().document();
  /external/chromium_org/third_party/WebKit/Source/core/css/
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/plugins/
PluginView.h 43 class Scrollbar;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListBox.h 64 PassRefPtr<Scrollbar> createScrollbar();
  /external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar_thumb.h 10 #include "ui/views/controls/scrollbar/scroll_bar.h"
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
ContactListViewUtils.java 29 // The EdgeEffect and ScrollBar need to span to the edge of the ListView's padding.
  /sdk/eclipse/
dictionary.txt 264 scrollbar

Completed in 1764 milliseconds

1 2 3 4 5 67 8 91011>>