Searched refs:phone (Results 1 - 25 of 57) sorted by relevance

123

/external/chromium/chrome/browser/autofill/
H A Dhome_phone_number.cc9 HomePhoneNumber::HomePhoneNumber(const HomePhoneNumber& phone) argument
10 : PhoneNumber(phone) {
15 HomePhoneNumber& HomePhoneNumber::operator=(const HomePhoneNumber& phone) { argument
16 PhoneNumber::operator=(phone);
H A Dhome_phone_number.h16 HomePhoneNumber(const HomePhoneNumber& phone);
19 HomePhoneNumber& operator=(const HomePhoneNumber& phone);
H A Dautofill_common_test.h35 const char* phone, const char* fax);
42 const char* phone, const char* fax);
H A Dautofill_type_unittest.cc30 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 Dautofill_common_test.cc39 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 Dautofill_ie_toolbar_import_win.cc217 // 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 Dcbcp.h42 char phone[SCRIPT_LEN]; member in struct:cbcpcfg
52 char phone[SCRIPT_LEN]; /* What to dial */ member in struct:cbcp::__anon21349
H A Dcbcp.c69 *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 Ddatalink.c126 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 Dchat.h61 const char *phone; /* Our phone number */ member in struct:chat
H A Ddatalink.h76 } 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 Dphone_number_unittest.cc19 // 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 Dautofill_type_unittest.cc28 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 Dautofill_test_utils.h77 const char* phone);
84 const char* phone);
H A Dautofill_ie_toolbar_import_win.cc138 // 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 Dautofill_test_utils.cc168 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 DURLParser.java371 * 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 Dlibjingle.scons61 "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 Dcontact_test_util.cc48 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 Dlist_people.py16 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 Dcmu2nuance.cpp33 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 Dhmm_desc.h51 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 Dopentabs.css177 .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 Dpeerconnection.scons17 'phone',
/external/chromium_org/chrome/browser/resources/options/
H A Dautofill_edit_overlay.css70 :-webkit-any(#phone-list, #email-list) div[role='listitem'] > div > div,
71 :-webkit-any(#phone-list, #email-list) input {

Completed in 1257 milliseconds

123