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
;
45
return
phoneNumberPrefixes
[index];
56
phoneNumberPrefixes
= new int[numOfEntries];
60
phoneNumberPrefixes
[index++] = prefix;
69
if (
phoneNumberPrefixes
== null ||
phoneNumberPrefixes
.length < numOfEntries) {
70
phoneNumberPrefixes
= new int[numOfEntries];
76
phoneNumberPrefixes
[i] = objectInput.readInt();
90
objectOutput.writeInt(
phoneNumberPrefixes
[i]);
FlyweightMapStorage.java
48
private ByteBuffer
phoneNumberPrefixes
;
106
return readWordFromBuffer(
phoneNumberPrefixes
, prefixSizeInBytes, index);
119
phoneNumberPrefixes
= ByteBuffer.allocate(numOfEntries * prefixSizeInBytes);
126
storeWordInBuffer(
phoneNumberPrefixes
, prefixSizeInBytes, index++, prefix);
140
int prefix = readWordFromBuffer(
phoneNumberPrefixes
, prefixSizeInBytes, i);
194
if (
phoneNumberPrefixes
== null ||
phoneNumberPrefixes
.capacity() < numOfEntries) {
195
phoneNumberPrefixes
= ByteBuffer.allocate(numOfEntries * prefixSizeInBytes);
201
readExternalWord(objectInput, prefixSizeInBytes,
phoneNumberPrefixes
, i);
246
writeExternalWord(objectOutput, prefixSizeInBytes,
phoneNumberPrefixes
, i)
[
all
...]
Completed in 15 milliseconds