OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRow
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/android/util/
DayOfMonthCursor.java
37
private int
mRow
;
50
mRow
= getRowOf(dayOfMonth);
56
return
mRow
;
64
mRow
= row;
69
return getDayAt(
mRow
, mColumn);
77
if (isWithinCurrentMonth(
mRow
, mColumn)) {
80
if (
mRow
== 0) {
87
mRow
= getRowOf(dayOfMonth);
92
return (
mRow
== row) && (mColumn == column);
101
if (isWithinCurrentMonth(
mRow
- 1, mColumn))
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/
DayOfMonthCursor.java
39
private int
mRow
;
52
mRow
= getRowOf(dayOfMonth);
58
return
mRow
;
66
mRow
= row;
71
return getDayAt(
mRow
, mColumn);
79
if (isWithinCurrentMonth(
mRow
, mColumn)) {
82
if (
mRow
== 0) {
89
mRow
= getRowOf(dayOfMonth);
94
return (
mRow
== row) && (mColumn == column);
103
if (isWithinCurrentMonth(
mRow
- 1, mColumn))
[
all
...]
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
WeightTest.java
34
private View
mRow
;
48
mRow
= activity.findViewById(R.id.row);
56
assertNotNull(
mRow
);
61
assertEquals(mCell1.getWidth() + mCell2.getWidth() + mCell3.getWidth(),
mRow
.getWidth());
/packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
GridLayoutConverter.java
192
rowFixed.put(view.
mRow
, true);
193
} else if (!rowFixed.containsKey(view.
mRow
)) {
194
rowFixed.put(view.
mRow
, false);
508
private int
mRow
= -1;
545
return
mRow
;
758
view.
mRow
= rowIndex;
780
if (row < view.
mRow
) {
781
row = view.
mRow
;
784
view.mRowSpan = row - view.
mRow
+ 1;
[
all
...]
RelativeLayoutConversionHelper.java
182
assert view.getTopEdge() == top[view.
mRow
];
184
assert view.getBottomEdge() == top[view.
mRow
+view.mRowSpan];
272
view.
mRow
= row;
[
all
...]
Completed in 324 milliseconds