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

  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
DefaultMapStorage.java 20 import java.io.ObjectInput;
62 public void readExternal(ObjectInput objectInput) throws IOException {
63 numOfEntries = objectInput.readInt();
71 phoneNumberPrefixes[i] = objectInput.readInt();
72 descriptions[i] = objectInput.readUTF();
74 int sizeOfLengths = objectInput.readInt();
77 possibleLengths.add(objectInput.readInt());
MappingFileProvider.java 21 import java.io.ObjectInput;
60 * {@link #readFileConfigs(java.util.SortedMap)} or {@link #readExternal(java.io.ObjectInput)}.
86 public void readExternal(ObjectInput objectInput) throws IOException {
87 numOfEntries = objectInput.readInt();
95 countryCallingCodes[i] = objectInput.readInt();
96 int numOfLangs = objectInput.readInt();
99 setOfLangs.add(objectInput.readUTF());
FlyweightMapStorage.java 20 import java.io.ObjectInput;
111 public void readExternal(ObjectInput objectInput) throws IOException {
113 prefixSizeInBytes = objectInput.readInt();
114 descIndexSizeInBytes = objectInput.readInt();
117 int sizeOfLengths = objectInput.readInt();
120 possibleLengths.add(objectInput.readInt());
124 int descriptionPoolSize = objectInput.readInt();
130 String description = objectInput.readUTF();
133 readEntries(objectInput);
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
Phonemetadata.java 27 import java.io.ObjectInput;
173 public void readExternal(ObjectInput objectInput) throws IOException {
174 setPattern(objectInput.readUTF());
175 setFormat(objectInput.readUTF());
176 int leadingDigitsPatternSize = objectInput.readInt();
178 leadingDigitsPattern_.add(objectInput.readUTF());
180 if (objectInput.readBoolean()) {
181 setNationalPrefixFormattingRule(objectInput.readUTF());
183 if (objectInput.readBoolean())
    [all...]

Completed in 108 milliseconds