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

  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
Phonemetadata.java 32 import java.io.ObjectInput;
179 public void readExternal(ObjectInput objectInput) throws IOException {
180 setPattern(objectInput.readUTF());
181 setFormat(objectInput.readUTF());
182 int leadingDigitsPatternSize = objectInput.readInt();
184 leadingDigitsPattern_.add(objectInput.readUTF());
186 if (objectInput.readBoolean()) {
187 setNationalPrefixFormattingRule(objectInput.readUTF());
189 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();
  /cts/common/util/src/com/android/compatibility/common/util/
ChecksumReporter.java 32 import java.io.ObjectInput;
108 ObjectInput objectInput = new ObjectInputStream(outputStream)) {
109 short magicNumber = objectInput.readShort();
112 mVersion = objectInput.readShort();
113 mResultChecksum = (BloomFilter<CharSequence>) objectInput.readObject();
114 mFileChecksum = (HashMap<String, byte[]>) objectInput.readObject();
  /prebuilts/tools/common/m2/repository/com/esotericsoftware/kryo/kryo/2.24.0/
kryo-2.24.0.jar 
  /prebuilts/misc/common/robolectric/lib/
xstream-1.4.8.jar 
  /prebuilts/tools/common/m2/repository/com/thoughtworks/xstream/xstream/1.4.7/
xstream-1.4.7.jar 
  /prebuilts/tools/common/m2/repository/com/thoughtworks/xstream/xstream/1.4.8/
xstream-1.4.8.jar 

Completed in 717 milliseconds