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

  /external/libphonenumber/libphonenumber/src/com/google/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...]
  /external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
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());
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...]
PhonePrefixMapStorageStrategy.java 20 import java.io.ObjectInput;
65 * 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;
PrefixTimeZonesMap.java 24 import java.io.ObjectInput;
58 public void readExternal(ObjectInput objectInput) throws IOException {
59 phonePrefixMap.readExternal(objectInput);
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());
PhonePrefixMap.java 25 import java.io.ObjectInput;
52 * {@link #readPhonePrefixMap(java.util.SortedMap)} or {@link #readExternal(java.io.ObjectInput)}.
119 public void readExternal(ObjectInput objectInput) throws IOException {
121 boolean useFlyweightMapStorage = objectInput.readBoolean();
127 phonePrefixMapStorage.readExternal(objectInput);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestListAdapter.java 442 ObjectInputStream objectInput = null;
444 objectInput = new ObjectInputStream(byteStream);
445 return objectInput.readObject();
452 if (objectInput != null) {
453 objectInput.close();
  /prebuilts/tools/common/m2/repository/com/thoughtworks/xstream/xstream/1.4.8/
xstream-1.4.8.jar 

Completed in 431 milliseconds