HomeSort by relevance Sort by last modified time
    Searched defs:phoneNumberPrefixes (Results 1 - 3 of 3) sorted by null

  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
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...]
  /packages/apps/ContactsCommon/libs/
geocoder-2.9.jar 

Completed in 4716 milliseconds