Searched defs:Preferences (Results 1 - 3 of 3) sorted by path

/packages/apps/DocumentsUI/src/com/android/documentsui/prefs/
H A DPreferences.java18 public final class Preferences { class
19 private Preferences() {} method in class:Preferences
/packages/apps/Email/provider_src/com/android/email/
H A DPreferences.java35 public class Preferences { class
37 // Preferences file
40 // Preferences field names
87 private static Preferences sPreferences;
91 private Preferences(Context context) { method in class:Preferences
97 * Activity that initialized it. Do we lose ability to read Preferences in
101 public static synchronized Preferences getPreferences(Context context) {
103 sPreferences = new Preferences(context);
/packages/apps/TV/src/com/android/tv/tuner/
H A DTunerPreferenceProvider.java61 return Preferences.CONTENT_URI.buildUpon().appendPath(key).build();
67 public interface Preferences { interface in class:TunerPreferenceProvider
118 + Preferences._ID + " INTEGER PRIMARY KEY AUTOINCREMENT,"
119 + Preferences.COLUMN_KEY + " TEXT NOT NULL,"
120 + Preferences.COLUMN_VALUE + " TEXT);");
153 return Preferences.CONTENT_TYPE;
155 return Preferences.CONTENT_ITEM_TYPE;
181 db.delete(PREFERENCES_TABLE, Preferences.COLUMN_KEY + " like ?",
182 new String[]{values.getAsString(Preferences.COLUMN_KEY)});
186 Uri rowUri = buildPreferenceUri(values.getAsString(Preferences
[all...]

Completed in 95 milliseconds