Home | History | Annotate | Download | only in geocoding

Lines Matching defs:objectInput

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();
175 descIndexSizeInBytes = objectInput.readInt();
177 int sizeOfLengths = objectInput.readInt();
180 possibleLengths.add(objectInput.readInt());
183 int descriptionPoolSize = objectInput.readInt();
189 String description = objectInput.readUTF();
193 numOfEntries = objectInput.readInt();
201 readExternalWord(objectInput, prefixSizeInBytes, phoneNumberPrefixes, i);
202 readExternalWord(objectInput, descIndexSizeInBytes, descriptionIndexes, i);