Home
last modified time | relevance | path

Searched refs:telephone (Results 1 – 25 of 2428) sorted by relevance

12345678910>>...98

/dports/www/drupal8/drupal-8.9.20/core/modules/config_translation/migrations/
H A Dd6_field_option_translation.yml55 phone_textfield: telephone
57 phone_textfield: telephone
59 phone_textfield: telephone
61 phone_textfield: telephone
63 phone_textfield: telephone
65 phone_textfield: telephone
67 phone_textfield: telephone
69 phone_textfield: telephone
71 phone_textfield: telephone
73 phone_textfield: telephone
[all …]
H A Dd6_field_instance_option_translation.yml63 phone_textfield: telephone
65 phone_textfield: telephone
67 phone_textfield: telephone
69 phone_textfield: telephone
71 phone_textfield: telephone
73 phone_textfield: telephone
75 phone_textfield: telephone
77 phone_textfield: telephone
79 phone_textfield: telephone
81 phone_textfield: telephone
[all …]
/dports/www/drupal8/drupal-8.9.20/core/modules/field/migrations/
H A Dd6_field.yml53 phone_textfield: telephone
55 phone_textfield: telephone
57 phone_textfield: telephone
59 phone_textfield: telephone
61 phone_textfield: telephone
63 phone_textfield: telephone
65 phone_textfield: telephone
67 phone_textfield: telephone
69 phone_textfield: telephone
71 phone_textfield: telephone
[all …]
/dports/www/drupal9/drupal-9.2.10/core/modules/field/migrations/
H A Dd6_field.yml54 phone_textfield: telephone
56 phone_textfield: telephone
58 phone_textfield: telephone
60 phone_textfield: telephone
62 phone_textfield: telephone
64 phone_textfield: telephone
66 phone_textfield: telephone
68 phone_textfield: telephone
70 phone_textfield: telephone
72 phone_textfield: telephone
[all …]
/dports/www/drupal9/drupal-9.2.10/core/modules/config_translation/migrations/
H A Dd6_field_option_translation.yml56 phone_textfield: telephone
58 phone_textfield: telephone
60 phone_textfield: telephone
62 phone_textfield: telephone
64 phone_textfield: telephone
66 phone_textfield: telephone
68 phone_textfield: telephone
70 phone_textfield: telephone
72 phone_textfield: telephone
74 phone_textfield: telephone
[all …]
H A Dd6_field_instance_option_translation.yml64 phone_textfield: telephone
66 phone_textfield: telephone
68 phone_textfield: telephone
70 phone_textfield: telephone
72 phone_textfield: telephone
74 phone_textfield: telephone
76 phone_textfield: telephone
78 phone_textfield: telephone
80 phone_textfield: telephone
82 phone_textfield: telephone
[all …]
/dports/www/phalcon/cphalcon-3.4.5/unit-tests/
H A DFormsTest.php22 public $telephone = '+44 124 82122'; variable in ContactFormPublicProperties
28 private $telephone = '+44 124 82122'; variable in ContactFormSettersGetters
34 return $this->telephone;
44 $this->telephone = $telephone;
85 $telephone = new Text("telephone");
94 $form->add($telephone);
116 $telephone = new Text("telephone");
125 $form->add($telephone);
156 $form->add($telephone);
184 $form->add($telephone);
[all …]
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/form/Documentation/Config/proto/formElements/formElementTypes/
H A DTelephone.rst4 .. _typo3.cms.form.prototypes.<prototypeidentifier>.formelementsdefinition.telephone:
10 .. _typo3.cms.form.prototypes.<prototypeidentifier>.formelementsdefinition.telephone-properties:
15 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.implementation…
30 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.validators:
33 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor:
36 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
39 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
42 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
45 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
75 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.lab…
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/gsmlib/
H A Dgsm_phonebook.cc41 checkTextAndTelephone(text, telephone); in set()
69 _telephone = telephone; in set()
137 telephone = ""; in parsePhonebookEntry()
142 telephone = p.parseString(); in parsePhonebookEntry()
156 while (telephone.length() > 0 && telephone[0] == '+') in parsePhonebookEntry()
157 telephone = telephone.substr(1); in parsePhonebookEntry()
158 telephone = "+" + telephone; in parsePhonebookEntry()
232 if (telephone == "" && text == "") in writeEntry()
407 string telephone, text; in Phonebook() local
552 string telephone; in find() local
[all …]
H A Dgsm_phonebook.h42 PhonebookEntry(string telephone, string text) : in PhonebookEntry() argument
43 PhonebookEntryBase(telephone, text), in PhonebookEntry()
49 void set(string telephone, string text, int index = -1,
53 string telephone() const throw(GsmException);
94 int parsePhonebookEntry(string response, string &telephone, string &text);
98 void readEntry(int index, string &telephone, string &text)
100 void writeEntry(int index, string telephone, string text)
102 void findEntry(string text, int &index, string &telephone)
112 iterator insertFirstEmpty(const string telephone, const string text)
116 iterator insert(const string telephone, const string text,
H A Dgsm_util.cc347 void gsmlib::checkTextAndTelephone(string text, string telephone) in checkTextAndTelephone() argument
356 for (unsigned int i = 0; i < telephone.length(); ++i) in checkTextAndTelephone()
357 if (! isdigit(telephone[i]) && ! (telephone[i] == '+') && in checkTextAndTelephone()
358 ! (telephone[i] == '*') && ! (telephone[i] == '#') && in checkTextAndTelephone()
359 ! (telephone[i] == 'p') && ! (telephone[i] == 'w') && in checkTextAndTelephone()
360 ! (telephone[i] == 'P') && ! (telephone[i] == 'W')) in checkTextAndTelephone()
363 telephone.c_str()), ParameterError); in checkTextAndTelephone()
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/
H A DTelephone.rst4 .. _typo3.cms.form.prototypes.<prototypeidentifier>.formelementsdefinition.telephone:
10 .. _typo3.cms.form.prototypes.<prototypeidentifier>.formelementsdefinition.telephone-properties:
15 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.implementation…
30 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.validators:
33 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor:
36 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
39 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
42 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
45 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
78 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.lab…
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/
H A DTelephone.rst4 .. _typo3.cms.form.prototypes.<prototypeidentifier>.formelementsdefinition.telephone:
10 .. _typo3.cms.form.prototypes.<prototypeidentifier>.formelementsdefinition.telephone-properties:
15 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.implementation…
30 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.validators:
33 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor:
36 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
39 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
42 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
45 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.edi…
78 .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.lab…
[all …]
/dports/www/phalcon4/cphalcon-4.1.1/tests/tocheck-database/Forms/
H A DFormsCest.php99 $telephone->addValidator(
112 $form->add($telephone);
140 $telephone->addValidator(
153 $form->add($telephone);
181 $telephone->addValidator(
194 $form->add($telephone);
221 $telephone->addValidator(
234 $form->add($telephone);
250 $entity->telephone
274 $telephone->addValidator(
[all …]
H A DFormCest.php56 $telephone = new Text('telephone');
60 $form->add($telephone);
115 $telephone = new Text('telephone');
117 $telephone->addValidator(
128 $telephone->getValidators()
132 $telephone->addValidators(
152 $telephone->getValidators()
170 $telephone->getValidators()
176 $form->add($telephone);
271 $telephone->addValidators(
[all …]
/dports/deskutils/rubrica/rubrica2-2.1.6/libral/
H A Dtelephone.c247 RTelephone* telephone; in r_telephone_new() local
249 telephone = g_object_new(r_telephone_get_type(), NULL); in r_telephone_new()
251 return telephone; in r_telephone_new()
262 r_telephone_free(RTelephone* telephone) in r_telephone_free() argument
264 g_return_if_fail(IS_R_TELEPHONE(telephone)); in r_telephone_free()
266 g_object_unref(telephone); in r_telephone_free()
278 priv = R_TELEPHONE_GET_PRIVATE(telephone); in r_telephone_search()
306 g_object_get(telephone, property, &tmp, NULL); in r_telephone_check()
330 r_telephone_copy (RTelephone *telephone) in r_telephone_copy() argument
336 g_return_val_if_fail(IS_R_TELEPHONE(telephone), NULL); in r_telephone_copy()
[all …]
/dports/www/phalcon/cphalcon-3.4.5/tests/unit/Forms/
H A DFormTest.php121 $form->add($telephone);
148 $telephone->addValidators([
159 $form->add($telephone);
270 $form->add($telephone);
418 $telephone->addValidators([
429 $form->add($telephone);
472 $form->add($telephone);
506 $telephone->addValidators([
518 $form->add($telephone);
561 $telephone->addValidators([
[all …]
/dports/devel/p5-Validation-Class/Validation-Class-7.900057/t/legacy/regression/validators/
H A D03-pattern.t10 telephone => {pattern => '### ###-####'},
14 telephone => '123 456-7890',
19 ok $r->validate('telephone'), 'telephone validates';
20 $r->params->{telephone} = '1234567890';
22 ok !$r->validate('telephone'), 'telephone doesnt validate';
/dports/www/phalcon4/cphalcon-4.1.1/tests/_data/fixtures/Forms/
H A DContactFormSettersGetters.php18 private $telephone = '+44 124 82122'; variable in Phalcon\\Test\\Fixtures\\Forms\\ContactFormSettersGetters
24 return $this->telephone;
27 public function setTelephone($telephone) argument
29 $this->telephone = $telephone;
/dports/www/seahub/seahub-8.0.7-server/seahub/api2/endpoints/
H A Duser.py39 info['telephone'] = d_profile.telephone if d_profile else ''
57 … DetailedProfile.objects.add_or_update(email, department=None, telephone=info_dict['telephone'])
109 telephone = request.data.get('telephone', None)
110 if telephone:
111 telephone = telephone.strip()
112 if len(telephone) > 100:
126 'telephone': telephone,
/dports/www/drupal8/drupal-8.9.20/core/modules/telephone/
H A Dtelephone.module5 * Defines a simple telephone number field type.
16 case 'help.page.telephone':
19telephone numbers. See the <a href=":field">Field module help</a> and the <a href=":field_ui">Fiel…
22 $output .= '<dt>' . t('Managing and displaying telephone fields') . '</dt>';
23 …$output .= '<dd>' . t('The <em>settings</em> and the <em>display</em> of the telephone field can b…
24 $output .= '<dt>' . t('Displaying telephone numbers as links') . '</dt>';
35 $info['string']['field_types'][] = 'telephone';
/dports/www/drupal9/drupal-9.2.10/core/modules/telephone/
H A Dtelephone.module5 * Defines a simple telephone number field type.
16 case 'help.page.telephone':
19telephone numbers. See the <a href=":field">Field module help</a> and the <a href=":field_ui">Fiel…
22 $output .= '<dt>' . t('Managing and displaying telephone fields') . '</dt>';
23 …$output .= '<dd>' . t('The <em>settings</em> and the <em>display</em> of the telephone field can b…
24 $output .= '<dt>' . t('Displaying telephone numbers as links') . '</dt>';
35 $info['string']['field_types'][] = 'telephone';
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/apps/
H A Dgsmpb.cc91 if (i->telephone() == j->telephone()) in insertNotPresent()
103 i->text().c_str(), i->telephone().c_str()); in insertNotPresent()
146 range.first->telephone().c_str(), in updateEntries()
147 i->telephone().c_str()) in updateEntries()
180 j->telephone().c_str(), in updateEntriesIndexed()
181 i->telephone().c_str(), i->index()) in updateEntriesIndexed()
217 if (j->telephone() == i->telephone()) in deleteNotPresent()
228 i->text().c_str(), i->telephone().c_str()); in deleteNotPresent()
445 else if (i->telephone().length() > maxTelLen) in main()
449 i->telephone().c_str(), maxTelLen), in main()
[all …]
/dports/devel/p5-Validation-Class/Validation-Class-7.900057/t/
H A D03-streaming.t49 $p1->params->add(telephone => 11111);
51 ok !$p1->check('telephone')->telephone, "p1 telephone number is invalid";
53 $p1->params->add(telephone => 2155551212);
55 ok $p1->validate, "p1 telephone number is now valid";
/dports/www/seahub/seahub-8.0.7-server/seahub/profile/
H A Dmodels.py177 def add_detailed_profile(self, username, department, telephone): argument
179 telephone=telephone)
183 def add_or_update(self, username, department, telephone): argument
189 if telephone is not None:
190 d_profile.telephone = telephone
194 telephone=telephone)
215 telephone = models.CharField(max_length=100) variable in DetailedProfile

12345678910>>...98