OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mListPadding
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/widget/
ListView.java
212
delta = child.getTop() -
mListPadding
.top;
225
delta = child.getBottom() - (getHeight() -
mListPadding
.bottom);
544
final int listTop = mScrollY +
mListPadding
.top;
556
final int listBottom = mScrollY + getHeight() -
mListPadding
.bottom;
685
end -=
mListPadding
.bottom;
691
View child = makeAndAddView(pos, nextTop, true,
mListPadding
.left, selected);
719
end =
mListPadding
.top;
725
View child = makeAndAddView(pos, nextBottom, false,
mListPadding
.left, selected);
772
mListPadding
.left, true);
833
sel = makeAndAddView(selectedPosition, selectedTop, true,
mListPadding
.left, true)
[
all
...]
GridView.java
283
end -=
mListPadding
.bottom;
313
nextLeft = getWidth() -
mListPadding
.right - columnWidth -
316
nextLeft =
mListPadding
.left +
381
end =
mListPadding
.top;
602
final int end = (mBottom - mTop) -
mListPadding
.bottom;
613
if (bottomOffset > 0 && (mFirstPosition > 0 || firstTop <
mListPadding
.top)) {
616
bottomOffset = Math.min(bottomOffset,
mListPadding
.top - firstTop);
642
final int start =
mListPadding
.top;
645
final int end = (mBottom - mTop) -
mListPadding
.bottom;
[
all
...]
AbsListView.java
342
Rect
mListPadding
= new Rect();
[
all
...]
Completed in 34 milliseconds