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

1 2 3 4 56 7 8

  /packages/apps/Settings/src/com/android/settings/
ChooseLockGeneric.java 350 Preference pref = entries.getPreference(i); local
351 if (pref instanceof PreferenceScreen) {
352 final String key = pref.getKey();
370 entries.removePreference(pref);
372 pref.setSummary(R.string.unlock_set_unlock_disabled_summary);
373 pref.setEnabled(false);
SettingsPreferenceFragment.java 280 Preference pref = findPreference(key); local
281 if (pref != null) {
282 getPreferenceScreen().removePreference(pref);
ApnEditor.java 757 Preference pref = findPreference(key); local
758 if (pref != null) {
759 if (pref.equals(mPassword)){
760 pref.setSummary(starify(sharedPreferences.getString(key, "")));
761 } else if (pref.equals(mCarrierEnabled) || pref.equals(mBearerMulti)) {
764 pref.setSummary(checkNull(sharedPreferences.getString(key, "")));
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSyncSettings.java 355 Preference pref = getPreferenceScreen().getPreference(i); local
356 if (! (pref instanceof SyncStateSwitchPreference)) {
359 SyncStateSwitchPreference syncPref = (SyncStateSwitchPreference) pref;
414 Preference pref = getPreferenceScreen().getPreference(i); local
415 if (! (pref instanceof SyncStateSwitchPreference)) {
418 SyncStateSwitchPreference syncPref = (SyncStateSwitchPreference) pref;
  /packages/apps/Settings/src/com/android/settings/wfd/
WifiDisplaySettings.java 367 SwitchPreference pref = new SwitchPreference(getActivity()) { local
375 pref.setTitle(R.string.wifi_display_listen_mode);
376 pref.setChecked(mListen);
377 mCertCategory.addPreference(pref);
380 pref = new SwitchPreference(getActivity()) {
392 pref.setTitle(R.string.wifi_display_autonomous_go);
393 pref.setChecked(mAutoGO);
394 mCertCategory.addPreference(pref);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEN.java 322 SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(this); local
325 mAutoCaps = pref.getBoolean("auto_caps", true);
337 fitInputType(pref, attribute);
342 mTextCandidatesViewManager.setPreferences(pref);
    [all...]
DefaultSoftKeyboard.java 609 SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(parent); local
610 String skin = pref.getString("keyboard_skin",
739 public void setPreferences(SharedPreferences pref, EditorInfo editor) {
743 if (pref.getBoolean("key_vibration", false)) {
754 if (pref.getBoolean("key_sound", false)) {
767 mKeyboardView.setPreviewEnabled(pref.getBoolean("popup_preview", true));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ViewMetadataRepository.java 218 for (FillPreference pref : FillPreference.values()) {
219 fillTypes.put(pref.toString().toLowerCase(Locale.US), pref); local
    [all...]
  /device/generic/goldfish/qemud/
qemud.c 761 FDHandler** pref; member in struct:FDHandler
785 f->pref[0] = f->next;
787 f->next->pref = f->pref;
795 f->pref = list;
798 f->next->pref = &f->next;
1229 Client** pref; member in struct:Client
1262 c->pref[0] = c->next;
1264 c->next->pref = c->pref;
    [all...]
  /external/boringssl/src/ssl/
t1_lib.c 432 const uint16_t *curves, *peer_curves, *pref, *supp; local
451 pref = curves;
456 pref = peer_curves;
464 if (pref[i] == supp[j]) {
465 return tls1_ec_curve_id2nid(pref[i]);
2383 const uint8_t *pref, *allow, *conf; local
    [all...]
  /external/dnsmasq/src/
option.c 258 { 'm', ARG_DUP, "host_name,target,pref", gettext_noop("Specify an MX record."), NULL },
1179 int pref = 1; local
2368 int order, pref; local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-indic.cc 391 PREF,
535 would_substitute_feature_t pref; member in struct:indic_shape_plan_t
563 indic_plan->pref.init (&plan->map, HB_TAG('p','r','e','f'), zero_context);
605 (indic_plan->pref.would_substitute (glyphs , 2, face) ||
606 indic_plan->pref.would_substitute (glyphs+1, 2, face)))
608 indic_plan->pref.would_substitute (glyphs+1, 1, face)))
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ccaltst.c 1575 UEnumeration *all, *pref; local
    [all...]
  /external/libxml2/
catalog.c 1225 xmlCatalogPrefer pref = XML_CATA_PREFER_NONE; local
    [all...]
xmlIO.c 3975 xmlCatalogAllow pref; local
    [all...]
tree.c 8497 const xmlChar *pref; local
    [all...]
  /external/toybox/toys/pending/
ip.c 2124 uint32_t pref; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config.c 3889 struct p2p_channel *pref = NULL, *n; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
PrivateVolumeSettings.java 235 private void addPreference(PreferenceGroup group, Preference pref) {
236 pref.setOrder(Preference.DEFAULT_ORDER);
237 group.addPreference(pref);
288 final Preference pref = new Preference(getActivity()); local
289 pref.setTitle(titleRes);
290 return pref;
393 public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference pref) {
396 final int userId = (pref instanceof StorageItemPreference ?
397 ((StorageItemPreference)pref).userHandle : -1);
398 final int itemTitleId = pref.getTitleRes()
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
NotificationSettings.java 194 Preference pref = findPreference(key); local
195 if (pref != null) {
196 pref.setEnabled(!isRestricted);
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSettings.java 672 final Preference pref = (Preference) accessPoint.getTag(); local
673 pref.setOrder(index++);
674 getPreferenceScreen().addPreference(pref);
    [all...]
  /packages/services/Telephony/src/com/android/phone/
MobileNetworkSettings.java 149 Preference pref = getPreferenceScreen().findPreference(BUTTON_4G_LTE_KEY);
150 if (pref != null) pref.setEnabled(enabled && hasActiveSubscriptions());
668 Preference pref = prefSet.findPreference(BUTTON_4G_LTE_KEY); local
669 if (pref != null) {
670 prefSet.removePreference(pref);
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 1948 void Assembler::pref(int32_t hint, const MemOperand& rs) { function in class:v8::Assembler
    [all...]
  /hardware/ril/reference-ril/
reference-ril.c 111 MDM_GSM | MDM_WCDMA, // 0 - GSM / WCDMA Pref
126 MDM_GSM | (MDM_WCDMA << 8), // 0 - GSM / WCDMA Pref
1188 int *pref = (int *)data; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterService.java 1720 SharedPreferences pref = getSharedPreferences(PHONEBOOK_ACCESS_PERMISSION_PREFERENCE_FILE, local
1732 SharedPreferences pref = getSharedPreferences(PHONEBOOK_ACCESS_PERMISSION_PREFERENCE_FILE, local
1745 SharedPreferences pref = getSharedPreferences(MESSAGE_ACCESS_PERMISSION_PREFERENCE_FILE, local
1757 SharedPreferences pref = getSharedPreferences(MESSAGE_ACCESS_PERMISSION_PREFERENCE_FILE, local
1770 SharedPreferences pref = getSharedPreferences(SIM_ACCESS_PERMISSION_PREFERENCE_FILE, local
1782 SharedPreferences pref = getSharedPreferences(SIM_ACCESS_PERMISSION_PREFERENCE_FILE, local
    [all...]

Completed in 540 milliseconds

1 2 3 4 56 7 8