Searched refs:objectInput (Results 1 - 7 of 7) sorted by relevance

/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhonemetadata.java173 public void readExternal(ObjectInput objectInput) throws IOException { argument
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()) {
184 setDomesticCarrierCodeFormattingRule(objectInput.readUTF());
186 setNationalPrefixOptionalWhenFormatting(objectInput
277 readExternal(ObjectInput objectInput) argument
841 readExternal(ObjectInput objectInput) argument
1039 readExternal(ObjectInput objectInput) argument
[all...]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
H A DDefaultMapStorage.java62 public void readExternal(ObjectInput objectInput) throws IOException { argument
63 numOfEntries = objectInput.readInt();
71 phoneNumberPrefixes[i] = objectInput.readInt();
72 descriptions[i] = objectInput.readUTF();
74 int sizeOfLengths = objectInput.readInt();
77 possibleLengths.add(objectInput.readInt());
H A DFlyweightMapStorage.java111 public void readExternal(ObjectInput objectInput) throws IOException { argument
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);
140 private void readEntries(ObjectInput objectInput) throws IOException { argument
141 numOfEntries = objectInput
199 readExternalWord(ObjectInput objectInput, int wordSize, ByteBuffer outputBuffer, int index) argument
[all...]
H A DPhonePrefixMapStorageStrategy.java65 * objectInput}.
67 * @param objectInput the object input stream from which the phone prefix map is read
70 public abstract void readExternal(ObjectInput objectInput) throws IOException; argument
H A DPrefixTimeZonesMap.java58 public void readExternal(ObjectInput objectInput) throws IOException { argument
59 phonePrefixMap.readExternal(objectInput);
H A DMappingFileProvider.java86 public void readExternal(ObjectInput objectInput) throws IOException { argument
87 numOfEntries = objectInput.readInt();
95 countryCallingCodes[i] = objectInput.readInt();
96 int numOfLangs = objectInput.readInt();
99 setOfLangs.add(objectInput.readUTF());
H A DPhonePrefixMap.java119 public void readExternal(ObjectInput objectInput) throws IOException { argument
121 boolean useFlyweightMapStorage = objectInput.readBoolean();
127 phonePrefixMapStorage.readExternal(objectInput);

Completed in 102 milliseconds