HomeSort by relevance Sort by last modified time
    Searched full:pref (Results 126 - 150 of 1229) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/services/Telephony/src/com/android/phone/sip/
SipEditor.java 309 EditTextPreference pref = (EditTextPreference) key.preference; local
310 return TextUtils.isEmpty(pref.getText())
311 || pref.getSummary().equals(getString(key.defaultSummary));
320 EditTextPreference pref = (EditTextPreference) p; local
328 pref.setText(getDefaultDisplayName());
335 pref.setText(getString(R.string.default_port));
339 firstEmptyFieldTitle = pref.getTitle();
433 public boolean onPreferenceChange(Preference pref, Object newValue) {
440 if (pref instanceof CheckBoxPreference) {
446 pref.setSummary(getPreferenceKey(pref).defaultSummary)
512 ListPreference pref = (ListPreference) local
519 CheckBoxPreference pref = (CheckBoxPreference) key.preference; local
621 Preference pref = group.getPreference(i); local
    [all...]
  /external/chromium/chrome/browser/resources/options/
browser_options.html 8 <input type="radio" name="startup" pref="session.restore_on_startup"
15 <input type="radio" name="startup" pref="session.restore_on_startup"
23 pref="session.restore_on_startup" value="4"
69 <input id="toolbarShowHomeButton" pref="browser.show_home_button"
77 pref="bookmark_bar.show_on_all_tabs"
96 pref="instant.enabled">
  /external/chromium/chrome/browser/ui/views/location_bar/
keyword_hint_view.cc 122 gfx::Size pref; local
125 pref = leading_label_->GetPreferredSize();
126 leading_label_->SetBounds(x, 0, pref.width(), height());
128 x += pref.width() + kTabButtonBitmap->width();
129 pref = trailing_label_->GetPreferredSize();
130 trailing_label_->SetBounds(x, 0, pref.width(), height());
  /external/chromium_org/chrome/browser/extensions/api/preference/
preference_helpers.cc 62 const PrefService::Preference* pref = local
64 CHECK(pref);
66 if (!pref->IsExtensionModifiable())
116 // a) incognito pref changes are visible only to the incognito tabs
117 // b) regular pref changes are visible only to the incognito tabs if the
118 // incognito pref has not alredy been set
  /external/chromium_org/chrome/browser/prefs/
pref_metrics_service.h 72 // Register callbacks for synced pref changes.
75 // Registers a histogram logging callback for a synced pref change.
80 // Generic callback to observe a synced pref change.
86 // Callback for a boolean pref change histogram.
90 // Callback for an integer pref change histogram.
107 // NULL which will result in the unique hash representing NULL for the pref
pref_service_syncable.h 49 // Creates an incognito copy of the pref service that shares most pref stores
50 // but uses a fresh non-persistent overlay for the user pref store and an
51 // individual extension pref store (to cache the effective extension prefs for
70 // Returns true if the pref under the given name is pulled down from sync.
81 // Do not call this after having derived an incognito or per tab pref service.
synced_pref_change_registrar.h 17 // it should be used whenever it's necessary to determine whether a pref change
30 // Register an observer callback for sync change events on the pref at
31 // |path|. Only one callback may be registered per pref.
  /external/clang/test/Index/
complete-objc-message-id.m 64 // RUN: c-index-test -code-completion-at=%s:31:13 %s | FileCheck -check-prefix=CHECK-SELECTOR-PREF %s
65 // CHECK-SELECTOR-PREF: ObjCClassMethodDecl:{ResultType id}{TypedText alloc} (32)
66 // CHECK-SELECTOR-PREF: ObjCClassMethodDecl:{ResultType Class}{TypedText class} (35)
67 // CHECK-SELECTOR-PREF: ObjCClassMethodDecl:{ResultType id}{TypedText init} (35)
68 // CHECK-SELECTOR-PREF: ObjCClassMethodDecl:{ResultType id}{TypedText new} (35)
69 // CHECK-SELECTOR-PREF: ObjCClassMethodDecl:{ResultType Class}{TypedText superclass} (35)
  /external/iproute2/doc/actions/
gact-usage 56 filter protocol ip pref 6 u32 filter protocol ip pref 6 u32 fh 800: ht divisor 1filter protocol ip pref 6 u32 fh 800::800 order 2048 key ht 800 bkt 0 flowid 1:16 (rule hit 20 success 20)
72 filter protocol ip pref 6 u32 filter protocol ip pref 6 u32 fh 800: ht divisor 1filter protocol ip pref 6 u32 fh 800::800 order 2048 key ht 800 bkt 0 flowid 1:16 (rule hit 20 success 20)
  /packages/apps/Settings/src/com/android/settings/net/
DataUsageMeteredSettings.java 98 final MeteredPreference pref = new MeteredPreference(context, template); local
99 pref.setTitle(tele.getNetworkOperatorName());
100 return pref;
106 final MeteredPreference pref = new MeteredPreference(context, template); local
107 pref.setTitle(removeDoubleQuotes(networkId));
108 return pref;
  /external/chromium/chrome/browser/prefs/
pref_service_mock_builder.h 39 // Set up policy pref stores using the given policy provider.
49 // Specifies to use an actual command-line backed command-line pref store.
52 // Specifies to use an actual file-backed user pref store.
pref_notifier_impl.cc 19 // Verify that there are no pref observers when we shut down.
24 LOG(WARNING) << "pref observer found at shutdown " << it->first;
35 // Get the pref observer list associated with the path.
55 // Ok, safe to add the pref observer.
scoped_user_pref_update.h 51 // Cache of value from user pref store (set between Get() and Notify() calls).
74 // - is already in the user pref store, or
75 // - is (silently) created and written to the user pref store if none existed
81 // The ownership of the return value remains with the user pref store.
  /external/chromium_org/base/prefs/
pref_notifier_impl.h 30 // If the pref at the given path changes, we call the observer's
47 // A map from pref names to a list of observers. Observers get fired in the
58 // For the given pref_name, fire any observer of the pref. Virtual so it can
pref_notifier_impl.cc 22 // Verify that there are no pref observers when we shut down.
27 LOG(WARNING) << "pref observer found at shutdown " << it->first;
43 // Get the pref observer list associated with the path.
54 // Add the pref observer. ObserverList will DCHECK if it already is
scoped_user_pref_update.h 53 // Cache of value from user pref store (set between Get() and Notify() calls).
76 // - is already in the user pref store, or
77 // - is (silently) created and written to the user pref store if none existed
83 // The ownership of the return value remains with the user pref store.
  /external/chromium_org/chrome/browser/chromeos/audio/
audio_devices_pref_handler_impl.h 61 // previous global pref value to the new per device pref value for the
67 // Notifies the AudioPrefObserver for audio policy pref changes.
  /external/chromium_org/chrome/browser/chromeos/login/
multi_profile_user_controller.h 28 // multi-profiles session. It caches the multiprofile user behavior pref backed
43 // Starts to observe the multiprofile user behavior pref of the given profile.
65 // Invoked when user behavior pref value changes.
default_pinned_apps_field_trial.cc 16 // Name of a local state pref to store the list of users that participate
  /external/chromium_org/chrome/browser/resources/options/chromeos/
accounts_options.html 15 <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI"
27 pref="cros.accounts.showUserNamesOnSignIn" type="checkbox">
37 <input id="useWhitelistCheck" pref="cros.accounts.allowGuest"
  /packages/apps/Browser/src/com/android/browser/preferences/
PrivacySecurityPreferencesFragment.java 48 public boolean onPreferenceChange(Preference pref, Object objValue) {
49 if (pref.getKey().equals(PreferenceKeys.PREF_PRIVACY_CLEAR_HISTORY)
54 pref.getKey()));
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
CameraPicker.java 52 public void initialize(ListPreference pref) {
53 mPreference = pref;
54 mCameras = pref.getEntryValues();
  /system/core/libcutils/tests/memset_mips/
memset_cmips.S 32 * memset.S, version "64h" with 1 cache line horizon for "pref 30" and 14 nops
105 # "pref 30,64(a0)" prefetch, which can be used as "pref 30,0(a0)" after
107 # For "a2" below 160 there will be no such "pref 30 safe" 64-byte chunk.
110 bgtz v1,.Lloop16w_nopref30 # skip "pref 30,0(a0)"
111 subu t7,a2,96 # subtract "pref 30 unsafe" region
112 # below we have at least 1 64-byte chunk which is "pref 30 safe"
118 # Don't use "pref 30,0(a0)" for a0 in a "middle" of a cache line
119 # pref 30,0(a0)
120 # Here we are in the region, where it is safe to use "pref 30,64(a0)
    [all...]
  /cts/tests/tests/preference2/src/android/preference2/cts/
PreferenceGroupTest.java 44 mPreferenceGroup = (PreferenceGroup) mActivity.findPreference("pref-group");
57 Preference preference = mActivity.findPreference("pref-group");
88 mActivity.findPreference("custom-pref-group");
94 mActivity.findPreference("custom-pref-group");
  /external/chromium/chrome/browser/resources/options/chromeos/
system_options.html 12 pref="cros.system.timezone"></select>
19 pref="settings.clock.use_24hour_clock"
36 pref="settings.touchpad.sensitivity2" class="touch-slider">
52 pref="settings.touchpad.enable_tap_to_click"

Completed in 1133 milliseconds

1 2 3 4 56 7 8 91011>>