/packages/apps/Launcher3/ |
D | print_db.py | 70 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/Launcher2/ |
D | print_db.py | 50 def print_intent(out, id, i, cell): argument 51 if cell: 53 cgi.escape(cell, True) 57 def print_icon(out, id, i, cell): argument 58 if cell: 62 f.write(cell) 65 def print_cell(out, id, i, cell): argument 66 if not cell is None: 67 out.write(cgi.escape(str(cell))) 74 def render_cell_info(out, cell, occupied): argument [all …]
|
/packages/apps/Terminal/jni/ |
D | com_android_terminal_Terminal.cpp | 97 inline void getCell(dimen_t col, VTermScreenCell* cell) { in getCell() argument 98 *cell = mCells[col]; in getCell() 128 void getCellLocked(VTermPos pos, VTermScreenCell* cell); 484 void Terminal::getCellLocked(VTermPos pos, VTermScreenCell* cell) { in getCellLocked() argument 492 cell->width = 1; in getCellLocked() 494 cell->bg.red = 255; in getCellLocked() 502 line->getCell(pos.col, cell); in getCellLocked() 503 cell->width = 1; in getCellLocked() 505 cell->bg.blue = 255; in getCellLocked() 510 line->getCell(line->cols - 1, cell); in getCellLocked() [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
D | FocusLogic.java | 173 View cell = parent.getChildAt(i); in createSparseMatrix() local 174 if (!cell.isFocusable()) { in createSparseMatrix() 177 int cx = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellX; in createSparseMatrix() 178 int cy = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellY; in createSparseMatrix() 225 View cell = iconParent.getChildAt(i); in createSparseMatrixWithHotseat() local 226 if (!cell.isFocusable()) { in createSparseMatrixWithHotseat() 229 int cx = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellX; in createSparseMatrixWithHotseat() 230 int cy = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellY; in createSparseMatrixWithHotseat() 282 View cell = iconParent.getChildAt(i); in createSparseMatrixWithPivotColumn() local 283 if (!cell.isFocusable()) { in createSparseMatrixWithPivotColumn() [all …]
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
D | Workspace.java | 1875 View child = cellInfo.cell; 2058 hasntMoved = dropOverView == mDragInfo.cell; 2102 CellLayout cellParent = getParentCellLayoutForView(mDragInfo.cell); 2119 getParentCellLayoutForView(mDragInfo.cell).removeView(mDragInfo.cell); 2162 getParentCellLayoutForView(mDragInfo.cell).removeView(mDragInfo.cell); 2192 final View cell = mDragInfo.cell; 2197 boolean hasMovedLayouts = (getParentCellLayoutForView(cell) != dropTargetLayout); 2216 if (!mInScrollArea && createUserFolderIfNecessary(cell, container, 2221 if (addToExistingFolderIfNecessary(cell, dropTargetLayout, mTargetCell, 2238 (int) mDragViewVisualCenter[1], minSpanX, minSpanY, spanX, spanY, cell, [all …]
|
D | CellLayout.java | 738 cellInfo.cell = child; in setTagToCellInfoForPoint() 755 cellInfo.cell = null; in setTagToCellInfoForPoint() 788 cellInfo.cell = null; in clearTagCellInfo() 893 public float getDistanceFromCell(float x, float y, int[] cell) { in getDistanceFromCell() argument 894 cellToCenterPoint(cell[0], cell[1], mTmpPoint); in getDistanceFromCell() 3320 View cell; field in CellLayout.CellInfo 3330 return "Cell[view=" + (cell == null ? "null" : cell.getClass()) in toString()
|
D | Launcher.java | 1836 int[] cell, int[] loc) { in processShortcutFromDrop() argument 1842 if (cell != null) { in processShortcutFromDrop() 1843 mPendingAddInfo.cellX = cell[0]; in processShortcutFromDrop() 1844 mPendingAddInfo.cellY = cell[1]; in processShortcutFromDrop() 1861 int[] cell, int[] span, int[] loc) { in addAppWidgetFromDrop() argument 1869 if (cell != null) { in addAppWidgetFromDrop() 1870 mPendingAddInfo.cellX = cell[0]; in addAppWidgetFromDrop() 1871 mPendingAddInfo.cellY = cell[1]; in addAppWidgetFromDrop() 2462 final View itemUnderLongClick = longClickCellInfo.cell; in onLongClick()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | Workspace.java | 2350 View child = cellInfo.cell; in startDrag() 2603 hasntMoved = dropOverView == mDragInfo.cell; in willCreateUserFolder() 2650 CellLayout cellParent = getParentCellLayoutForView(mDragInfo.cell); in createUserFolderIfNecessary() 2667 getParentCellLayoutForView(mDragInfo.cell).removeView(mDragInfo.cell); in createUserFolderIfNecessary() 2710 getParentCellLayoutForView(mDragInfo.cell).removeView(mDragInfo.cell); in addToExistingFolderIfNecessary() 2741 final View cell = mDragInfo.cell; in onDrop() local 2746 boolean hasMovedLayouts = (getParentCellLayoutForView(cell) != dropTargetLayout); in onDrop() 2765 if (!mInScrollArea && createUserFolderIfNecessary(cell, container, in onDrop() 2770 if (addToExistingFolderIfNecessary(cell, dropTargetLayout, mTargetCell, in onDrop() 2787 (int) mDragViewVisualCenter[1], minSpanX, minSpanY, spanX, spanY, cell, in onDrop() [all …]
|
D | Launcher.java | 2245 int[] cell, int spanX, int spanY) { in addPendingItem() argument 2253 container, screenId, cell, span); in addPendingItem() local 2256 processShortcutFromDrop(info.componentName, container, screenId, cell); in addPendingItem() 2271 int[] cell) { in processShortcutFromDrop() argument 2277 if (cell != null) { in processShortcutFromDrop() 2278 mPendingAddInfo.cellX = cell[0]; in processShortcutFromDrop() 2279 mPendingAddInfo.cellY = cell[1]; in processShortcutFromDrop() 2295 int[] cell, int[] span) { in addAppWidgetFromDrop() argument 2303 if (cell != null) { in addAppWidgetFromDrop() 2304 mPendingAddInfo.cellX = cell[0]; in addAppWidgetFromDrop() [all …]
|
D | CellLayout.java | 808 public float getDistanceFromCell(float x, float y, int[] cell) { in getDistanceFromCell() argument 809 cellToCenterPoint(cell[0], cell[1], mTmpPoint); in getDistanceFromCell() 2970 View cell; field in CellLayout.CellInfo 2979 cell = v; in CellInfo() 2990 return "Cell[view=" + (cell == null ? "null" : cell.getClass()) in toString()
|
D | Folder.java | 282 beginDrag(cellInfo.cell, accessible); in startDrag()
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
D | Keyboard.java | 722 int [] cell = new int[count]; in computeNearestNeighbors() local 723 System.arraycopy(indices, 0, cell, 0, count); in computeNearestNeighbors() 724 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell; in computeNearestNeighbors()
|
/packages/apps/Calendar/src/com/android/calendar/ |
D | DayView.java | 2374 int cell = mFirstJulianDay; in drawDayHeaderLoop() local 2384 for (int day = 0; day < mNumDays; day++, cell++) { in drawDayHeaderLoop() 2407 drawDayHeader(dayNames[dayOfWeek], day, cell, canvas, p); in drawDayHeaderLoop() 2462 int cell = mFirstJulianDay; in doDraw() local 2466 for (int day = 0; day < mNumDays; day++, cell++) { in doDraw() 2469 drawEvents(cell, day, HOUR_GAP, canvas, p); in doDraw() 2471 if (cell == mTodayJulianDay) { in doDraw() 2551 private void drawDayHeader(String dayStr, int day, int cell, Canvas canvas, Paint p) { in drawDayHeader() argument
|
/packages/apps/Settings/src/com/android/settings/ |
D | RadioInfo.java | 618 for (NeighboringCellInfo cell : cids) { in updateNeighboringCids() 619 sb.append(cell.toString()).append(" "); in updateNeighboringCids()
|
/packages/services/Telecomm/libs/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/packages/apps/Messaging/build/gcheckstyle/ |
D | google-style-checker_deploy.jar | META-INF/
META-INF/MANIFEST.MF
build-data.properties
com/
com ... |
/packages/inputmethods/LatinIME/dictionaries/ |
D | en_US_wordlist.combined.gz |
|