Home
last modified time | relevance | path

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

/packages/apps/Launcher3/
Dprint_db.py68 def print_intent(out, id, i, cell): argument
69 if cell:
71 cgi.escape(cell, True)
75 def print_icon(out, id, i, cell): argument
76 if cell:
80 f.write(cell)
83 def print_icon_type(out, id, i, cell): argument
84 if cell == 0:
85 out.write("Application (%d)" % cell)
86 elif cell == 1:
[all …]
/packages/apps/Launcher2/
Dprint_db.py50 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/Launcher2/src/com/android/launcher2/
DWorkspace.java1875 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 …]
DCellLayout.java738 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()
DLauncher.java1810 int[] cell, int[] loc) { in processShortcutFromDrop() argument
1816 if (cell != null) { in processShortcutFromDrop()
1817 mPendingAddInfo.cellX = cell[0]; in processShortcutFromDrop()
1818 mPendingAddInfo.cellY = cell[1]; in processShortcutFromDrop()
1835 int[] cell, int[] span, int[] loc) { in addAppWidgetFromDrop() argument
1843 if (cell != null) { in addAppWidgetFromDrop()
1844 mPendingAddInfo.cellX = cell[0]; in addAppWidgetFromDrop()
1845 mPendingAddInfo.cellY = cell[1]; in addAppWidgetFromDrop()
2436 final View itemUnderLongClick = longClickCellInfo.cell; in onLongClick()
/packages/apps/Launcher3/src/com/android/launcher3/
DWorkspace.java2643 View child = cellInfo.cell; in startDrag()
2889 hasntMoved = dropOverView == mDragInfo.cell; in willCreateUserFolder()
2933 CellLayout cellParent = getParentCellLayoutForView(mDragInfo.cell); in createUserFolderIfNecessary()
2950 getParentCellLayoutForView(mDragInfo.cell).removeView(mDragInfo.cell); in createUserFolderIfNecessary()
2993 getParentCellLayoutForView(mDragInfo.cell).removeView(mDragInfo.cell); in addToExistingFolderIfNecessary()
3023 final View cell = mDragInfo.cell; in onDrop() local
3028 boolean hasMovedLayouts = (getParentCellLayoutForView(cell) != dropTargetLayout); in onDrop()
3047 if (!mInScrollArea && createUserFolderIfNecessary(cell, container, in onDrop()
3052 if (addToExistingFolderIfNecessary(cell, dropTargetLayout, mTargetCell, in onDrop()
3069 (int) mDragViewVisualCenter[1], minSpanX, minSpanY, spanX, spanY, cell, in onDrop()
[all …]
DCellLayout.java783 public float getDistanceFromCell(float x, float y, int[] cell) { in getDistanceFromCell() argument
784 cellToCenterPoint(cell[0], cell[1], mTmpPoint); in getDistanceFromCell()
3241 View cell; field in CellLayout.CellInfo
3250 cell = v; in CellInfo()
3261 return "Cell[view=" + (cell == null ? "null" : cell.getClass()) in toString()
DLauncher.java2247 int[] cell, int[] loc) { in processShortcutFromDrop() argument
2253 if (cell != null) { in processShortcutFromDrop()
2254 mPendingAddInfo.cellX = cell[0]; in processShortcutFromDrop()
2255 mPendingAddInfo.cellY = cell[1]; in processShortcutFromDrop()
2272 int[] cell, int[] span, int[] loc) { in addAppWidgetFromDrop() argument
2280 if (cell != null) { in addAppWidgetFromDrop()
2281 mPendingAddInfo.cellX = cell[0]; in addAppWidgetFromDrop()
2282 mPendingAddInfo.cellY = cell[1]; in addAppWidgetFromDrop()
3057 itemUnderLongClick = longClickCellInfo.cell; in onLongClick()
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DKeyboard.java722 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/
DDayView.java2374 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/
DRadioInfo.java525 for (NeighboringCellInfo cell : cids) { in updateNeighboringCids()
526 sb.append(cell.toString()).append(" "); in updateNeighboringCids()
/packages/inputmethods/LatinIME/dictionaries/
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz
Den_wordlist.combined.gz
Dnl_wordlist.combined.gz
Dpt_BR_wordlist.combined.gz
Dpl_wordlist.combined.gz1dictionary=main:pl,locale=pl,description=Polski,date=1393228143, ...
Dtr_wordlist.combined.gz1dictionary=main:tr,locale=tr,description=Türkçe,date=1393228155, ...
Dfr_wordlist.combined.gz
Dsv_wordlist.combined.gz1dictionary=main:sv,locale=sv,description=Svenska,date=1393228154, ...