HomeSort by relevance Sort by last modified time
    Searched refs:hasScrollbar (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.h 128 bool hasScrollbar() const { return m_hBar || m_vBar; }
202 void setHasHorizontalScrollbar(bool hasScrollbar);
203 void setHasVerticalScrollbar(bool hasScrollbar);
RenderLayerScrollableArea.cpp 796 void RenderLayerScrollableArea::setHasHorizontalScrollbar(bool hasScrollbar)
798 if (hasScrollbar == hasHorizontalScrollbar())
801 if (hasScrollbar)
817 void RenderLayerScrollableArea::setHasVerticalScrollbar(bool hasScrollbar)
819 if (hasScrollbar == hasVerticalScrollbar())
822 if (hasScrollbar)
865 if (!hasScrollbar() && !m_box->canResize())
    [all...]
RenderListBox.h 139 void setHasVerticalScrollbar(bool hasScrollbar);
RenderListBox.cpp 916 void RenderListBox::setHasVerticalScrollbar(bool hasScrollbar)
918 if (hasScrollbar == (m_vBar != 0))
921 if (hasScrollbar)
RenderLayer.cpp     [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactEntryListFragment.java 518 boolean hasScrollbar = isVisibleScrollbarEnabled() && isSectionHeaderDisplayEnabled();
521 mListView.setFastScrollEnabled(hasScrollbar);
522 mListView.setFastScrollAlwaysVisible(hasScrollbar);

Completed in 229 milliseconds