HomeSort by relevance Sort by last modified time
    Searched refs:preferences (Results 1 - 25 of 286) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Email/src/com/android/email/
EmailApplication.java 21 import com.android.email.preferences.EmailPreferenceMigrator;
22 import com.android.mail.preferences.BasePreferenceMigrator;
23 import com.android.mail.preferences.PreferenceMigratorHolder;
24 import com.android.mail.preferences.PreferenceMigratorHolder.PreferenceMigratorCreator;
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
BackupSharedPreference.java 17 package com.android.mail.preferences;
PreferenceMigratorHolder.java 17 package com.android.mail.preferences;
20 * Holds a {@link PreferenceMigratorCreator} to be used for migrating preferences.
BasePreferenceMigrator.java 17 package com.android.mail.preferences;
24 * Interface to allow migrating preferences from other projects into the UnifiedEmail code, so apps
25 * can slowly move their preferences into the shared code.
43 * Migrates preferences to UnifiedEmail.
45 * @param oldVersion The previous version of UnifiedEmail's preferences
46 * @param newVersion The new version of UnifiedEmail's preferences
  /external/chromium/chrome/browser/policy/
configuration_policy_provider_mac.h 16 // A provider delegate implementation that reads Mac OS X's managed preferences.
20 // Takes ownership of |preferences|.
22 MacPreferences* preferences,
31 // In order to access the application preferences API, the names and values of
44 // provided by Mac OS X's managed preferences.
50 // For testing; takes ownership of |preferences|.
53 MacPreferences* preferences);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/preferences/
NdkPreferenceInitializer.java 17 package com.android.ide.eclipse.ndk.internal.preferences;
22 import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.preferences_3.3.0.v20100503.jar 
  /development/samples/ApiDemos/src/com/example/android/apis/app/
RedirectGetter.java 62 SharedPreferences preferences = getSharedPreferences("RedirectData", 0); local
64 mTextPref = preferences.getString("text", null);
76 SharedPreferences preferences = getSharedPreferences("RedirectData", 0);
77 SharedPreferences.Editor editor = preferences.edit();
RedirectMain.java 92 SharedPreferences preferences = getSharedPreferences("RedirectData", 0); local
94 mTextPref = preferences.getString("text", null);
106 // Erase the preferences and exit!
107 SharedPreferences preferences = getSharedPreferences("RedirectData", 0);
108 preferences.edit().remove("text").commit();
115 // Retrieve new text preferences.
  /development/samples/ApiDemos/src/com/example/android/apis/preference/
PreferencesFromXml.java 30 // Load the preferences from an XML resource
31 addPreferencesFromResource(R.xml.preferences);
FragmentPreferences.java 47 // Load the preferences from an XML resource
48 addPreferencesFromResource(R.xml.preferences);
  /development/samples/SipDemo/src/com/example/android/sip/
SipSettings.java 29 // Note that none of the preferences are actually defined here.
30 // They're all in the XML file res/xml/preferences.xml.
32 addPreferencesFromResource(R.xml.preferences);
  /development/samples/VoiceRecognitionService/src/com/example/android/voicerecognitionservice/
