HomeSort by relevance Sort by last modified time
    Searched refs:RowInfo (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/ui/views/controls/
scroll_view.h 145 struct RowInfo {
146 RowInfo(int origin, int height) : origin(origin), height(height) {}
159 virtual VariableRowHeightScrollHelper::RowInfo GetRowInfo(int y) = 0;
178 virtual RowInfo GetRowInfo(int y);
198 virtual RowInfo GetRowInfo(int y) OVERRIDE;
scroll_view.cc 543 RowInfo bottom_row_info = GetRowInfo(bottom);
549 RowInfo last_page_info = GetRowInfo(std::max(0, last_page_y));
562 RowInfo row = GetRowInfo(y);
573 VariableRowHeightScrollHelper::RowInfo
588 VariableRowHeightScrollHelper::RowInfo
591 return RowInfo(0, top_margin_);
592 return RowInfo((y - top_margin_) / row_height_ * row_height_ + top_margin_,
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 49 private ArrayList<RowInfo> mRowInfo;
105 RowInfo row = mRowInfo.get(i);
138 RowInfo row = mRowInfo.get(position);
151 RowInfo row = mRowInfo.get(position);
183 RowInfo row = mRowInfo.get(position);
261 // is the same. RowInfo has the correct info , so take it from there.
300 ArrayList<RowInfo> rowInfo = new ArrayList<RowInfo>();
330 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 46 import com.android.calendar.widget.CalendarAppWidgetModel.RowInfo;
232 RowInfo rowInfo = mModel.mRowInfos.get(position);
233 if (rowInfo.mType == RowInfo.TYPE_DAY) {
236 DayInfo dayInfo = mModel.mDayInfos.get(rowInfo.mIndex);
241 final EventInfo eventInfo = mModel.mEventInfos.get(rowInfo.mIndex);
346 RowInfo rowInfo = mModel.mRowInfos.get(position);
347 if (rowInfo.mType == RowInfo.TYPE_DAY)
    [all...]

Completed in 75 milliseconds