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

  /external/webkit/Source/WebCore/platform/win/
ScrollbarThemeSafari.cpp 73 static int cButtonLength[] = { 14, 10 };
147 result = IntRect(scrollbar->x(), scrollbar->y(), cButtonLength[scrollbar->controlSize()], thickness);
149 result = IntRect(scrollbar->x(), scrollbar->y(), thickness, cButtonLength[scrollbar->controlSize()]);
165 result = IntRect(scrollbar->x() + scrollbar->width() - cButtonLength[scrollbar->controlSize()], scrollbar->y(), cButtonLength[scrollbar->controlSize()], thickness);
167 result = IntRect(scrollbar->x(), scrollbar->y() + scrollbar->height() - cButtonLength[scrollbar->controlSize()], thickness, cButtonLength[scrollbar->controlSize()]);
177 paintRect.inflateX(cButtonLength[controlSize]);
179 paintRect.inflateY(cButtonLength[controlSize]);
192 return IntRect(scrollbar->x() + cButtonLength[scrollbar->controlSize()], scrollbar->y(), scrollbar->width() - 2 * cButtonLength[scrollbar->contr (…)
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 116 static int cButtonLength[] = { 14, 10 };
252 int start = part == BackButtonStartPart ? scrollbar->x() : scrollbar->x() + scrollbar->width() - cOuterButtonLength[scrollbar->controlSize()] - cButtonLength[scrollbar->controlSize()];
253 result = IntRect(start, scrollbar->y(), cButtonLength[scrollbar->controlSize()], thickness);
255 int start = part == BackButtonStartPart ? scrollbar->y() : scrollbar->y() + scrollbar->height() - cOuterButtonLength[scrollbar->controlSize()] - cButtonLength[scrollbar->controlSize()];
256 result = IntRect(scrollbar->x(), start, thickness, cButtonLength[scrollbar->controlSize()]);
276 int buttonLength = cButtonLength[scrollbar->controlSize()];
314 int buttonLength = cButtonLength[scrollbar->controlSize()];
  /external/webkit/Source/WebCore/platform/mac/
ScrollbarThemeMac.mm 118 static int cButtonLength[] = { 14, 10 };
302 int start = part == BackButtonStartPart ? scrollbar->x() : scrollbar->x() + scrollbar->width() - cOuterButtonLength[scrollbar->controlSize()] - cButtonLength[scrollbar->controlSize()];
303 result = IntRect(start, scrollbar->y(), cButtonLength[scrollbar->controlSize()], thickness);
305 int start = part == BackButtonStartPart ? scrollbar->y() : scrollbar->y() + scrollbar->height() - cOuterButtonLength[scrollbar->controlSize()] - cButtonLength[scrollbar->controlSize()];
306 result = IntRect(scrollbar->x(), start, thickness, cButtonLength[scrollbar->controlSize()]);
326 int buttonLength = cButtonLength[scrollbar->controlSize()];
364 int buttonLength = cButtonLength[scrollbar->controlSize()];

Completed in 141 milliseconds