/development/samples/ApiDemos/res/xml/ |
fragmented_preferences.xml | 17 <!-- This is a primitive example showing the different types of preferences available. --> 18 <!-- BEGIN_INCLUDE(preferences) --> 60 preferences. If running in a large screen, they can be embedded 61 inside of the overall preferences UI. --> 71 activity, switching out of the current preferences UI. --> 102 <!-- END_INCLUDE(preferences) -->
|
preference_headers.xml | 17 <!-- This is a primitive example showing the different types of preferences available. --> 25 android:summary="An example of some preferences." /> 30 android:summary="Some other preferences you can see.">
|
preference_dependencies.xml | 17 <!-- This is a primitive example showing how some preferences can depend on other preferences. -->
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
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.
|
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();
|
/external/chromium/chrome/browser/sync/engine/ |
download_updates_command_unittest.cc | 50 enabled_types[syncable::PREFERENCES] = true; 95 SCOPED_TRACE("Preferences only."); 97 enabled_types[syncable::PREFERENCES] = true; 112 types.insert(syncable::PREFERENCES); 124 types.insert(syncable::PREFERENCES); 129 source.types[syncable::PREFERENCES] = "preferences_payload";
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
GeneralPreferences.java | 28 import com.android.email.Preferences; 38 private static final String PREFERENCE_KEY_REPLY_ALL = Preferences.REPLY_ALL; 41 private Preferences mPreferences; 51 getPreferenceManager().setSharedPreferencesName(Preferences.PREFERENCES_FILE); 53 // Load the preferences from an XML resource 103 mPreferences = Preferences.getPreferences(getActivity());
|
/external/chromium/net/tools/spdyshark/ |
README | 46 Choose Edit > Preferences to bring up the Preferences dialog. 48 Exand "Protocols" in the left pane of the preferences dialog and
|
/frameworks/base/core/java/android/preference/ |
PreferenceScreen.java | 38 * points to an instance of this class to show the preferences. To instantiate 43 * and is not shown (only the contained preferences are shown). 45 * serves as the gateway to another screen of preferences (either by showing 46 * another screen of preferences as a {@link Dialog} or via a 66 ... other preferences here ... 72 * show preferences "WiFi" (which can be used to quickly enable/disable WiFi) 74 * clicked will show another screen of preferences such as "Prefer WiFi" (and 75 * the other preferences that are children of the "second_preferencescreen" tag). 98 * or {@link PreferenceFragment} to show the preferences contained in this 121 * @return An adapter that contains the preferences contained in this {@link PreferenceScreen} [all...] |
PreferenceFragment.java | 35 * lists. These preferences will 42 * Furthermore, the preferences shown will follow the visual style of system 43 * preferences. It is easy to create a hierarchy of preferences (that can be 45 * use this fragment (as a superclass) to deal with preferences in applications. 49 * denote a screen break--that is the preferences contained within subsequent 56 * preferences in an XML file via {@link Activity} meta-data 65 * have preferences, use {@link #addPreferencesFromIntent}. Each 84 * {@sample development/samples/ApiDemos/res/xml/preferences.xml preferences} [all...] |
/external/apache-harmony/prefs/src/test/resources/prefs/java/util/prefs/ |
userprefs.xml | 22 <!DOCTYPE preferences SYSTEM 'http://java.sun.com/dtd/preferences.dtd'> 24 <preferences EXTERNAL_XML_VERSION="1.0"> 76 </preferences>
|
/external/chromium/chrome/browser/notifications/ |
notifications_prefs_cache.h | 18 // Class which caches notification preferences. 20 // of the profile preferences are initialized. Once is_initialized() is set, 60 // Helper functions which read preferences. 67 // Storage of the actual preferences.
|
/external/chromium/chrome/browser/sync/protocol/ |
preference_specifics.proto | 5 // Sync protocol datatype extension for preferences.
|
/external/webkit/Source/WebCore/manual-tests/ |
focusringcolor-change-on-theme-change.html | 4 <li>Change the system focus ring color.<br>On OS X you can do this by going to System Preferences->Appearance and selecting another value in the Appearance popup menu.</li>
|
/libcore/luni/src/test/resources/prefs/java/util/prefs/ |
userprefs.xml | 22 <!DOCTYPE preferences SYSTEM 'http://java.sun.com/dtd/preferences.dtd'> 24 <preferences EXTERNAL_XML_VERSION="1.0"> 76 </preferences>
|
/external/chromium/chrome/browser/resources/options/ |
pref_ui.js | 7 var Preferences = options.Preferences; 51 Preferences.getInstance().addEventListener( 73 Preferences.setIntegerPref(self.pref, 77 Preferences.setBooleanPref(self.pref, 129 Preferences.getInstance().addEventListener(this.pref, 146 Preferences.setBooleanPref(self.pref, 149 Preferences.setIntegerPref(self.pref, 184 Preferences.getInstance().addEventListener(this.pref, 196 Preferences.setIntegerPref(self.pref, self.value, self.metric) [all...] |
/external/webkit/Tools/DumpRenderTree/mac/ |
DumpRenderTree.mm | 426 WebPreferences *preferences = [WebPreferences standardPreferences]; 428 [preferences setAllowUniversalAccessFromFileURLs:YES]; 429 [preferences setAllowFileAccessFromFileURLs:YES]; 430 [preferences setStandardFontFamily:@"Times"]; 431 [preferences setFixedFontFamily:@"Courier"]; 432 [preferences setSerifFontFamily:@"Times"]; 433 [preferences setSansSerifFontFamily:@"Helvetica"]; 434 [preferences setCursiveFontFamily:@"Apple Chancery"]; 435 [preferences setFantasyFontFamily:@"Papyrus"]; 436 [preferences setDefaultFontSize:16] [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/preference/ |
FragmentPreferences.java | 47 // Load the preferences from an XML resource 48 addPreferencesFromResource(R.xml.preferences);
|
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/ |
ImePreferences.java | 25 * Displays the IME preferences inside the input method setting. 51 // Load the preferences from an XML resource
|
/external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/ |
PreferenceChangeListenerTest.java | 21 import java.util.prefs.Preferences; 42 l.preferenceChange(new PreferenceChangeEvent(Preferences.userRoot(),
|
PreferencesProviderTest.java | 20 import java.util.prefs.Preferences; 29 assertEquals(MockAbstractPreferences.class, Preferences.systemRoot().getClass());
|
/external/chromium/chrome/browser/net/ |
net_pref_observer.h | 21 // Monitors network-related preferences for changes and applies them. 40 // If |pref_name| is NULL, all monitored preferences will be applied.
|
ssl_config_service_manager.h | 20 // of the manager. Get SSL preferences from local_state object. If SSL 21 // preferences don't exist in local_state object, then get the data from
|
/external/chromium/chrome/browser/prefs/ |
command_line_pref_store.h | 17 // This PrefStore keeps track of preferences set by command-line switches, 45 // corresponding preferences in this pref store.
|
proxy_prefs.h | 18 // Direct connection to the network, other proxy preferences are ignored. 32 // The system's proxy settings are used, other proxy preferences are
|