OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isdialable
(Results
1 - 3
of
3
) sorted by null
/external/sqlite/android/
PhoneNumberUtils.cpp
92
static bool
isDialable
(char ch)
100
return !
isDialable
(ch) && (isalpha(ch) == 0);
127
} else if (
isDialable
(ch)) {
165
} else if (
isDialable
(ch)) return -1;
171
else if (
isDialable
(ch)) return -1;
176
else if (
isDialable
(ch)) return -1;
202
} else if (
isDialable
(ch)) {
209
else if (
isDialable
(ch)) return -1;
249
} else if (
isDialable
(ch[i])) {
406
if (
isDialable
(ch_a))
[
all
...]
/cts/tests/tests/telephony/src/android/telephony/cts/
PhoneNumberUtilsTest.java
447
method = "
isDialable
",
487
// Test is12Key,
isDialable
, isISODigit, isReallyDialable, isStartsPostDial
490
assertTrue(PhoneNumberUtils.
isDialable
(c));
497
assertTrue(PhoneNumberUtils.
isDialable
(c));
502
assertTrue(PhoneNumberUtils.
isDialable
(c));
507
assertFalse(PhoneNumberUtils.
isDialable
(c));
508
assertFalse(PhoneNumberUtils.
isDialable
(c));
510
assertTrue(PhoneNumberUtils.
isDialable
(c));
515
assertTrue(PhoneNumberUtils.
isDialable
(c));
/frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java
89
isDialable
(char c) {
116
return !
isDialable
(ch) && !(('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z'));
198
if (
isDialable
(c) && (c != '+' || !firstCharAdded)) {
235
if (
isDialable
(c)) {
400
if (!
isDialable
(ca)) {
408
if (!
isDialable
(cb)) {
600
if (
isDialable
(chA)) {
611
if (
isDialable
(chB)) {
920
&&
isDialable
(networkPortion);
932
private static boolean
isDialable
(String address)
[
all
...]
Completed in 130 milliseconds