Searched defs:cell (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Launcher2/
H A Dprint_db.py50 def print_intent(out, id, i, cell):
51 if cell:
53 cgi.escape(cell, True)
57 def print_icon(out, id, i, cell):
58 if cell:
62 f.write(cell)
65 def print_cell(out, id, i, cell):
66 if not cell is None:
67 out.write(cgi.escape(str(cell)))
74 def render_cell_info(out, cell, occupie
158 cell = row[i] variable
[all...]
/packages/apps/Launcher3/
H A Dprint_db.py68 def print_intent(out, id, i, cell):
69 if cell:
71 cgi.escape(cell, True)
75 def print_icon(out, id, i, cell):
76 if cell:
80 f.write(cell)
83 def print_icon_type(out, id, i, cell):
84 if cell == 0:
85 out.write("Application (%d)" % cell)
86 elif cell
211 cell = row[i] variable
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DCellLayout.java133 // When a drag operation is in progress, holds the nearest cell to the touch point
738 cellInfo.cell = child;
755 cellInfo.cell = null;
788 cellInfo.cell = null;
801 * Given a point, return the cell that strictly encloses that point
804 * @param result Array of 2 ints to hold the x and y coordinate of the cell
823 * Given a point, return the cell that most closely encloses that point
826 * @param result Array of 2 ints to hold the x and y coordinate of the cell
833 * Given a cell coordinate, return the point that represents the upper left corner of that cell
893 getDistanceFromCell(float x, float y, int[] cell) argument
3320 View cell; field in class:CellLayout.CellInfo
[all...]
H A DLauncher.java1782 * @param cell The cell it should be added to, optional
1786 int[] cell, int[] loc) {
1792 if (cell != null) {
1793 mPendingAddInfo.cellX = cell[0];
1794 mPendingAddInfo.cellY = cell[1];
1807 * @param cell The cell it should be added to, optional
1811 int[] cell, int[] span, int[] loc) {
1819 if (cell !
1785 processShortcutFromDrop(ComponentName componentName, long container, int screen, int[] cell, int[] loc) argument
1810 addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen, int[] cell, int[] span, int[] loc) argument
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DCellLayout.java140 // When a drag operation is in progress, holds the nearest cell to the touch point
724 cellInfo.cell = child;
741 cellInfo.cell = null;
774 cellInfo.cell = null;
787 * Given a point, return the cell that strictly encloses that point
790 * @param result Array of 2 ints to hold the x and y coordinate of the cell
809 * Given a point, return the cell that most closely encloses that point
812 * @param result Array of 2 ints to hold the x and y coordinate of the cell
819 * Given a cell coordinate, return the point that represents the upper left corner of that cell
879 getDistanceFromCell(float x, float y, int[] cell) argument
3303 View cell; field in class:CellLayout.CellInfo
[all...]
H A DLauncher.java1932 * @param cell The cell it should be added to, optional
1936 int[] cell, int[] loc) {
1942 if (cell != null) {
1943 mPendingAddInfo.cellX = cell[0];
1944 mPendingAddInfo.cellY = cell[1];
1957 * @param cell The cell it should be added to, optional
1961 int[] cell, int[] span, int[] loc) {
1969 if (cell !
1935 processShortcutFromDrop(ComponentName componentName, long container, long screenId, int[] cell, int[] loc) argument
1960 addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId, int[] cell, int[] span, int[] loc) argument
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DDayView.java1343 // change and that changes the cell height. When we switch dates,
1345 // be too large for the new view if the cell height is smaller.
2102 // Compute the layout relation between each event before measuring cell
2103 // width, as the cell width should be adjusted along with the relation.
2107 // minimum cell height implicitly expands the cell height of A and it should look like
2108 // (1:00pm - 1:15pm) after the cell height adjustment.
2374 int cell = mFirstJulianDay;
2384 for (int day = 0; day < mNumDays; day++, cell++) {
2407 drawDayHeader(dayNames[dayOfWeek], day, cell, canva
2551 drawDayHeader(String dayStr, int day, int cell, Canvas canvas, Paint p) argument
[all...]

Completed in 8511 milliseconds