HomeSort by relevance Sort by last modified time
    Searched defs:Preferences (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
Preferences.java 24 public class Preferences extends PreferenceActivity {
28 // Load the preferences from an XML resource
29 addPreferencesFromResource(R.xml.preferences);
  /packages/apps/DocumentsUI/src/com/android/documentsui/prefs/
Preferences.java 18 public final class Preferences {
19 private Preferences() {}
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
NodeChangeEventTest.java 21 import java.util.prefs.Preferences;
33 event = new NodeChangeEvent(Preferences.systemRoot(), Preferences
35 assertSame(Preferences.systemRoot(), event.getParent());
36 assertSame(Preferences.userRoot(), event.getChild());
37 assertSame(Preferences.systemRoot(), event.getSource());
42 event = new NodeChangeEvent(null, Preferences.userRoot());
47 event = new NodeChangeEvent(Preferences.systemRoot(), null);
48 assertSame(Preferences.systemRoot(), event.getParent());
50 assertSame(Preferences.systemRoot(), event.getSource())
    [all...]
PreferenceChangeEventTest.java 21 import java.util.prefs.Preferences;
41 event = new PreferenceChangeEvent(Preferences.userRoot(), "key", null);
44 assertSame(Preferences.userRoot(), event.getNode());
45 assertSame(Preferences.userRoot(), event.getSource());
47 event = new PreferenceChangeEvent(Preferences.userRoot(), "", null);
50 assertSame(Preferences.userRoot(), event.getNode());
51 assertSame(Preferences.userRoot(), event.getSource());
53 event = new PreferenceChangeEvent(Preferences.userRoot(), null, "value");
56 assertSame(Preferences.userRoot(), event.getNode());
57 assertSame(Preferences.userRoot(), event.getSource())
    [all...]
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/utils/
Preferences.java 26 * Preferences for WorkManager.
28 * TODO: Migrate all preferences, including IdGenerator, to this file.
33 public class Preferences {
35 private static final String PREFERENCES_FILE_NAME = "androidx.work.util.preferences";
42 public Preferences(Context context) {
  /external/vogar/src/vogar/target/
TestEnvironment.java 33 import java.util.prefs.Preferences;
116 // Require writable java.home and user.dir directories for preferences
152 // Preferences
159 // resetPreferences(Preferences.systemRoot());
160 resetPreferences(Preferences.userRoot());
181 private static void resetPreferences(Preferences root) {
185 // Indicates that Preferences is probably not working. It's not really supported on
  /libcore/ojluni/src/main/java/java/util/prefs/
Preferences.java 56 * preferences and one for system preferences. Each user has a separate user
103 * <p>All of the methods that modify preferences data are permitted to operate
112 * <p>All of the methods that read preferences from a <tt>Preferences</tt>
131 * <p>This class contains an export/import facility, allowing preferences
133 * preferences to be "imported" back into the system. This facility
139 * <!DOCTYPE preferences SYSTEM "http://java.sun.com/dtd/preferences.dtd">
141 * Note that the system URI (http://java.sun.com/dtd/preferences.dtd) i
    [all...]
  /packages/apps/TV/common/src/com/android/tv/common/
CommonPreferenceProvider.java 30 * A content provider for storing common preferences. It's used across TV app and tuner TV inputs.
34 public static final String AUTHORITY = CommonConstants.BASE_PACKAGE + ".common.preferences";
36 private static final String PATH_PREFERENCES = "preferences";
40 private static final String PREFERENCES_TABLE = "preferences";
51 sUriMatcher.addURI(AUTHORITY, "preferences", MATCH_PREFERENCE);
52 sUriMatcher.addURI(AUTHORITY, "preferences/*", MATCH_PREFERENCE_KEY);
61 return Preferences.CONTENT_URI.buildUpon().appendPath(key).build();
64 /** Columns definitions for the preferences table. */
65 public interface Preferences {
67 /** The content:// style for the preferences table. *
    [all...]
  /packages/apps/Email/provider_src/com/android/email/
Preferences.java 35 public class Preferences {
37 // Preferences file
40 // Preferences field names
87 private static Preferences sPreferences;
91 private Preferences(Context context) {
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);
223 * @deprecated This has been moved to {@link com.android.mail.preferences.MailPrefs}, and is
  /packages/apps/DocumentsUI/src/com/android/documentsui/
BaseActivity.java 56 import com.android.documentsui.prefs.Preferences;
209 assert(Preferences.shouldBackup(pref));
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.runtime_3.11.0.v20150405-1723.jar 
org.eclipse.equinox.preferences_3.5.300.v20150408-1437.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.runtime_3.9.0.v20130326-1255.jar 
org.eclipse.equinox.preferences_3.5.100.v20130422-1538.jar 
  /external/ImageMagick/MagickCore/
widget.c     [all...]
  /prebuilts/devtools/tools/lib/
osgi-4.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/osgi/osgi/4.0.0/
osgi-4.0.0.jar 
  /prebuilts/tools/common/osgi/
osgi.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 

Completed in 458 milliseconds

1 2 3