Home
last modified time | relevance | path

Searched refs:cell (Results 1 – 25 of 28) sorted by relevance

12

/packages/apps/Launcher3/
Dprint_db.py70 def print_intent(out, id, i, cell): argument
71 if cell:
73 cgi.escape(cell, True)
77 def print_icon(out, id, i, cell): argument
78 if cell:
82 f.write(cell)
85 def print_icon_type(out, id, i, cell): argument
86 if cell == 0:
87 out.write("Application (%d)" % cell)
88 elif cell == 1:
[all …]
/packages/apps/Terminal/jni/
Dcom_android_terminal_Terminal.cpp95 inline void getCell(dimen_t col, VTermScreenCell* cell) { in getCell() argument
96 *cell = mCells[col]; in getCell()
126 void getCellLocked(VTermPos pos, VTermScreenCell* cell);
475 void Terminal::getCellLocked(VTermPos pos, VTermScreenCell* cell) { in getCellLocked() argument
483 cell->width = 1; in getCellLocked()
485 cell->bg.red = 255; in getCellLocked()
493 line->getCell(pos.col, cell); in getCellLocked()
494 cell->width = 1; in getCellLocked()
496 cell->bg.blue = 255; in getCellLocked()
501 line->getCell(line->cols - 1, cell); in getCellLocked()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/util/
DFocusLogic.java174 View cell = parent.getChildAt(i); in createSparseMatrix() local
175 if (!cell.isFocusable()) { in createSparseMatrix()
178 int cx = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellX; in createSparseMatrix()
179 int cy = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellY; in createSparseMatrix()
216 View cell = iconParent.getChildAt(i); in createSparseMatrixWithHotseat() local
217 if (!cell.isFocusable()) { in createSparseMatrixWithHotseat()
220 int cx = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellX; in createSparseMatrixWithHotseat()
221 int cy = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellY; in createSparseMatrixWithHotseat()
263 View cell = iconParent.getChildAt(i); in createSparseMatrixWithPivotColumn() local
264 if (!cell.isFocusable()) { in createSparseMatrixWithPivotColumn()
[all …]
DGridOccupancy.java90 public void markCells(CellAndSpan cell, boolean value) { in markCells() argument
91 markCells(cell.cellX, cell.cellY, cell.spanX, cell.spanY, value); in markCells()
/packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
DTableHeaderController.java81 private void bindCell(HeaderCell cell, @SortDimensionId int id) { in bindCell() argument
82 assert(cell != null); in bindCell()
85 cell.setTag(dimension); in bindCell()
87 cell.onBind(dimension); in bindCell()
90 cell.setOnClickListener(mOnCellClickListener); in bindCell()
92 cell.setOnClickListener(null); in bindCell()
/packages/apps/Launcher3/src/com/android/launcher3/
DWorkspace.java375 if (mDragInfo != null && mDragInfo.cell != null) { in onDragStart()
376 CellLayout layout = (CellLayout) mDragInfo.cell.getParent().getParent(); in onDragStart()
377 layout.markCellsAsUnoccupiedForView(mDragInfo.cell); in onDragStart()
1442 View child = cellInfo.cell; in startDrag()
1637 hasntMoved = dropOverView == mDragInfo.cell; in willCreateUserFolder()
1684 CellLayout cellParent = getParentCellLayoutForView(mDragInfo.cell); in createUserFolderIfNecessary()
1701 getParentCellLayoutForView(mDragInfo.cell).removeView(mDragInfo.cell); in createUserFolderIfNecessary()
1749 getParentCellLayoutForView(mDragInfo.cell).removeView(mDragInfo.cell); in addToExistingFolderIfNecessary()
1781 final View cell = mDragInfo.cell; in onDrop() local
1787 boolean hasMovedLayouts = (getParentCellLayoutForView(cell) != dropTargetLayout); in onDrop()
[all …]
DCellLayout.java747 public float getDistanceFromCell(float x, float y, int[] cell) { in getDistanceFromCell() argument
748 cellToCenterPoint(cell[0], cell[1], mTmpPoint); in getDistanceFromCell()
2725 public final View cell; field in CellLayout.CellInfo
2734 cell = v; in CellInfo()
2741 return "Cell[view=" + (cell == null ? "null" : cell.getClass()) in toString()
DLauncher.java1621 int[] cell, int spanX, int spanY) { in addPendingItem() argument
1624 if (cell != null) { in addPendingItem()
1625 info.cellX = cell[0]; in addPendingItem()
1626 info.cellY = cell[1]; in addPendingItem()
DSecondaryDropTarget.java194 return mLauncher.getWorkspace().getDragInfo().cell; in getViewUnderDrag()
/packages/apps/Car/libs/
Dresource_generator.py227 trimmed = [cell.strip() for cell in row]
245 cell = trimmed[idx]
247 if len(cell) > 0:
248 var_values[header[idx]] = cell
/packages/modules/NetworkStack/src/com/android/networkstack/metrics/
DDataStallDetectionStats.java72 public DataStallDetectionStats(@Nullable byte[] cell, @Nullable byte[] wifi, in DataStallDetectionStats() argument
75 mCellularInfo = emptyCellDataIfNull(cell); in DataStallDetectionStats()
97 public static byte[] emptyCellDataIfNull(@Nullable byte[] cell) { in emptyCellDataIfNull() argument
98 if (cell != null) return cell; in emptyCellDataIfNull()
/packages/apps/Car/libs/specs/
Dkeylines.csv5 # value in the cell. While it is easy to modify the script to handle a skipped comma, it is better
7 # * Don't put a comma after the last value, if there is nothing in the last cell, leave it empty.
8 # * If a cell is left empty, the value for that alternate resource will get skipped. In that
/packages/apps/Settings/src/com/android/settings/deviceinfo/simstatus/
DSimStatusDialogController.java661 for (CellSignalStrength cell : cellSignalStrengthList) { in getDbm()
662 if (cell.getDbm() != -1) { in getDbm()
663 dbm = cell.getDbm(); in getDbm()
678 for (CellSignalStrength cell : cellSignalStrengthList) { in getAsuLevel()
679 if (cell.getAsuLevel() != -1) { in getAsuLevel()
680 asu = cell.getAsuLevel(); in getAsuLevel()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/security/
DInitialLockSetupServiceTest.java208 LockPatternView.Cell cell = pattern.get(i); in testSetLockPattern_setsDevicePattern() local
209 patternBytes[i] = InitialLockSetupHelper.getByteFromPatternCell(cell.getRow(), in testSetLockPattern_setsDevicePattern()
210 cell.getColumn()); in testSetLockPattern_setsDevicePattern()
/packages/apps/Launcher3/tests/tapl/com/android/launcher3/tapl/
DWidgets.java95 for (UiObject2 cell : cells) { in getWidget()
96 final UiObject2 label = cell.findObject(labelSelector); in getWidget()
/packages/modules/ExtServices/tests/src/android/ext/services/autofill/
DAutofillFieldClassificationServiceImplTest.java104 float cell = line[j]; in testCalculateScores() local
105 assertWithMessage("wrong score at [%s, %s]", i, j).that(cell).isWithin(0.01F) in testCalculateScores()
/packages/modules/NetworkStack/src/com/android/server/connectivity/
DNetworkMonitor.java1805 private String getMccFromCellInfo(final CellInfo cell) { in getMccFromCellInfo() argument
1806 if (cell instanceof CellInfoGsm) { in getMccFromCellInfo()
1807 return ((CellInfoGsm) cell).getCellIdentity().getMccString(); in getMccFromCellInfo()
1808 } else if (cell instanceof CellInfoLte) { in getMccFromCellInfo()
1809 return ((CellInfoLte) cell).getCellIdentity().getMccString(); in getMccFromCellInfo()
1810 } else if (cell instanceof CellInfoWcdma) { in getMccFromCellInfo()
1811 return ((CellInfoWcdma) cell).getCellIdentity().getMccString(); in getMccFromCellInfo()
1812 } else if (cell instanceof CellInfoTdscdma) { in getMccFromCellInfo()
1813 return ((CellInfoTdscdma) cell).getCellIdentity().getMccString(); in getMccFromCellInfo()
1814 } else if (cell instanceof CellInfoNr) { in getMccFromCellInfo()
[all …]
/packages/apps/Calendar/src/com/android/calendar/
DDayView.java2091 int cell = mFirstJulianDay; in drawDayHeaderLoop() local
2101 for (int day = 0; day < mNumDays; day++, cell++) { in drawDayHeaderLoop()
2124 drawDayHeader(dayNames[dayOfWeek], day, cell, canvas, p); in drawDayHeaderLoop()
2179 int cell = mFirstJulianDay; in doDraw() local
2183 for (int day = 0; day < mNumDays; day++, cell++) { in doDraw()
2186 drawEvents(cell, day, HOUR_GAP, canvas, p); in doDraw()
2188 if (cell == mTodayJulianDay) { in doDraw()
2222 private void drawDayHeader(String dayStr, int day, int cell, Canvas canvas, Paint p) { in drawDayHeader() argument
/packages/modules/DnsResolver/
Dstats.proto103 NS_T_AFSDB = 18; // AFS cell database.
/packages/inputmethods/LatinIME/dictionaries/
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...
Dnl_wordlist.combined.gz1dictionary=main:nl,locale=nl,description=Nederlands,date=1414726258, ...
Dpt_BR_wordlist.combined.gz1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ...
Dpl_wordlist.combined.gz

12