Home
last modified time | relevance | path

Searched refs:CELL_SIZE (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/widget/
DLauncherAppWidgetProviderInfoTest.java51 private static final int CELL_SIZE = 50; field in LauncherAppWidgetProviderInfoTest
92 info.minWidth = CELL_SIZE * (NUM_OF_COLS + 1); in initSpans_minWidthLargerThanGridColumns_shouldInitializeSpansToAtMostTheGridColumns()
167 info.minWidth = CELL_SIZE * 3; in initSpans_minResizeWidthWithCellSpacingAndWidgetInset_shouldInitializeMinSpans()
168 info.minHeight = CELL_SIZE * 3; in initSpans_minResizeWidthWithCellSpacingAndWidgetInset_shouldInitializeMinSpans()
169 info.minResizeWidth = CELL_SIZE * 2 + maxPadding; in initSpans_minResizeWidthWithCellSpacingAndWidgetInset_shouldInitializeMinSpans()
170 info.minResizeHeight = CELL_SIZE * 2 + maxPadding; in initSpans_minResizeWidthWithCellSpacingAndWidgetInset_shouldInitializeMinSpans()
188 info.minWidth = CELL_SIZE * 3; in initSpans_minResizeWidthWithCellSpacingAndNoWidgetInset_shouldInitializeMinSpans()
189 info.minHeight = CELL_SIZE * 3; in initSpans_minResizeWidthWithCellSpacingAndNoWidgetInset_shouldInitializeMinSpans()
190 info.minResizeWidth = CELL_SIZE * 2 + maxPadding; in initSpans_minResizeWidthWithCellSpacingAndNoWidgetInset_shouldInitializeMinSpans()
191 info.minResizeHeight = CELL_SIZE * 2 + maxPadding; in initSpans_minResizeWidthWithCellSpacingAndNoWidgetInset_shouldInitializeMinSpans()
[all …]
/packages/apps/Launcher3/tools/
Dprint_db.py16 CELL_SIZE = 110 variable
110 (CELL_SIZE, CELL_SIZE))
126 (CELL_SIZE*spanX), (CELL_SIZE*spanY),
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/widget/picker/util/
DWidgetsTableUtilsTest.java67 private static final int CELL_SIZE = 50; field in WidgetsTableUtilsTest
249 ((Point) i.getArgument(0)).set(CELL_SIZE, CELL_SIZE); in initDP()
252 when(mTestDeviceProfile.getCellSize()).thenReturn(new Point(CELL_SIZE, CELL_SIZE)); in initDP()
/packages/apps/Launcher3/src/com/android/launcher3/responsive/
DSizeSpec.kt127 const val CELL_SIZE = "cellSize" constant
DResponsiveSpec.kt82 cellSize = specs.getOrError(SizeSpec.XmlTags.CELL_SIZE)
/packages/modules/Virtualization/pvmfw/src/
Ddevice_assignment.rs441 const CELL_SIZE: usize = core::mem::size_of::<u32>(); in collect_phandle_references_from_overlayable_nodes() constant
470 if fixup_prop_values.is_empty() || fixup_prop_values.len() % CELL_SIZE != 0 { in collect_phandle_references_from_overlayable_nodes()
474 for fixup_prop_cell in fixup_prop_values.chunks(CELL_SIZE) { in collect_phandle_references_from_overlayable_nodes()
480 if phandle_offset % CELL_SIZE != 0 { in collect_phandle_references_from_overlayable_nodes()
484 .get(phandle_offset..phandle_offset + CELL_SIZE) in collect_phandle_references_from_overlayable_nodes()