OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRowCount
(Results
1 - 9
of
9
) sorted by null
/external/replicaisland/src/com/replica/replicaisland/
TiledWorld.java
31
private int
mRowCount
;
38
mRowCount
= rows;
61
if (x >= 0 && x < mColCount && y >= 0 && y <
mRowCount
) {
90
mRowCount
= height;
110
for (int y =
mRowCount
- 1; y >= 0; y--) {
127
return
mRowCount
;
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
PaginatedCursor.java
37
private final int
mRowCount
;
63
mRowCount
= mCursor.getCount();
64
mCachedRows = new boolean[
mRowCount
];
99
mByteArrayDataCache = mByteArrayCacheColumnSize > 0 ? new byte[
mRowCount
][][] : null;
100
mFloatDataCache = mFloatCacheColumnSize > 0 ? new float[
mRowCount
][] : null;
101
mIntDataCache = mIntCacheColumnSize > 0 ? new int[
mRowCount
][] : null;
102
mStringDataCache = mStringCacheColumnSize > 0 ? new String[
mRowCount
][] : null;
104
for (int i = 0; i <
mRowCount
; i++) {
129
for (int row = index; row < (index + PAGE_SIZE) && row <
mRowCount
; row++) {
153
mLastCachePosition = Math.min(index + PAGE_SIZE,
mRowCount
) - 1
[
all
...]
/packages/apps/Calculator/src/com/android/calculator2/
CalculatorPadLayout.java
31
private int
mRowCount
;
47
mRowCount
= a.getInt(0, 1);
69
Math.round((float) (bottom - top - paddingTop - paddingBottom)) /
mRowCount
;
96
rowIndex = (rowIndex + (columnIndex + 1) / mColumnCount) %
mRowCount
;
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncAdapter.java
60
private int
mRowCount
= 0;
107
mRowCount
= 0;
119
mRowCount
= c.getCount();
120
mData = new CalendarRow[
mRowCount
];
148
if (position >=
mRowCount
) {
230
return
mRowCount
;
235
if (position >=
mRowCount
) {
244
if (position >=
mRowCount
) {
SelectCalendarsSimpleAdapter.java
65
private int
mRowCount
= 0;
180
mRowCount
= 0;
194
mRowCount
= c.getCount();
218
if (position >=
mRowCount
) {
350
return
mRowCount
;
355
if (position >=
mRowCount
) {
364
if (position >=
mRowCount
) {
/packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaWindowAdapter.java
151
private int
mRowCount
;
408
return
mRowCount
;
452
if (position >= (
mRowCount
- PREFETCH_BOUNDARY)
784
if (
mRowCount
== 0 || queryType == QUERY_TYPE_CLEAN) {
785
mRowCount
= 0;
844
if (
mRowCount
!= 0) {
845
queryDuration = IDEAL_NUM_OF_EVENTS * (end - start + 1) /
mRowCount
;
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java
[
all
...]
/frameworks/base/core/java/android/view/accessibility/
AccessibilityNodeInfo.java
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
AutoInstallsLayout.java
161
private final int
mRowCount
;
186
mRowCount
= idp.numRows;
271
convertToDistanceFromEnd(getAttributeValue(parser, ATTR_Y),
mRowCount
));
Completed in 279 milliseconds