OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nonDigit
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/packages/Osu/src/com/android/hotspot2/
IMSIParameter.java
19
int
nonDigit
;
21
for (
nonDigit
= 0;
nonDigit
< imsi.length();
nonDigit
++) {
22
stopChar = imsi.charAt(
nonDigit
);
28
if (
nonDigit
== imsi.length()) {
31
} else if (
nonDigit
== imsi.length() - 1 && stopChar == '*') {
32
mImsi = imsi.substring(0,
nonDigit
);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
IMSIParameter.java
59
int
nonDigit
;
61
for (
nonDigit
= 0;
nonDigit
< imsi.length();
nonDigit
++) {
62
stopChar = imsi.charAt(
nonDigit
);
68
if (
nonDigit
== imsi.length()) {
72
else if (
nonDigit
== imsi.length()-1 && stopChar == '*') {
74
return new IMSIParameter(imsi.substring(0,
nonDigit
), true);
/frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/
Credential.java
807
int
nonDigit
;
809
for (
nonDigit
= 0;
nonDigit
< mImsi.length();
nonDigit
++) {
810
stopChar = mImsi.charAt(
nonDigit
);
816
if (
nonDigit
== mImsi.length()) {
819
else if (
nonDigit
== mImsi.length()-1 && stopChar == '*') {
[
all
...]
Completed in 68 milliseconds