Lines Matching full:address
29 * The address list.
49 $('autofill-add-address').onclick = function(event) {
61 * Creates, decorates and initializes the address list.
65 this.addressList_ = $('address-list');
82 * Shows the 'Add address' overlay, specifically by loading the
83 * 'Edit address' overlay, emptying the input fields and modifying the
108 * Updates the data model for the address list with the values from
126 * Removes the Autofill address represented by |guid|.
127 * @param {String} guid The GUID of the address to remove.
144 * Requests profile data for the address represented by |guid| from the
147 * @param {String} guid The GUID of the address to edit.
166 * Shows the 'Edit address' overlay, using the data in |address| to fill the
167 * input fields. |address| is a list with one item, an associative array
168 * that contains the address data.
171 showEditAddressOverlay_: function(address) {
174 AutofillEditAddressOverlay.loadAddress(address);
180 * fill the input fields. |address| is a list with one item, an associative
216 AutofillOptions.editAddress = function(address) {
217 AutofillOptions.getInstance().showEditAddressOverlay_(address);