OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:parentRect
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/
Widget.cpp
75
IntRect
parentRect
= parentScrollView->convertFromContainingWindow(windowRect);
76
return convertFromContainingView(
parentRect
);
84
IntRect
parentRect
= convertToContainingView(localRect);
85
return parentScrollView->convertToContainingWindow(
parentRect
);
137
IntRect
parentRect
(localRect);
138
parentRect
.setLocation(parentScrollView->convertChildToSelf(this, localRect.location()));
139
return
parentRect
;
144
IntRect Widget::convertFromContainingView(const IntRect&
parentRect
) const
147
IntRect localRect =
parentRect
;
152
return
parentRect
;
[
all
...]
/external/webkit/Source/WebCore/page/
SpatialNavigation.cpp
687
IntRect
parentRect
= nodeRectInAbsoluteCoordinates(parentNode);
688
if (!candidateRect.intersects(
parentRect
)) {
/packages/apps/Settings/src/com/android/settings/widget/
ChartView.java
107
final Rect
parentRect
= new Rect();
114
parentRect
.set(mContent);
119
Gravity.apply(params.gravity, width, height,
parentRect
, childRect);
123
layoutSweep((ChartSweepView) child,
parentRect
, childRect);
130
final Rect
parentRect
= new Rect(mContent);
133
layoutSweep(sweep,
parentRect
, childRect);
137
protected void layoutSweep(ChartSweepView sweep, Rect
parentRect
, Rect childRect) {
142
parentRect
.top += sweepMargins.top + (int) sweep.getPoint();
143
parentRect
.bottom =
parentRect
.top
[
all
...]
Completed in 22 milliseconds