Home
last modified time | relevance | path

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

/device/google/atv/TvSampleLeanbackLauncher/src/main/java/com/example/sampleleanbacklauncher/apps/
DLaunchItemsDbHelper.java47 + AppDbItem.COLUMN_ORDER_PRIORITY + " INTEGER NOT NULL DEFAULT 0 , "
165 new String[] {AppDbItem.COLUMN_COMPONENT, AppDbItem.COLUMN_ORDER_PRIORITY}, in readOrderPriorities() argument
169 final int priorityIndex = c.getColumnIndex(AppDbItem.COLUMN_ORDER_PRIORITY); in readOrderPriorities()
197 contentValues.put(AppDbItem.COLUMN_ORDER_PRIORITY, priority); in writeOrderPriority()
233 + " SET " + AppDbItem.COLUMN_ORDER_PRIORITY + "=" in writeOrderPriorityAndShift()
234 + AppDbItem.COLUMN_ORDER_PRIORITY + "+1" in writeOrderPriorityAndShift()
235 + " WHERE " + AppDbItem.COLUMN_ORDER_PRIORITY + ">=?", in writeOrderPriorityAndShift()
256 public static final String COLUMN_ORDER_PRIORITY = "order_priority"; field in LaunchItemsDbHelper.AppDbItem