HomeSort by relevance Sort by last modified time
    Searched refs:Preference (Results 226 - 250 of 291) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/
HomeSettings.java 46 import android.preference.Preference;
47 import android.preference.PreferenceGroup;
287 private class HomeAppPreference extends Preference {
IccLockSettings.java 28 import android.preference.Preference;
29 import android.preference.PreferenceActivity;
30 import android.preference.PreferenceScreen;
31 import android.preference.SwitchPreference;
53 * Implements the preference screen to enable/disable ICC lock and
270 // There is one case where the dialog is popped up by the preference
271 // framework. In that case, let the preference framework store the
340 public void onPinEntered(EditPinPreference preference, boolean positiveResult) {
346 mPin = preference.getText()
    [all...]
ApnEditor.java 30 import android.preference.EditTextPreference;
31 import android.preference.ListPreference;
32 import android.preference.CheckBoxPreference;
33 import android.preference.Preference;
34 import android.preference.PreferenceActivity;
35 import android.preference.SwitchPreference;
52 Preference.OnPreferenceChangeListener {
344 * raw value of the protocol preference (e.g., "IPV4V6"). If unknown,
407 public boolean onPreferenceChange(Preference preference, Object newValue)
    [all...]
SettingsActivity.java 46 import android.preference.Preference;
47 import android.preference.PreferenceFragment;
48 import android.preference.PreferenceManager;
49 import android.preference.PreferenceScreen;
167 // extras that allow any preference activity to be launched as part of a wizard
390 public boolean onPreferenceStartFragment(PreferenceFragment caller, Preference pref) {
409 public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference) {
    [all...]
  /external/chromium_org/base/prefs/
pref_member.cc 42 // Check that the preference is registered.
75 const PrefService::Preference* pref =
  /external/chromium_org/chrome/browser/extensions/api/preference/
preference_api.cc 5 #include "chrome/browser/extensions/api/preference/preference_api.h"
18 #include "chrome/browser/extensions/api/preference/preference_api_constants.h"
19 #include "chrome/browser/extensions/api/preference/preference_helpers.h"
49 // Name of the preference referenced by the extension API JSON.
52 // Name of the preference in the PrefStores.
55 // Permission required to read and observe this preference.
60 // Permission required to write this preference.
68 "Internal error: Stored value for preference '*' cannot be converted "
166 DCHECK(pref_found) << "Preference not found.";
180 DCHECK(pref_found) << "Preference not found."
388 base::DictionaryValue* preference = update.Get(); local
410 base::DictionaryValue* preference = update.Get(); local
    [all...]
  /external/chromium_org/chrome/browser/prefs/
pref_functional_browsertest.cc 180 // Verify setting homepage preference to newtabpage across restarts. Part1
186 // Verify setting homepage preference to newtabpage across restarts. Part2
192 // Verify setting homepage preference to specific url. Part1
198 const PrefService::Preference* pref =
205 // Verify setting homepage preference to specific url. Part2
214 // Verify the security preference under privacy across restarts. Part1
231 // Verify the security preference under privacy across restarts. Part2
pref_metrics_service.cc 177 const PrefService::Preference* pref = prefs->FindPreference(path.c_str());
pref_model_associator.cc 33 return pref.GetSpecifics().priority_preference().preference();
35 return pref.GetSpecifics().preference();
51 // List of migrated preference name pairs. If a preference is migrated
52 // (meaning renamed) adding the old and new preference names here will ensure
54 // with the old name. Preference migration itself doesn't happen here. It may
106 VLOG(1) << "Associating preference " << pref_name;
109 const sync_pb::PreferenceSpecifics& preference = GetSpecifics(sync_pref); local
110 DCHECK(pref_name == preference.name() ||
112 preference.name() =
247 const sync_pb::PreferenceSpecifics& preference = GetSpecifics(*sync_iter); local
579 const PrefService::Preference* preference = local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/translate_internals/
translate_internals_handler.cc 204 const PrefService::Preference* pref = prefs->FindPreference(key.c_str());
  /frameworks/base/core/java/android/preference/
ListPreference.java 17 package android.preference;
29 * A {@link Preference} that displays a list of entries as
32 * This preference will store a string into the SharedPreferences. This string will be the value
55 /* Retrieve the Preference summary attribute since it's private
56 * in the Preference class.
59 com.android.internal.R.styleable.Preference, defStyleAttr, defStyleRes);
108 * The array to find the value to save for a preference when an entry from
110 * second item in this array will be saved to the preference.
112 * @param entryValues The array to be used as values to save for the preference.
127 * Returns the array of values to be saved for the preference
    [all...]
MultiCheckPreference.java 17 package android.preference;
31 * A {@link Preference} that displays a list of entries as
58 /* Retrieve the Preference summary attribute since it's private
59 * in the Preference class.
62 com.android.internal.R.styleable.Preference, 0, 0);
113 * The array to find the value to save for a preference when an entry from
115 * second item in this array will be saved to the preference.
117 * @param entryValues The array to be used as values to save for the preference.
144 * Returns the array of values to be saved for the preference.
198 * Sets the summary for this Preference with a CharSequence
    [all...]
SeekBarPreference.java 17 package android.preference;
32 public class SeekBarPreference extends Preference
183 * Suppose a client uses this preference type without persisting. We
219 * of MyPreference, a subclass of Preference.
DialogPreference.java 17 package android.preference;
39 * A base class for {@link Preference} objects that are
41 * actual preference controls.
50 public abstract class DialogPreference extends Preference implements
76 // Fallback on the regular title of the preference
261 * Prepares the dialog builder to be shown when the preference is clicked.
278 * Shows the dialog associated with this Preference. This is normally initiated
279 * automatically on clicking on the preference. Call this method if you need to
320 * Returns whether the preference needs to display a soft input method when the dialog
405 * Gets the dialog that is shown by this preference
    [all...]
PreferenceActivity.java 17 package android.preference;
63 * this class only allowed the display of a single set of preference; this
98 * <p>The following sample code shows a simple preference activity that
100 * of the activity itself as well as its two preference fragments is:</p>
102 * {@sample development/samples/ApiDemos/src/com/example/android/apis/preference/PreferenceWithHeaders.java
115 * <p>Note that this XML resource contains a preference screen holding another
177 // extras that allow any preference activity to be launched as part of a wizard
205 // --- State for old mode when showing a single preference list
219 * The starting request code given out to preference framework.
404 * Intent to launch when the preference is selected
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 65 enum Preference {
66 None, // No preference
300 /// Return target scheduling preference.
301 Sched::Preference getSchedulingPreference() const {
306 /// for different nodes. This function returns the preference (or none) for
308 virtual Sched::Preference getSchedulingPreference(SDNode *) const {
    [all...]
  /external/chromium_org/chrome/browser/policy/
policy_prefs_browsertest.cc 574 // The preference must have been registered.
575 const PrefService::Preference* pref =
718 // The preference must have been registered.
719 const PrefService::Preference* pref =
  /packages/apps/Settings/src/com/android/settings/print/
PrintSettingsFragment.java 37 import android.preference.Preference;
38 import android.preference.PreferenceCategory;
39 import android.preference.PreferenceScreen;
217 PreferenceScreen preference = getPreferenceManager().createPreferenceScreen( local
221 preference.setTitle(title);
226 preference.setKey(componentName.flattenToString());
228 preference.setOrder(i);
229 preference.setFragment(PrintServiceSettingsFragment.class.getName());
230 preference.setPersistent(false)
381 PreferenceScreen preference = getPreferenceManager() local
    [all...]
  /external/chromium_org/chrome/browser/importer/
profile_writer.cc 111 const PrefService::Preference* pref = prefs->FindPreference(prefs::kHomePage);
  /external/chromium_org/chrome/browser/net/
pref_proxy_config_tracker_impl.cc 89 // Note: If a switch between a preference proxy configuration and the system
231 const PrefService::Preference* pref =
286 // Fall back to system settings if the mode preference is invalid.
  /external/chromium_org/components/metrics/
metrics_state_manager_unittest.cc 144 const PrefService::Preference* low_entropy_pref =
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
LocationActivity.java 38 import android.preference.Preference;
  /external/chromium_org/components/autofill/core/browser/
autofill_manager.cc 237 const PrefService::Preference* pref =
246 const PrefService::Preference* pref_accessed =
249 const PrefService::Preference* pref_enabled =
    [all...]
  /external/chromium_org/chrome/browser/chromeos/net/
onc_utils.cc 390 const PrefService::Preference* preference = local
392 if (!preference) {
393 VLOG(2) << "No preference " << pref_name;
394 // The preference may not exist in tests.
398 // User prefs are not stored in this Preference yet but only the policy.
405 if (preference->IsDefaultValue()) {
406 VLOG(2) << "Preference has no recommended or mandatory value.";
410 VLOG(2) << "Preference with policy found.";
411 const base::Value* onc_policy_value = preference->GetValue()
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_management.cc 30 "Malformed extension management preference.";
40 // sub-dictionary in extension management preference and |scope| represents
220 // Allow user to use preference to block certain extensions. Note that policy
260 // Settings from new preference have higher priority over legacy ones.
314 LOG(WARNING) << "Invalid URL pattern in for preference "
342 // Parse new extension management preference.
372 const PrefService::Preference* pref =

Completed in 2458 milliseconds

1 2 3 4 5 6 7 8 91011>>