HomeSort by relevance Sort by last modified time
    Searched full:preference (Results 251 - 275 of 2308) sorted by null

<<11121314151617181920>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
CalibrationPreferenceActivity.java 8 import android.preference.PreferenceActivity;
  /development/samples/SoftKeyboard/src/com/android/inputmethodcommon/
InputMethodSettingsImpl.java 28 import android.preference.Preference;
29 import android.preference.Preference.OnPreferenceClickListener;
30 import android.preference.PreferenceScreen;
40 private Preference mSubtypeEnablerPreference;
64 mSubtypeEnablerPreference = new Preference(context);
68 public boolean onPreferenceClick(Preference preference) {
  /external/chromium/chrome/browser/extensions/
extension_content_settings_apitest.cc 22 const PrefService::Preference* pref = pref_service->FindPreference(
40 // Setting an incognito preference should not create an incognito profile.
45 const PrefService::Preference* pref =
73 const PrefService::Preference* pref = pref_service->FindPreference(
  /external/chromium/chrome/common/extensions/docs/examples/extensions/buildbot/
options.html 13 // saved preference.
  /external/chromium_org/base/prefs/
testing_pref_service.h 28 // Read the value of a preference from the managed layer. Returns NULL if the
29 // preference is not defined at the managed layer.
32 // Set a preference on the managed layer and fire observers if the preference
36 // Clear the preference on the managed layer and fire observers if the
37 // preference has been defined previously.
62 // Reads the value of the preference indicated by |path| from |pref_store|.
63 // Returns NULL if the preference was not found.
71 // Removes the preference identified by |path| from |pref_store|.
  /external/chromium_org/chrome/browser/extensions/api/preference/
preference_api.h 46 // The class containing the implementation for extension-controlled preference
54 // Functions for manipulating preference values that are controlled by the
58 // Set a new extension-controlled preference value.
65 // Remove an extension-controlled preference value.
71 // preference.
77 // preference. If |from_incognito| is not NULL, looks at incognito preferences
118 // Store extension controlled preference values in the |value_map|,
157 // Converts the representation of a preference as seen by the extension
168 // Converts the representation of the preference as stored in the browser
  /external/chromium_org/chrome/browser/ui/
browser_ui_prefs.h 22 // Create a preference dictionary for the provided application name, in the
  /external/chromium_org/chrome/common/extensions/api/
preferences_private.json 13 "description": "If enabled, Google services can access the user's location. This preference's value is a boolean, defaulting to <code>false</code>."
  /external/chromium_org/chromeos/audio/
audio_pref_observer.h 16 // Interface for observing audio preference changes.
  /external/chromium_org/components/autofill/core/common/
autofill_pref_names.h 11 // Alphabetical list of preference names specific to the Autofill
  /external/chromium_org/sync/protocol/
preference_specifics.proto 17 // Properties of preference sync objects.
  /frameworks/base/core/res/res/layout/
preference.xml 17 <!-- Layout for a Preference in a PreferenceActivity. The
18 Preference is able to place a specific widget for its particular
63 <!-- Preference should place its actual preference widget here. -->
preference_information.xml 17 <!-- Layout for a Preference in a PreferenceActivity. The
18 Preference is able to place a specific widget for its particular
54 <!-- Preference should place its actual preference widget here. -->
preference_information_holo.xml 17 <!-- Layout for a Preference in a PreferenceActivity. The
18 Preference is able to place a specific widget for its particular
68 <!-- Preference should place its actual preference widget here. -->
  /frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
InputMethodSettingsImpl.java 22 import android.preference.Preference;
23 import android.preference.Preference.OnPreferenceClickListener;
24 import android.preference.PreferenceScreen;
34 private Preference mSubtypeEnablerPreference;
58 mSubtypeEnablerPreference = new Preference(context);
62 public boolean onPreferenceClick(Preference preference) {
  /packages/apps/Browser/src/com/android/browser/preferences/
WebViewPreview.java 22 import android.preference.Preference;
23 import android.preference.PreferenceManager;
31 public abstract class WebViewPreview extends Preference
  /packages/apps/Settings/res/layout/
custom_preference.xml 17 <!-- Custom layout almost same as original preference.xml in framework.
19 on the left side of the preference. -->
59 <!-- Preference should place its actual preference widget here. -->
  /packages/apps/Settings/src/com/android/settings/
PrivacySettings.java 29 import android.preference.CheckBoxPreference;
30 import android.preference.Preference;
31 import android.preference.PreferenceScreen;
96 Preference preference) {
97 if (preference == mBackup) {
103 } else if (preference == mAutoRestore) {
111 return super.onPreferenceTreeClick(preferenceScreen, preference);
DateTimeSettings.java 32 import android.preference.CheckBoxPreference;
33 import android.preference.ListPreference;
34 import android.preference.Preference;
35 import android.preference.PreferenceScreen;
69 private Preference mTimePref;
70 private Preference mTime24Pref;
72 private Preference mTimeZone;
73 private Preference mDatePref;
298 public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference)
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
InstalledAppDetailsTop.java 5 import android.preference.PreferenceActivity;
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
UsbSettings.java 26 import android.preference.CheckBoxPreference;
27 import android.preference.Preference;
28 import android.preference.PreferenceScreen;
97 // Make sure we reload the preference hierarchy since some of these settings
135 public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference) {
150 if (preference == mMtp && mMtp.isChecked()) {
152 } else if (preference == mPtp && mPtp.isChecked()) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryList.java 24 import android.preference.Preference;
25 import android.preference.PreferenceFragment;
26 import android.preference.PreferenceGroup;
129 * Create a single User Dictionary Preference object, with its parameters set.
131 * @return The corresponding preference.
133 protected Preference createUserDictionaryPreference(String locale, Activity activity) {
134 final Preference newPref = new Preference(getActivity());
  /packages/apps/Settings/src/com/android/settings/accounts/
ManageAccountsSettings.java 33 import android.preference.Preference;
34 import android.preference.PreferenceActivity;
35 import android.preference.PreferenceScreen;
137 public boolean onPreferenceTreeClick(PreferenceScreen preferences, Preference preference) {
138 if (preference instanceof AccountPreference) {
139 startAccountSettings((AccountPreference) preference);
194 Preference pref = getPreferenceScreen().getPreference(i);
234 Preference pref = getPreferenceScreen().getPreference(i)
327 final AccountPreference preference = local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionarySettingsFragment.java 30 import android.preference.Preference;
31 import android.preference.PreferenceFragment;
32 import android.preference.PreferenceGroup;
52 * Preference screen.
187 Log.e(TAG, "Could not find the preference group");
191 final Preference pref = prefScreen.getPreference(i);
199 Log.e(TAG, "Could not find the preference for a word list id " + id);
218 final Collection<? extends Preference> prefList =
234 for (Preference preference : prefList)
    [all...]
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
QuickLaunchSettings.java 29 import android.preference.Preference;
30 import android.preference.PreferenceActivity;
31 import android.preference.PreferenceGroup;
32 import android.preference.PreferenceScreen;
81 /** Preference category to hold the shortcut preferences. */
83 /** Mapping of a shortcut to its preference. */
195 public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference) {
196 if (!(preference instanceof ShortcutPreference)) return false
    [all...]

Completed in 2207 milliseconds

<<11121314151617181920>>