HomeSort by relevance Sort by last modified time
    Searched refs:activeProfile (Results 1 - 2 of 2) sorted by null

  /packages/apps/Browser/src/com/android/browser/
AutoFillSettingsFragment.java 232 AutoFillProfile activeProfile = mSettings.getAutoFillProfile();
233 if (activeProfile != null) {
234 mFullNameEdit.setText(activeProfile.getFullName());
235 mEmailEdit.setText(activeProfile.getEmailAddress());
236 mCompanyEdit.setText(activeProfile.getCompanyName());
237 mAddressLine1Edit.setText(activeProfile.getAddressLine1());
238 mAddressLine2Edit.setText(activeProfile.getAddressLine2());
239 mCityEdit.setText(activeProfile.getCity());
240 mStateEdit.setText(activeProfile.getState());
241 mZipEdit.setText(activeProfile.getZipCode())
    [all...]
  /packages/apps/Phone/src/com/android/phone/sip/
SipSettings.java 324 for (SipProfile activeProfile : activeList) {
325 SipProfile profile = getProfileFromList(activeProfile);
327 mSipProfileList.add(activeProfile);
329 profile.setCallingUid(activeProfile.getCallingUid());
334 private SipProfile getProfileFromList(SipProfile activeProfile) {
336 if (p.getUriString().equals(activeProfile.getUriString())) {

Completed in 54 milliseconds