Home | History | Annotate | Download | only in usb

Lines Matching defs:pref

65         RadioButtonPreference pref = (RadioButtonPreference) mProfilesContainer.findPreference(key);
66 if (pref == null) {
67 pref = new RadioButtonPreference(mProfilesContainer.getContext());
68 pref.setKey(key);
69 pref.setTitle(titleId);
70 pref.setOnClickListener(this);
71 mProfilesContainer.addPreference(pref);
73 return pref;
84 RadioButtonPreference pref;
87 pref = getProfilePreference(UsbBackend.usbFunctionsToString(option), title);
90 pref.setChecked(functions == option);
92 mProfilesContainer.removePreference(pref);