Home | History | Annotate | Download | only in wallet

Lines Matching refs:Address

21 // Server specified type for address with complete details.
26 Address* CreateAddressInternal(const base::DictionaryValue& dictionary,
69 DVLOG(1) << "Response from Google Wallet missing address lines";
96 Address* address = new Address(country_name_code,
110 address->set_is_complete_address(!is_minimal_address);
114 return address;
119 Address::Address() {}
121 Address::Address(const AutofillProfile& profile)
141 Address::Address(const std::string& country_name_code,
166 Address::~Address() {}
169 scoped_ptr<Address> Address::CreateAddressWithID(
174 return scoped_ptr<Address>();
176 return scoped_ptr<Address>(CreateAddressInternal(dictionary, object_id));
180 scoped_ptr<Address> Address::CreateAddress(
184 return scoped_ptr<Address>(CreateAddressInternal(dictionary, object_id));
188 scoped_ptr<Address> Address::CreateDisplayAddress(
193 return scoped_ptr<Address>();
199 return scoped_ptr<Address>();
205 return scoped_ptr<Address>();
248 DVLOG(1) << "Response from Google Wallet missing type/state of address";
254 scoped_ptr<Address> address(
255 new Address(country_code,
266 address->set_is_complete_address(address_state == kFullAddress);
268 return address.Pass();
271 scoped_ptr<base::DictionaryValue> Address::ToDictionaryWithID() const {
282 scoped_ptr<base::DictionaryValue> Address::ToDictionaryWithoutID() const {
302 base::string16 Address::DisplayName() const {
312 base::string16 Address::DisplayNameDetail() const {
321 base::string16 Address::DisplayPhoneNumber() const {
330 base::string16 Address::GetInfo(const AutofillType& type,
385 void Address::SetPhoneNumber(const base::string16& phone_number) {
390 bool Address::EqualsIgnoreID(const Address& other) const {
403 base::string16 Address::GetStreetAddressLine(size_t line) const {
408 bool Address::operator==(const Address& other) const {
414 bool Address::operator!=(const Address& other) const {