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

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

Completed in 332 milliseconds