OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RowInfo
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java
50
private ArrayList<
RowInfo
> mRowInfo;
98
RowInfo
row = mRowInfo.get(i);
129
RowInfo
row = mRowInfo.get(position);
141
RowInfo
row = mRowInfo.get(position);
172
RowInfo
row = mRowInfo.get(position);
286
ArrayList<
RowInfo
>
rowInfo
= new ArrayList<
RowInfo
>();
316
rowInfo
.add(new
RowInfo
(TYPE_DAY, startDay))
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetModel.java
43
* {@link
RowInfo
} is a class that represents a single row in the widget. It
48
static class
RowInfo
{
64
RowInfo
(int type, int index) {
243
final List<
RowInfo
> mRowInfos;
258
mRowInfos = new ArrayList<
RowInfo
>(50);
265
final ArrayList<LinkedList<
RowInfo
>> mBuckets =
266
new ArrayList<LinkedList<
RowInfo
>>(CalendarAppWidgetService.MAX_DAYS);
268
mBuckets.add(new LinkedList<
RowInfo
>());
320
LinkedList<
RowInfo
> bucket = mBuckets.get(day - mTodayJulianDay);
321
RowInfo
rowInfo = new RowInfo(RowInfo.TYPE_MEETING, i)
[
all
...]
CalendarAppWidgetService.java
23
import com.android.calendar.widget.CalendarAppWidgetModel.
RowInfo
;
221
RowInfo
rowInfo
= mModel.mRowInfos.get(position);
222
if (
rowInfo
.mType ==
RowInfo
.TYPE_DAY) {
225
DayInfo dayInfo = mModel.mDayInfos.get(
rowInfo
.mIndex);
230
final EventInfo eventInfo = mModel.mEventInfos.get(
rowInfo
.mIndex);
335
RowInfo
rowInfo
= mModel.mRowInfos.get(position);
336
if (
rowInfo
.mType == RowInfo.TYPE_DAY)
[
all
...]
Completed in 139 milliseconds