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

1 2

  /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);
  /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...]
  /external/libgdx/gdx/src/com/badlogic/gdx/
Preferences.java 23 * Android, LocalStorage on GWT, on the desktop a Java Preferences file in a ".prefs" directory will be created, and on iOS an
29 * Changes to a preferences instance will be cached in memory until {@link #flush()} is invoked.
33 * Use {@link Application#getPreferences(String)} to look up a specific preferences instance. Note that on several backends the
34 * preferences name will be used as the filename, so make sure the name is valid for a filename.
38 public interface Preferences {
39 public Preferences putBoolean (String key, boolean val);
41 public Preferences putInteger (String key, int val);
43 public Preferences putLong (String key, long val);
45 public Preferences putFloat (String key, float val);
47 public Preferences putString (String key, String val);
    [all...]
  /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 * &lt;!DOCTYPE preferences SYSTEM "http://java.sun.com/dtd/preferences.dtd"&gt;
141 * Note that the system URI (http://java.sun.com/dtd/preferences.dtd) i
    [all...]
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/
UsbTunerPreferenceProvider.java 30 * A content provider for storing the preferences. It's used across TV app and USB tuner TV input.
34 public static final String AUTHORITY = "com.android.usbtuner.preferences";
36 private static final String PATH_PREFERENCES = "preferences";
40 private static final String PREFERENCES_TABLE = "preferences";
53 sUriMatcher.addURI(AUTHORITY, "preferences", MATCH_PREFERENCE);
54 sUriMatcher.addURI(AUTHORITY, "preferences/*", MATCH_PREFERENCE_KEY);
63 return Preferences.CONTENT_URI.buildUpon().appendPath(key).build();
67 * Columns definitions for the preferences table.
69 public interface Preferences {
72 * 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
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
org.eclipse.equinox.preferences_3.3.0.v20100503.jar 
org.eclipse.debug.core_3.6.0.v20100519.jar 
  /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/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.runtime_3.9.100.v20131218-1515.jar 
org.eclipse.equinox.preferences_3.5.100.v20130422-1538.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/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 669 milliseconds

1 2