Searched defs:objectOutput (Results 1 - 6 of 6) sorted by relevance

/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
H A DAreaCodeMapStorageStrategy.java74 * objectOutput}.
76 * @param objectOutput the object output stream to which the area code map is written
79 public abstract void writeExternal(ObjectOutput objectOutput) throws IOException; argument
H A DDefaultMapStorage.java82 public void writeExternal(ObjectOutput objectOutput) throws IOException { argument
83 objectOutput.writeInt(numOfEntries);
85 objectOutput.writeInt(phoneNumberPrefixes[i]);
86 objectOutput.writeUTF(descriptions[i]);
89 objectOutput.writeInt(sizeOfLengths);
91 objectOutput.writeInt(length);
H A DAreaCodeMap.java131 public void writeExternal(ObjectOutput objectOutput) throws IOException { argument
132 objectOutput.writeBoolean(areaCodeMapStorage instanceof FlyweightMapStorage);
133 areaCodeMapStorage.writeExternal(objectOutput);
H A DFlyweightMapStorage.java155 public void writeExternal(ObjectOutput objectOutput) throws IOException { argument
157 objectOutput.writeInt(prefixSizeInBytes);
158 objectOutput.writeInt(descIndexSizeInBytes);
162 objectOutput.writeInt(sizeOfLengths);
164 objectOutput.writeInt(length);
168 objectOutput.writeInt(descriptionPool.length);
171 objectOutput.writeUTF(description);
175 objectOutput.writeInt(numOfEntries);
177 writeExternalWord(objectOutput, prefixSizeInBytes, phoneNumberPrefixes, i);
178 writeExternalWord(objectOutput, descIndexSizeInByte
219 writeExternalWord(ObjectOutput objectOutput, int wordSize, ByteBuffer inputBuffer, int index) argument
[all...]
H A DMappingFileProvider.java108 public void writeExternal(ObjectOutput objectOutput) throws IOException { argument
109 objectOutput.writeInt(numOfEntries);
111 objectOutput.writeInt(countryCallingCodes[i]);
114 objectOutput.writeInt(numOfLangs);
116 objectOutput.writeUTF(lang);
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhonemetadata.java152 public void writeExternal(ObjectOutput objectOutput) throws IOException { argument
153 objectOutput.writeUTF(pattern_);
154 objectOutput.writeUTF(format_);
156 objectOutput.writeInt(leadingDigitsPatternSize);
158 objectOutput.writeUTF(leadingDigitsPattern_.get(i));
161 objectOutput.writeBoolean(hasNationalPrefixFormattingRule);
163 objectOutput.writeUTF(nationalPrefixFormattingRule_);
165 objectOutput.writeBoolean(hasDomesticCarrierCodeFormattingRule);
167 objectOutput.writeUTF(domesticCarrierCodeFormattingRule_);
169 objectOutput
259 writeExternal(ObjectOutput objectOutput) argument
666 writeExternal(ObjectOutput objectOutput) argument
943 writeExternal(ObjectOutput objectOutput) argument
[all...]

Completed in 142 milliseconds