Searched defs:SETTINGS (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
H A DOverviewAccessibilityDelegate.java38 private static final int SETTINGS = R.string.settings_button_text; field in class:OverviewAccessibilityDelegate
51 info.addAction(new AccessibilityAction(SETTINGS, context.getText(SETTINGS)));
66 } else if (action == SETTINGS) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DLegacyApiSupport.java115 private static final int SETTINGS = 44; field in class:LegacyApiSupport
197 public static final String SETTINGS = "v1_settings"; field in interface:LegacyApiSupport.LegacyTables
336 matcher.addURI(authority, "settings", SETTINGS);
740 db.execSQL("DROP TABLE IF EXISTS " + LegacyTables.SETTINGS + ";");
741 db.execSQL("CREATE TABLE " + LegacyTables.SETTINGS + " (" +
931 case SETTINGS: {
1231 db.delete(LegacyTables.SETTINGS, "_sync_account IS NULL AND key=?", new String[]{key});
1233 db.delete(LegacyTables.SETTINGS, "_sync_account=? AND _sync_account_type=? AND key=?",
1236 long rowId = db.insert(LegacyTables.SETTINGS,
1249 " FROM " + Tables.SETTINGS
[all...]
H A DContactsDatabaseHelper.java158 public static final String SETTINGS = "settings"; field in interface:ContactsDatabaseHelper.Tables
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 + " (" +
3693 updateIndexStats(db, Tables.SETTINGS,
3699 updateIndexStats(db, LegacyApiSupport.LegacyTables.SETTINGS,
3772 db.execSQL("DELETE FROM " + Tables.SETTINGS + ";");
H A DContactsProvider2.java389 public static final int SETTINGS = 9000; field in class:ContactsProvider2
1349 matcher.addURI(ContactsContract.AUTHORITY, "settings", SETTINGS);
2734 case SETTINGS: {
3346 final long id = db.insert(Tables.SETTINGS, null, values);
3776 case SETTINGS: {
3857 final int count = db.delete(Tables.SETTINGS, selection, selectionArgs);
4186 case SETTINGS: {
4480 final int count = db.update(Tables.SETTINGS, values, selection, selectionArgs);
5426 // Second, remove stale rows from Tables.SETTINGS and Tables.DIRECTORIES
5428 Tables.SETTINGS, Setting
[all...]

Completed in 203 milliseconds