HomeSort by relevance Sort by last modified time
    Searched refs:mRow (Results 1 - 23 of 23) 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/TV/src/com/android/tv/menu/
MenuRowView.java 68 private MenuRow mRow;
175 return mRow == null ? null : mRow.getMenu();
180 mRow = row;
221 return mRow == null ? null : mRow.getId();
231 if (mRow.hideTitleWhenSelected() && !showTitle) {
262 return mRow.getHeight();
  /frameworks/base/media/java/android/media/
ClosedCaptionRenderer.java 575 final int mRow;
604 mRow = row;
613 return mRow;
623 mRow, mCol, super.toString());
761 private int mRow;
775 mRow = MAX_ROWS;
780 if (mLines[mRow] != null) {
782 if (mLines[mRow].charAt(i) != TS) {
783 for (int j = mCol; j < mLines[mRow].length(); j++) {
789 mLines[mRow] = null
    [all...]
Cea708CaptionRenderer.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationHeaderUtil.java 89 private final ExpandableNotificationRow mRow;
94 mRow = row;
96 mComparators.add(new HeaderProcessor(mRow,
102 mComparators.add(new HeaderProcessor(mRow,
107 mComparators.add(new HeaderProcessor(mRow,
126 mComparators.add(HeaderProcessor.forTextView(mRow,
128 mComparators.add(HeaderProcessor.forTextView(mRow,
135 List<ExpandableNotificationRow> notificationChildren = mRow.getNotificationChildren();
201 || mRow.getStatusBarNotification().getNotification().showsTime()
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationViewWrapper.java 41 protected final ExpandableNotificationRow mRow;
66 mRow = row;
NotificationCustomViewWrapper.java 131 return mRow.isSummaryWithChildren() ? 0 : mBackgroundColor;
NotificationHeaderViewWrapper.java 172 if (mIcon != null && !mRow.isChildInGroup()) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialog.java     [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
RowPresenter.java 147 Row mRow;
176 return mRow;
595 vh.mRow = item instanceof Row ? (Row) item : null;
615 vh.mRow = null;
ListRowPresenter.java 242 ibh.mItem, mRowViewHolder, (ListRow) mRowViewHolder.mRow);
499 ibh.mHolder, ibh.mItem, rowViewHolder, rowViewHolder.mRow);
508 null, null, rowViewHolder, rowViewHolder.mRow);
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
Array2DRowRealMatrix.java 201 final double[] mRow = m.data[row];
204 outDataRow[col] = dataRow[col] + mRow[col];
241 final double[] mRow = m.data[row];
244 outDataRow[col] = dataRow[col] - mRow[col];
RealMatrixImpl.java 202 final double[] mRow = m.data[row];
205 outDataRow[col] = dataRow[col] + mRow[col];
242 final double[] mRow = m.data[row];
245 outDataRow[col] = dataRow[col] - mRow[col];
Array2DRowFieldMatrix.java 193 final T[] mRow = m.data[row];
196 outDataRow[col] = dataRow[col].add(mRow[col]);
233 final T[] mRow = m.data[row];
236 outDataRow[col] = dataRow[col].subtract(mRow[col]);
BigMatrixImpl.java 311 final BigDecimal[] mRow = m.data[row];
314 outDataRow[col] = dataRow[col].add(mRow[col]);
366 final BigDecimal[] mRow = m.data[row];
369 outDataRow[col] = dataRow[col].subtract(mRow[col]);
    [all...]
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/cc/
CaptionWindowLayout.java 100 private int mRow = -1;
206 if (mRow >= 0) {
207 for (int r = mRow; r < row; ++r) {
211 mRow = row;
  /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...]
  /external/deqp/modules/glshared/
glsTextureTestUtil.cpp     [all...]
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 634 milliseconds