/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
HitTestLocation.cpp | 73 HitTestLocation::HitTestLocation(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) 75 , m_boundingBox(rectForPoint(centerPoint, topPadding, rightPadding, bottomPadding, leftPadding)) 78 , m_isRectBased(topPadding || rightPadding || bottomPadding || leftPadding) 169 IntRect HitTestLocation::rectForPoint(const LayoutPoint& point, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) 174 IntSize actualPadding(leftPadding + rightPadding, topPadding + bottomPadding);
|
HitTestLocation.h | 52 HitTestLocation(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding); 69 static IntRect rectForPoint(const LayoutPoint&, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding); 72 int bottomPadding() const { return m_boundingBox.maxY() - roundedPoint().y() - 1; }
|
HitTestResult.h | 55 HitTestResult(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
|
HitTestResult.cpp | 65 HitTestResult::HitTestResult(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) 66 : m_hitTestLocation(centerPoint, topPadding, rightPadding, bottomPadding, leftPadding)
|
RenderThemeChromiumSkia.cpp | 46 BottomPadding, 384 return menuListInternalPadding(style, BottomPadding);
|
RenderLineBoxList.cpp | 253 IntRect(point.x(), point.y() - locationInContainer.topPadding(), 1, locationInContainer.topPadding() + locationInContainer.bottomPadding() + 1) :
|
RenderThemeChromiumMac.mm | 167 bottomPadding, [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
autofill_details_container.mm | 126 const CGFloat bottomPadding = 5.0; // Padding below the visible field. 139 NSMakePoint(NSMinX(fieldRect), NSMinY(fieldRect) - bottomPadding)];
|
/frameworks/base/core/tests/coretests/src/android/util/ |
ScrollViewScenario.java | 194 public Params addPaddingToScrollView(int topPadding, int bottomPadding) { 196 mBottomPadding = bottomPadding;
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
Internals.idl | 148 unsigned long topPadding, unsigned long rightPadding, unsigned long bottomPadding, unsigned long leftPadding,
|
Internals.h | 191 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool allowShadowContent, bool allowChildFrameContent, ExceptionState&) const;
|
Internals.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
HeapSnapshotDataGrids.js | 336 var bottomPadding = 0; 338 bottomPadding += children[i].nodeHeight(); 342 this._addPaddingRows(topPadding, bottomPadding); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Document.h | 318 * @param bottomPadding How much to expand the bottom of the rectangle 322 unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding, [all...] |
/frameworks/base/core/java/android/view/ |
View.java | [all...] |