/external/chromium/chrome/browser/autofill/ |
H A D | home_phone_number.cc | 9 HomePhoneNumber::HomePhoneNumber(const HomePhoneNumber& phone) argument 10 : PhoneNumber(phone) { 15 HomePhoneNumber& HomePhoneNumber::operator=(const HomePhoneNumber& phone) { argument 16 PhoneNumber::operator=(phone);
|
H A D | home_phone_number.h | 16 HomePhoneNumber(const HomePhoneNumber& phone); 19 HomePhoneNumber& operator=(const HomePhoneNumber& phone);
|
H A D | autofill_common_test.h | 35 const char* phone, const char* fax); 42 const char* phone, const char* fax);
|
H A D | autofill_type_unittest.cc | 30 AutofillType phone(PHONE_HOME_NUMBER); 31 EXPECT_EQ(PHONE_HOME_NUMBER, phone.field_type()); 32 EXPECT_EQ(AutofillType::PHONE_HOME, phone.group()); 33 EXPECT_EQ(AutofillType::PHONE_NUMBER, phone.subgroup());
|
H A D | autofill_common_test.cc | 39 const char* phone, const char* fax) { 51 check_and_set(profile, PHONE_HOME_WHOLE_NUMBER, phone); 60 const char* phone, const char* fax) { 65 phone, fax); 34 SetProfileInfo(AutofillProfile* profile, const char* first_name, const char* middle_name, const char* last_name, const char* email, const char* company, const char* address1, const char* address2, const char* city, const char* state, const char* zipcode, const char* country, const char* phone, const char* fax) argument 55 SetProfileInfoWithGuid(AutofillProfile* profile, const char* guid, const char* first_name, const char* middle_name, const char* last_name, const char* email, const char* company, const char* address1, const char* address2, const char* city, const char* state, const char* zipcode, const char* country, const char* phone, const char* fax) argument
|
H A D | autofill_ie_toolbar_import_win.cc | 217 // Combine phones into whole phone #. 218 string16 phone; local 219 phone = profile.GetInfo(PHONE_HOME_COUNTRY_CODE); 220 phone.append(profile.GetInfo(PHONE_HOME_CITY_CODE)); 221 phone.append(profile.GetInfo(PHONE_HOME_NUMBER)); 222 profile.SetInfo(PHONE_HOME_WHOLE_NUMBER, phone); 223 phone = profile.GetInfo(PHONE_FAX_COUNTRY_CODE); 224 phone.append(profile.GetInfo(PHONE_FAX_CITY_CODE)); 225 phone.append(profile.GetInfo(PHONE_FAX_NUMBER)); 226 profile.SetInfo(PHONE_FAX_WHOLE_NUMBER, phone); [all...] |
/external/libppp/src/ |
H A D | cbcp.h | 42 char phone[SCRIPT_LEN]; member in struct:cbcpcfg 52 char phone[SCRIPT_LEN]; /* What to dial */ member in struct:cbcp::__anon21349
|
H A D | cbcp.c | 69 *cbcp->fsm.phone = '\0'; 260 char list[sizeof cbcp->fsm.phone], *next; 269 strncpy(list, cbcp->fsm.phone, sizeof list - 1); 320 !auth_SetPhoneList(cbcp->p->dl->peer.authname, cbcp->fsm.phone, 321 sizeof cbcp->fsm.phone)) { 322 strncpy(cbcp->fsm.phone, cbcp->p->dl->cfg.cbcp.phone, 323 sizeof cbcp->fsm.phone - 1); 324 cbcp->fsm.phone[sizeof cbcp->fsm.phone [all...] |
H A D | datalink.c | 126 dl->phone.chosen = "N/A"; 129 log_Printf(LogPHASE, "Call peer back on %s\n", dl->cbcp.fsm.phone); 131 strncpy(dl->cfg.phone.list, dl->cbcp.fsm.phone, 132 sizeof dl->cfg.phone.list - 1); 133 dl->cfg.phone.list[sizeof dl->cfg.phone.list - 1] = '\0'; 134 dl->phone.alt = dl->phone.next = NULL; 179 if (dl->phone 191 char *phone; local [all...] |
H A D | chat.h | 61 const char *phone; /* Our phone number */ member in struct:chat
|
H A D | datalink.h | 76 } phone; member in struct:datalink::__anon21363 82 int timeout; /* Redial timeout value (end of phone list) */ 94 char *next; /* Next phone from the list */ 95 char *alt; /* Alternate (after fail) phone from the list */ 96 const char *chosen; /* Chosen phone number after DIAL */ 97 } phone; member in struct:datalink
|
/external/chromium_org/components/autofill/core/browser/ |
H A D | phone_number_unittest.cc | 19 // Set phone number so country_code == 1, city_code = 650, number = 2345678. 20 base::string16 phone(ASCIIToUTF16("1 [650] 234-5678")); 22 phone_number.SetInfo(AutofillType(PHONE_HOME_WHOLE_NUMBER), phone, "US"); local 91 PhoneNumber phone(&profile); 92 EXPECT_EQ(base::string16(), phone.GetRawInfo(PHONE_HOME_WHOLE_NUMBER)); 95 EXPECT_TRUE(phone.SetInfo(AutofillType(PHONE_HOME_WHOLE_NUMBER), 98 phone.GetRawInfo(PHONE_HOME_WHOLE_NUMBER)); 101 EXPECT_TRUE(phone.SetInfo(AutofillType(PHONE_HOME_WHOLE_NUMBER), 104 phone.GetRawInfo(PHONE_HOME_WHOLE_NUMBER)); 107 EXPECT_TRUE(phone [all...] |
H A D | autofill_type_unittest.cc | 28 AutofillType phone(PHONE_HOME_NUMBER); 29 EXPECT_EQ(PHONE_HOME_NUMBER, phone.GetStorableType()); 30 EXPECT_EQ(PHONE_HOME, phone.group()); 70 AutofillType phone(HTML_TYPE_TEL, HTML_MODE_NONE); 71 EXPECT_EQ(PHONE_HOME_WHOLE_NUMBER, phone.GetStorableType()); 72 EXPECT_EQ(PHONE_HOME, phone.group());
|
H A D | autofill_test_utils.h | 77 const char* phone); 84 const char* phone);
|
H A D | autofill_ie_toolbar_import_win.cc | 138 // data, writes the phone data into |phone|; otherwise, |phone| should be null. 144 PhoneNumber::PhoneCombineHelper* phone) { 166 if (!phone || !phone->SetInfo(AutofillType(it->second), field_value)) { 183 PhoneNumber::PhoneCombineHelper phone; local 185 ImportSingleFormGroup(key, reg_to_field, app_locale, profile, &phone); 189 if (phone.ParseNumber(*profile, app_locale, &constructed_number)) { 269 // Combine phones into whole phone # 140 ImportSingleFormGroup(const RegKey& key, const RegToFieldMap& reg_to_field, const std::string& app_locale, FormGroup* form_group, PhoneNumber::PhoneCombineHelper* phone) argument [all...] |
H A D | autofill_test_utils.cc | 168 const char* phone) { 180 check_and_set(profile, PHONE_HOME_WHOLE_NUMBER, phone); 188 const char* phone) { 193 phone); 163 SetProfileInfo(AutofillProfile* profile, const char* first_name, const char* middle_name, const char* last_name, const char* email, const char* company, const char* address1, const char* address2, const char* city, const char* state, const char* zipcode, const char* country, const char* phone) argument 183 SetProfileInfoWithGuid(AutofillProfile* profile, const char* guid, const char* first_name, const char* middle_name, const char* last_name, const char* email, const char* company, const char* address1, const char* address2, const char* city, const char* state, const char* zipcode, const char* country, const char* phone) argument
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
H A D | URLParser.java | 371 * Parser for the base phone number. 404 * Parser for the local phone #. 536 // JvB: Need to handle 'phone-context' specially 542 // Handle 'phone-context' specially, it may start with '+' 543 if ( pname.equalsIgnoreCase("phone-context")) { 566 * Parses the 'phone-context' parameter in tel: URLs 581 throw new ParseException( "Invalid phone-context:" + la , -1 ); 583 return new NameValue( "phone-context", value, false );
|
/external/chromium/third_party/libjingle/source/talk/ |
H A D | libjingle.scons | 61 "session/phone/libudevsymboltable.cc", 62 "session/phone/v4llookup.cc", 67 "session/phone/devicemanager_mac.mm", 164 "session/phone/audiomonitor.cc", 165 "session/phone/call.cc", 166 "session/phone/channel.cc", 167 "session/phone/channelmanager.cc", 168 "session/phone/codec.cc", 169 "session/phone/devicemanager.cc", 170 "session/phone/filemediaengin [all...] |
/external/chromium_org/chrome/browser/chromeos/contacts/ |
H A D | contact_test_util.cc | 48 std::string PhoneNumberToString(const Contact_PhoneNumber& phone) { argument 49 return phone.number() + "," + 50 base::IntToString(phone.type().relation()) + "," + 51 phone.type().label() + "," + 52 base::IntToString(phone.primary()); 102 "phone=", ' '); 199 Contact::PhoneNumber* phone = contact->add_phone_numbers(); local 200 phone->set_number(number); 201 phone->mutable_type()->set_relation(relation); 202 phone [all...] |
/external/protobuf/examples/ |
H A D | list_people.py | 16 for phone_number in person.phone: 18 print " Mobile phone #:", 20 print " Home phone #:", 22 print " Work phone #:",
|
/external/srec/config/en.us/dictionary/ |
H A D | cmu2nuance.cpp | 33 static const char* xlate(const char* phone, const char* cmu, const char* nuance) { argument 35 if (strncmp(phone, cmu, ncmu) || !isspace(phone[ncmu])) return NULL; 37 return phone + strlen(cmu);
|
/external/srec/srec/include/ |
H A D | hmm_desc.h | 51 unsigned char phone; /* Internal phoneme symbol */ member in struct:__anon26819 52 unsigned char pr_code[4]; /* Printable phone code */
|
/external/chromium_org/chrome/browser/resources/ntp_android/ |
H A D | opentabs.css | 177 .session-icon.phone { 178 background-image: url(../../../../ui/webui/resources/images/phone.png); 181 html[dir='rtl'] .session-icon.phone { 208 .session-icon.phone { 209 background-image: url(../../../../ui/webui/resources/images/1.5x/phone.png); 229 .session-icon.phone { 230 background-image: url(../../../../ui/webui/resources/images/2x/phone.png);
|
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/ |
H A D | peerconnection.scons | 17 'phone',
|
/external/chromium_org/chrome/browser/resources/options/ |
H A D | autofill_edit_overlay.css | 70 :-webkit-any(#phone-list, #email-list) div[role='listitem'] > div > div, 71 :-webkit-any(#phone-list, #email-list) input {
|