HomeSort by relevance Sort by last modified time
    Searched defs:preferences (Results 51 - 75 of 159) sorted by null

1 23 4 5 6 7

  /packages/apps/EmergencyInfo/src/com/android/emergency/preferences/
AutoCompleteEditTextPreference.java 16 package com.android.emergency.preferences;
ContactPreference.java 16 package com.android.emergency.preferences;
EmergencyContactsPreference.java 16 package com.android.emergency.preferences;
130 // Reload the preferences or add new ones if necessary
202 // in shared preferences. This deals with emergency contacts being deleted from contacts:
  /packages/apps/EmergencyInfo/tests/src/com/android/emergency/preferences/
EmergencyContactsPreferenceTest.java 16 package com.android.emergency.preferences;
EmergencyListPreferenceTest.java 16 package com.android.emergency.preferences;
NameAutoCompletePreferenceTest.java 16 package com.android.emergency.preferences;
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
FolderPreferences.java 16 package com.android.mail.preferences;
37 * Preferences relevant to one specific folder. In Email, this would only be used for an account's
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Type_Definitions.py 38 class preferences(aetools.ComponentItem): class in inherits:aetools.ComponentItem
39 """preferences - (NOT AVAILABLE, SUBJECT TO CHANGE) The Finder Preferences """
122 """window - the window that would open if Finder preferences was opened """
218 preferences._superclassnames = []
219 preferences._privpropdict = {
242 preferences._privelemdict = {
294 'cprf' : preferences,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Type_Definitions.py 38 class preferences(aetools.ComponentItem): class in inherits:aetools.ComponentItem
39 """preferences - (NOT AVAILABLE, SUBJECT TO CHANGE) The Finder Preferences """
122 """window - the window that would open if Finder preferences was opened """
218 preferences._superclassnames = []
219 preferences._privpropdict = {
242 preferences._privelemdict = {
294 'cprf' : preferences,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AndroidPreferencePage.java 17 package com.android.ide.eclipse.adt.internal.preferences;
45 * Preferences dialog. By subclassing <samp>FieldEditorPreferencePage</samp>,
49 * This page is used to modify preferences only. They are stored in the
51 * preferences can be accessed directly via the preference store.
67 * GUI blocks needed to manipulate various types of preferences. Each field
260 /* When the ADT preferences page is made visible, display the dialog to obtain
BuildPreferencePage.java 17 package com.android.ide.eclipse.adt.internal.preferences;
20 import com.android.ide.eclipse.adt.internal.preferences.AdtPrefs.BuildVerbosity;
  /sdk/eclipse/plugins/com.android.ide.eclipse.base/src/com/android/ide/eclipse/base/internal/preferences/
UsagePreferencePage.java 17 package com.android.ide.eclipse.base.internal.preferences;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
ResultsElement.java 18 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
19 import org.eclipse.core.runtime.preferences.InstanceScope;
342 IEclipsePreferences preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID); local
343 return preferences.get(getId(), "");
563 IEclipsePreferences preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID); local
564 preferences.put(getId(), (String) value);
566 preferences.flush();
  /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/
BuildsView.java 22 import org.eclipse.core.runtime.preferences.InstanceScope;
71 String resultGenerationDir = BuildsView.this.preferences.get(IPerformancesConstants.PRE_RESULTS_GENERATION_DIR, "");
78 BuildsView.this.preferences.put(IPerformancesConstants.PRE_RESULTS_GENERATION_DIR, dir.getAbsolutePath());
296 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID);
297 this.preferences.addPreferenceChangeListener(this);
462 boolean connected = this.preferences.getBoolean(IPerformancesConstants.PRE_DATABASE_CONNECTION, IPerformancesConstants.DEFAULT_DATABASE_CONNECTION);
489 int eclipseVersion = this.preferences.getInt(IPerformancesConstants.PRE_ECLIPSE_VERSION, IPerformancesConstants.DEFAULT_ECLIPSE_VERSION);
490 boolean connected = this.preferences.getBoolean(IPerformancesConstants.PRE_DATABASE_CONNECTION, IPerformancesConstants.DEFAULT_DATABASE_CONNECTION);
491 String databaseLocation = this.preferences.get(IPerformancesConstants.PRE_DATABASE_LOCATION, IPerformancesConstants.NETWORK_DATABASE_LOCATION);
492 String lastBuild = this.preferences.get(IPerformancesConstants.PRE_LAST_BUILD, null)
    [all...]
ComponentsView.java 23 import org.eclipse.core.runtime.preferences.InstanceScope;
24 import org.eclipse.core.runtime.preferences.IEclipsePreferences.PreferenceChangeEvent;
123 // Get preferences
124 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID);
127 WRITE_STATUS = this.preferences.getInt(IPerformancesConstants.PRE_WRITE_STATUS, IPerformancesConstants.DEFAULT_WRITE_STATUS);
169 boolean fingerprints = ComponentsView.this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS, IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS);
263 this.preferences.putBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS, fingerprints);
350 * @see org.eclipse.core.runtime.preferences.IEclipsePreferences.IPreferenceChangeListener#preferenceChange(org.eclipse.core.runtime.preferences.IEclipsePreferences.PreferenceChangeEvent)
393 boolean checked = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS, IPerformancesConstants.DEFAULT_FI (…)
    [all...]
PerformanceResultsPreferencePage.java 43 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
44 import org.eclipse.core.runtime.preferences.InstanceScope;
54 * Defines the 'Performances' preferences page.
86 // TODO See whether config descriptors need to be set as preferences or not...
167 Label errorLabel = createLabel(parent, "No performances preferences can be set because the build view has not been created yet!", false);
263 /* TODO See whether config descriptors need to be set as preferences or not...
428 * the our plugin. This is important because we want to store our preferences
649 /* TODO See whether config descriptors need to be set as preferences or not...
917 IEclipsePreferences preferences = new InstanceScope().getNode(PLUGIN_ID); local
    [all...]
ConfigTab.java 18 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
19 import org.eclipse.core.runtime.preferences.InstanceScope;
87 // Eclipse preferences
88 private IEclipsePreferences preferences; field in class:ConfigTab
97 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID);
136 boolean fingerprints = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS, IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS);
313 // Get preferences information
314 boolean onlyMilestones = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_OLD_BUILDS, IPerformancesConstants.DEFAULT_FILTER_OLD_BUILDS);
315 boolean skipNightlyBuilds = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_NIGHTLY_BUILDS, IPerformancesConstants.DEFAULT_FILTER_NIGHTLY_BUILDS);
  /packages/services/Mms/src/com/android/mms/service/
MmsService.java 338 final SharedPreferences preferences = getSharedPreferences(
340 final SharedPreferences.Editor editor = preferences.edit();
775 final SharedPreferences preferences = getSharedPreferences( local
777 return preferences.getBoolean(PREF_AUTO_PERSISTING, false);
    [all...]
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/
ActivationTask.java 157 VisualVoicemailPreferences preferences = new VisualVoicemailPreferences(getContext(), local
159 if (preferences.getString(OmtpConstants.SERVER_ADDRESS, null) == null) {
251 // Save the IMAP credentials in preferences so they are persistent and can be retrieved.
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/protocol/
Vvm3Protocol.java 127 // Save the IMAP credentials in preferences so they are persistent and can be retrieved.
286 VisualVoicemailPreferences preferences = new VisualVoicemailPreferences(context, local
289 String[] lengths = preferences.getString(OmtpConstants.TUI_PASSWORD_LENGTH, "").split("-");
  /external/ImageMagick/MagickCore/
log.c 487 **preferences;
505 preferences=(const LogInfo **) AcquireQuantumMemory((size_t)
506 GetNumberOfElementsInLinkedList(log_cache)+1UL,sizeof(*preferences));
507 if (preferences == (const LogInfo **) NULL)
519 preferences[i++]=p;
523 qsort((void *) preferences,(size_t) i,sizeof(*preferences),LogInfoCompare);
524 preferences[i]=(LogInfo *) NULL;
526 return(preferences);
581 **preferences;
478 **preferences; local
571 **preferences; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSettings.java 254 // Load the preferences from an XML resource
278 // Add all preferences, starting with one for the primary profile.
402 final ArrayList<AccountPreference> preferences = getAccountTypePreferences( local
404 final int count = preferences.size();
406 profileData.preferenceGroup.addPreference(preferences.get(i));
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/
R.java 144 public static final int preferences = nextId++; field in class:R.xml
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ActivityTest.java 402 SharedPreferences preferences = activity.getPreferences(Context.MODE_PRIVATE); local
403 assertNotNull(preferences);
404 preferences.edit().putString("foo", "bar").commit();
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
CachedBluetoothDevice.java 689 // Migrates data from old data store (in Settings app's shared preferences) to new (in Bluetooth
690 // app's shared preferences).
692 SharedPreferences preferences = mContext.getSharedPreferences( local
694 if (!preferences.contains(mDevice.getAddress())) {
699 int oldPermission = preferences.getInt(mDevice.getAddress(), ACCESS_UNKNOWN);
707 SharedPreferences.Editor editor = preferences.edit();
752 // Migrates data from old data store (in Settings app's shared preferences) to new (in Bluetooth
753 // app's shared preferences).
755 SharedPreferences preferences = mContext.getSharedPreferences( local
757 if (!preferences.contains(mDevice.getAddress()))
    [all...]

Completed in 1241 milliseconds

1 23 4 5 6 7