Home
last modified time | relevance | path

Searched refs:objectOutput (Results 1 – 6 of 6) sorted by relevance

/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
DPhonemetadata.java152 public void writeExternal(ObjectOutput objectOutput) throws IOException { in writeExternal() argument
153 objectOutput.writeUTF(pattern_); in writeExternal()
154 objectOutput.writeUTF(format_); in writeExternal()
156 objectOutput.writeInt(leadingDigitsPatternSize); in writeExternal()
158 objectOutput.writeUTF(leadingDigitsPattern_.get(i)); in writeExternal()
161 objectOutput.writeBoolean(hasNationalPrefixFormattingRule); in writeExternal()
163 objectOutput.writeUTF(nationalPrefixFormattingRule_); in writeExternal()
165 objectOutput.writeBoolean(hasDomesticCarrierCodeFormattingRule); in writeExternal()
167 objectOutput.writeUTF(domesticCarrierCodeFormattingRule_); in writeExternal()
169 objectOutput.writeBoolean(nationalPrefixOptionalWhenFormatting_); in writeExternal()
[all …]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
DFlyweightMapStorage.java155 public void writeExternal(ObjectOutput objectOutput) throws IOException { in writeExternal() argument
157 objectOutput.writeInt(prefixSizeInBytes); in writeExternal()
158 objectOutput.writeInt(descIndexSizeInBytes); in writeExternal()
162 objectOutput.writeInt(sizeOfLengths); in writeExternal()
164 objectOutput.writeInt(length); in writeExternal()
168 objectOutput.writeInt(descriptionPool.length); in writeExternal()
171 objectOutput.writeUTF(description); in writeExternal()
175 objectOutput.writeInt(numOfEntries); in writeExternal()
177 writeExternalWord(objectOutput, prefixSizeInBytes, phoneNumberPrefixes, i); in writeExternal()
178 writeExternalWord(objectOutput, descIndexSizeInBytes, descriptionIndexes, i); in writeExternal()
[all …]
DDefaultMapStorage.java82 public void writeExternal(ObjectOutput objectOutput) throws IOException { in writeExternal() argument
83 objectOutput.writeInt(numOfEntries); in writeExternal()
85 objectOutput.writeInt(phoneNumberPrefixes[i]); in writeExternal()
86 objectOutput.writeUTF(descriptions[i]); in writeExternal()
89 objectOutput.writeInt(sizeOfLengths); in writeExternal()
91 objectOutput.writeInt(length); in writeExternal()
DMappingFileProvider.java108 public void writeExternal(ObjectOutput objectOutput) throws IOException { in writeExternal() argument
109 objectOutput.writeInt(numOfEntries); in writeExternal()
111 objectOutput.writeInt(countryCallingCodes[i]); in writeExternal()
114 objectOutput.writeInt(numOfLangs); in writeExternal()
116 objectOutput.writeUTF(lang); in writeExternal()
DAreaCodeMap.java131 public void writeExternal(ObjectOutput objectOutput) throws IOException { in writeExternal() argument
132 objectOutput.writeBoolean(areaCodeMapStorage instanceof FlyweightMapStorage); in writeExternal()
133 areaCodeMapStorage.writeExternal(objectOutput); in writeExternal()
DAreaCodeMapStorageStrategy.java79 public abstract void writeExternal(ObjectOutput objectOutput) throws IOException; in writeExternal() argument