Home | History | Annotate | Download | only in impl

Lines Matching refs:dataFormat

407          * @return true if dataformat is an acceptable version, false otherwise
553 int dataFormat,
556 return getVersionInfoFromCompactInt(readHeader(bytes, dataFormat, authenticate));
569 * @throws IOException if this is not a valid ICU data item of the expected dataFormat
571 public static int readHeader(ByteBuffer bytes, int dataFormat, Authenticate authenticate)
599 if (bytes.get(12) != (byte)(dataFormat >> 24) ||
600 bytes.get(13) != (byte)(dataFormat >> 16) ||
601 bytes.get(14) != (byte)(dataFormat >> 8) ||
602 bytes.get(15) != (byte)dataFormat ||
626 public static int writeHeader(int dataFormat, int formatVersion, int dataVersion,
639 dos.writeInt(dataFormat);