OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:objectInput
(Results
1 - 4
of
4
) sorted by null
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
DefaultMapStorage.java
20
import java.io.
ObjectInput
;
67
public void readExternal(
ObjectInput
objectInput
) throws IOException {
68
numOfEntries =
objectInput
.readInt();
76
phoneNumberPrefixes[i] =
objectInput
.readInt();
77
descriptions[i] =
objectInput
.readUTF();
79
int sizeOfLengths =
objectInput
.readInt();
82
possibleLengths.add(
objectInput
.readInt());
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());
FlyweightMapStorage.java
20
import java.io.
ObjectInput
;
152
* Stores a value which is read from the provided {@code
objectInput
} to the provided byte {@code
155
* @param
objectInput
the object input stream from which the value is read
161
private static void readExternalWord(
ObjectInput
objectInput
, int wordSize,
165
outputBuffer.putShort(index,
objectInput
.readShort());
167
outputBuffer.putInt(index,
objectInput
.readInt());
172
public void readExternal(
ObjectInput
objectInput
) throws IOException {
174
prefixSizeInBytes =
objectInput
.readInt()
[
all
...]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
Phonemetadata.java
27
import java.io.
ObjectInput
;
157
public void readExternal(
ObjectInput
objectInput
) throws IOException {
158
setPattern(
objectInput
.readUTF());
159
setFormat(
objectInput
.readUTF());
160
int leadingDigitsPatternSize =
objectInput
.readInt();
162
leadingDigitsPattern_.add(
objectInput
.readUTF());
164
if (
objectInput
.readBoolean()) {
165
setNationalPrefixFormattingRule(
objectInput
.readUTF());
167
if (
objectInput
.readBoolean())
[
all
...]
Completed in 490 milliseconds