Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
DOverviewAccessibilityDelegate.java38 private static final int SETTINGS = R.string.settings_button_text; field in OverviewAccessibilityDelegate
51 info.addAction(new AccessibilityAction(SETTINGS, context.getText(SETTINGS))); in onInitializeAccessibilityNodeInfo()
66 } else if (action == SETTINGS) { in performAccessibilityAction()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DLegacyApiSupport.java115 private static final int SETTINGS = 44; field in LegacyApiSupport
197 public static final String SETTINGS = "v1_settings"; field
336 matcher.addURI(authority, "settings", SETTINGS); in matcher.addURI() argument
740 db.execSQL("DROP TABLE IF EXISTS " + LegacyTables.SETTINGS + ";"); in createSettingsTable()
741 db.execSQL("CREATE TABLE " + LegacyTables.SETTINGS + " (" + in createSettingsTable()
931 case SETTINGS: { in update()
1231 db.delete(LegacyTables.SETTINGS, "_sync_account IS NULL AND key=?", new String[]{key}); in updateSetting()
1233 db.delete(LegacyTables.SETTINGS, "_sync_account=? AND _sync_account_type=? AND key=?", in updateSetting()
1236 long rowId = db.insert(LegacyTables.SETTINGS, in updateSetting()
1249 " FROM " + Tables.SETTINGS + " LEFT OUTER JOIN " + LegacyTables.SETTINGS +
[all …]
DContactsDatabaseHelper.java158 public static final String SETTINGS = "settings"; field
212 + "LEFT OUTER JOIN " + Tables.SETTINGS + " ON ("
616 public static final String CONCRETE_ACCOUNT_NAME = Tables.SETTINGS + "."
618 public static final String CONCRETE_ACCOUNT_TYPE = Tables.SETTINGS + "."
620 public static final String CONCRETE_DATA_SET = Tables.SETTINGS + "."
1562 db.execSQL("CREATE TABLE IF NOT EXISTS " + Tables.SETTINGS + " (" + in onCreate()
3693 updateIndexStats(db, Tables.SETTINGS, in updateSqliteStats()
3699 updateIndexStats(db, LegacyApiSupport.LegacyTables.SETTINGS, in updateSqliteStats()
3772 db.execSQL("DELETE FROM " + Tables.SETTINGS + ";"); in wipeData()
DContactsProvider2.java389 public static final int SETTINGS = 9000; field in ContactsProvider2
1349 matcher.addURI(ContactsContract.AUTHORITY, "settings", SETTINGS); in matcher.addURI() argument
2734 case SETTINGS: { in insertInTransaction()
3346 final long id = db.insert(Tables.SETTINGS, null, values); in insertSettings()
3776 case SETTINGS: { in deleteInTransaction()
3857 final int count = db.delete(Tables.SETTINGS, selection, selectionArgs); in deleteSettings()
4186 case SETTINGS: { in updateInTransaction()
4480 final int count = db.update(Tables.SETTINGS, values, selection, selectionArgs); in updateSettings()
5428 Tables.SETTINGS, Settings.ACCOUNT_NAME, Settings.ACCOUNT_TYPE, systemAccounts); in updateAccountsInBackground()
6995 case SETTINGS: { in queryLocal()
[all …]
/packages/apps/Dialer/java/com/android/dialer/logging/
Dscreen_event.proto33 SETTINGS = 9; enumerator
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsDatabaseHelperUpgradeTest.java594 new TableListEntry(Tables.SETTINGS, SETTINGS_COLUMNS),
/packages/apps/Dialer/java/com/android/dialer/app/
DDialtactsActivity.java711 Logger.get(this).logScreenView(ScreenEvent.Type.SETTINGS, this); in onMenuItemClick()