VoiceRecognitionSettings.java 27 // The name of the SharedPreferences file we'll store preferences in.
34 // The values of the preferences for the type of results to show (letters or numbers).
43 addPreferencesFromResource(R.xml.preferences);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
SettingsActivity.java 31 // Load the preferences from an XML resource
32 addPreferencesFromResource(R.xml.preferences);
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationPreferences.java 24 * Class to manage the preferences used by the invalidation client.
26 * This class provides methods to read and write the preferences used by the invalidation client.
38 * Wrapper around a {@link android.content.SharedPreferences.Editor} for the preferences.
77 /** Returns a new {@link EditContext} to modify the preferences managed by this class. */
90 Log.w(TAG, "Failed to commit invalidation preferences");
98 SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(mContext); local
99 return preferences.getStringSet(PrefKeys.SYNC_TANGO_TYPES, null);
111 SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(mContext); local
112 String accountName = preferences.getString(PrefKeys.SYNC_ACCT_NAME, null);
113 String accountType = preferences.getString(PrefKeys.SYNC_ACCT_TYPE, null)
128 SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(mContext); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
UiPlugin.java 14 import org.eclipse.core.runtime.preferences.InstanceScope;
16 import org.eclipse.ui.preferences.ScopedPreferenceStore;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
PreferenceActivityTest.java 52 activity.addPreferencesFromResource(R.xml.preferences);
53 assertThat(shadow.getPreferencesResId(), equalTo(R.xml.preferences));
58 activity.addPreferencesFromResource(R.xml.preferences);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
EclipseXmlFormatPreferences.java 22 import com.android.ide.eclipse.adt.internal.preferences.AdtPrefs;
25 import org.eclipse.core.runtime.Preferences;
31 import org.eclipse.wst.xml.core.internal.preferences.XMLCorePreferenceNames;
37 * Formatting preferences used by the Android XML formatter.
100 // Look up Eclipse indent preferences
101 // TODO: Use the JDT preferences instead, which make more sense
102 Preferences preferences = XMLCorePlugin.getDefault().getPluginPreferences(); local
103 int indentationWidth = preferences.getInt(XMLCorePreferenceNames.INDENTATION_SIZE);
104 String indentCharPref = preferences.getString(XMLCorePreferenceNames.INDENTATION_CHAR)
    [all...]
  /packages/apps/Email/src/com/android/email/preferences/
EmailPreferenceMigrator.java 16 package com.android.email.preferences;
23 import com.android.email.Preferences;
26 import com.android.mail.preferences.BasePreferenceMigrator;
27 import com.android.mail.preferences.FolderPreferences;
28 import com.android.mail.preferences.MailPrefs;
72 final Preferences preferences = Preferences.getPreferences(context); local
78 final boolean hasSwipeDelete = preferences.hasSwipeDelete();
81 final boolean swipeDelete = preferences.getSwipeDelete()
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
media_galleries_handler.cc 95 chrome::MediaGalleriesPreferences* preferences = local
99 const MediaGalleriesPrefInfoMap& galleries = preferences->known_galleries();
142 chrome::MediaGalleriesPreferences* preferences = local
145 preferences->ForgetGalleryById(id);
152 chrome::MediaGalleriesPreferences* preferences = local
155 preferences->AddGalleryByPath(path);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformancesView.java 22 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
23 import org.eclipse.core.runtime.preferences.InstanceScope;
24 import org.eclipse.core.runtime.preferences.IEclipsePreferences.IPreferenceChangeListener;
25 import org.eclipse.core.runtime.preferences.IEclipsePreferences.PreferenceChangeEvent;
153 // Eclipse preferences
154 IEclipsePreferences preferences; field in class:PerformancesView
186 // Get preferences
187 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID);
190 int eclipseVersion = this.preferences.getInt(IPerformancesConstants.PRE_ECLIPSE_VERSION, IPerformancesConstants.DEFAULT_ECLIPSE_VERSION);
191 String databaseLocation = this.preferences.get(IPerformancesConstants.PRE_DATABASE_LOCATION, IPerformancesConstants.NETWORK_DATABASE_LOCATION (…)
    [all...]
PerformanceResultsPreferenceInitializer.java 13 import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
14 import org.eclipse.core.runtime.preferences.DefaultScope;
15 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
16 import org.eclipse.core.runtime.preferences.IScopeContext;
23 * Default performances preferences initializer.
30 * @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
  /external/chromium_org/chrome/browser/extensions/api/media_galleries_private/
gallery_watch_state_tracker.h 76 chrome::MediaGalleriesPreferences* preferences);
104 chrome::MediaGalleriesPreferences* preferences);
110 chrome::MediaGalleriesPreferences* preferences);
  /cts/tests/tests/preference2/src/android/preference2/cts/
FragmentPreferences.java 42 addPreferencesFromResource(R.xml.preferences);
  /development/samples/training/network-usage/src/com/example/android/networkusage/
SettingsActivity.java 36 // Loads the XML preferences file.
37 addPreferencesFromResource(R.xml.preferences);

Completed in 869 milliseconds

1 2 3 4 5 6 7 8 91011>>