OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:phoneNumberPrefixes
(Results
1 - 2
of
2
) sorted by null
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
DefaultMapStorage.java
35
private int[]
phoneNumberPrefixes
;
40
return
phoneNumberPrefixes
[index];
51
phoneNumberPrefixes
= new int[numOfEntries];
55
phoneNumberPrefixes
[index++] = prefix;
64
if (
phoneNumberPrefixes
== null ||
phoneNumberPrefixes
.length < numOfEntries) {
65
phoneNumberPrefixes
= new int[numOfEntries];
71
phoneNumberPrefixes
[i] = objectInput.readInt();
85
objectOutput.writeInt(
phoneNumberPrefixes
[i]);
FlyweightMapStorage.java
47
private ByteBuffer
phoneNumberPrefixes
;
55
return readWordFromBuffer(
phoneNumberPrefixes
, prefixSizeInBytes, index);
74
phoneNumberPrefixes
= ByteBuffer.allocate(numOfEntries * prefixSizeInBytes);
81
storeWordInBuffer(
phoneNumberPrefixes
, prefixSizeInBytes, index, prefix);
102
int prefix = readWordFromBuffer(
phoneNumberPrefixes
, prefixSizeInBytes, i);
142
if (
phoneNumberPrefixes
== null ||
phoneNumberPrefixes
.capacity() < numOfEntries) {
143
phoneNumberPrefixes
= ByteBuffer.allocate(numOfEntries * prefixSizeInBytes);
149
readExternalWord(objectInput, prefixSizeInBytes,
phoneNumberPrefixes
, i);
177
writeExternalWord(objectOutput, prefixSizeInBytes,
phoneNumberPrefixes
, i)
[
all
...]
Completed in 49 milliseconds