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

1 2 3 4 56 7 8 91011>>

  /packages/apps/Camera2/src/com/android/camera/
FocusOverlayManager.java 134 public FocusOverlayManager(ComboPreferences preferences, String[] defaultFocusModes,
139 mPreferences = preferences;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationSyncDisabledTipView.java 40 import com.android.mail.preferences.AccountPreferences;
41 import com.android.mail.preferences.MailPrefs;
ConversationListView.java 28 import com.android.mail.preferences.AccountPreferences;
29 import com.android.mail.preferences.MailPrefs;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
ResourceManagerBuilder.java 23 import com.android.ide.eclipse.adt.internal.preferences.AdtPrefs;
24 import com.android.ide.eclipse.adt.internal.preferences.AdtPrefs.BuildVerbosity;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
BuildPreferencePage.java 17 package com.android.ide.eclipse.adt.internal.preferences;
20 import com.android.ide.eclipse.adt.internal.preferences.AdtPrefs.BuildVerbosity;
AdtPrefs.java 17 package com.android.ide.eclipse.adt.internal.preferences;
30 import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
169 // Note: this is a hack that does not change the preferences, so if the user
170 // looks at Window > Preferences > Android, the path will be the preferences
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
FlyoutControlComposite.java 89 public FlyoutControlComposite(Composite parent, int style, IFlyoutPreferences preferences) {
91 m_preferences = preferences;
276 * Applies the given preferences into the preferences of this flyout
280 * @param preferences the preferences to apply
282 public void apply(IFlyoutPreferences preferences) {
283 m_preferences.setDockLocation(preferences.getDockLocation());
284 m_preferences.setState(preferences.getState());
285 m_preferences.setWidth(preferences.getWidth())
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_prefs.cc 23 // Additional preferences keys
47 // object stored in the Preferences file. The extensions are stored by ID.
102 // Preferences that hold which permissions the user has granted the extension.
113 // A preference that contains any extension-controlled preferences.
114 const char kPrefPreferences[] = "preferences";
151 DictionaryValue* preferences = NULL; local
153 if (!dict->GetDictionary(key, &preferences)) {
154 preferences = new DictionaryValue;
155 dict->Set(key, preferences);
157 return preferences;
1408 DictionaryValue* preferences = NULL; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java 86 import com.android.ide.eclipse.adt.internal.preferences.AdtPrefs;
121 import org.eclipse.jdt.internal.ui.preferences.BuildPathsPropertyPage;
221 /** Property key for the window preferences for the structure flyout */
224 /** Property key for the window preferences for the palette flyout */
376 PluginFlyoutPreferences preferences; local
377 preferences = new PluginFlyoutPreferences(preferenceStore, PREF_PALETTE);
378 preferences.initializeDefaults(DOCK_WEST, STATE_OPEN, 200);
379 mPaletteComposite = new FlyoutControlComposite(parent, SWT.NONE, preferences);
397 preferences = new PluginFlyoutPreferences(preferenceStore, PREF_STRUCTURE);
398 preferences.initializeDefaults(DOCK_EAST, STATE_OPEN, 300)
1103 PluginFlyoutPreferences preferences; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/preference/
preference_api.cc 316 // Also store in persisted Preferences file to recover after a
429 const DictionaryValue* preferences = NULL; local
430 if (!source_dict->GetDictionary(key, &preferences))
433 for (DictionaryValue::Iterator iter(*preferences);
  /external/robolectric/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();
  /packages/apps/Settings/src/com/android/settings/accessibility/
AccessibilitySettings.java 89 // Preferences
566 SharedPreferences preferences = getActivity().getPreferences(Context.MODE_PRIVATE); local
567 final boolean offerInstallService = !preferences.getBoolean(
581 preferences.edit().putBoolean(KEY_INSTALL_ACCESSIBILITY_SERVICE_OFFERED_ONCE,
  /external/chromium_org/chrome/browser/extensions/api/media_galleries_private/
media_galleries_private_api.cc 349 chrome::MediaGalleriesPreferences* preferences = local
354 extension_id(), preferences); local
  /external/chromium_org/ppapi/proxy/
ppapi_proxy_test.cc 289 const Preferences& prefs) {
457 ppapi::Preferences preferences; local
460 is_client, preferences);
  /external/chromium_org/tools/grit/grit/
tclib_unittest.py 102 'selecting an option from the preferences. Once indexed, this data\r\n'
111 'Preferences: Preferences and selection of databases to index are\r\n'
155 'you can get to the preferences, add the following line to your \r\n'
  /packages/apps/Camera/src/com/android/camera/
FocusOverlayManager.java 124 public FocusOverlayManager(ComboPreferences preferences, String[] defaultFocusModes,
129 mPreferences = preferences;
  /packages/apps/LegacyCamera/src/com/android/camera/
FocusManager.java 100 public FocusManager(ComboPreferences preferences, String[] defaultFocusModes) {
101 mPreferences = preferences;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AidlProcessor.java 24 import com.android.ide.eclipse.adt.internal.preferences.AdtPrefs;
25 import com.android.ide.eclipse.adt.internal.preferences.AdtPrefs.BuildVerbosity;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLTraceOptionsDialog.java 22 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
23 import org.eclipse.core.runtime.preferences.InstanceScope;
386 // ignore issues while persisting 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/ui/
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...]
  /packages/apps/Browser/src/com/android/browser/
WebStorageSizeManager.java 19 import com.android.browser.preferences.WebsiteSettingsFragment;
  /packages/apps/Browser/src/com/android/browser/preferences/
GeneralPreferencesFragment.java 17 package com.android.browser.preferences;
71 // Load the XML preferences file
84 // We aren't attached, so don't accept preferences changes from the
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastSettings.java 100 * New fragment-style implementation of preferences.
108 // Load the preferences from an XML resource
109 addPreferencesFromResource(R.xml.preferences);
130 // Emergency alert preference category (general and CMAS preferences).
  /packages/apps/Email/src/com/android/email/activity/setup/
GeneralPreferences.java 32 import com.android.email.Preferences;
35 import com.android.mail.preferences.MailPrefs;
48 private Preferences mPreferences;
71 getPreferenceManager().setSharedPreferencesName(Preferences.PREFERENCES_FILE);
73 // Load the preferences from an XML resource
142 mPreferences = Preferences.getPreferences(getActivity());
  /packages/apps/Settings/src/com/android/settings/accounts/
ChooseAccountActivity.java 116 // Skip preferences for authorities not specified. If no authorities specified,
234 public boolean onPreferenceTreeClick(PreferenceScreen preferences, Preference preference) {

Completed in 1891 milliseconds

1 2 3 4 56 7 8 91011>>