Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for aabb (0.01 seconds)

  1. android/guava-tests/test/com/google/common/io/LittleEndianDataOutputStreamTest.java

      public void testWriteBytes_discardHighOrderBytes() throws IOException {
    
        /* Write out various test values in LITTLE ENDIAN FORMAT */
        out.writeBytes("\uAAAA\uAABB\uAACC");
    
        byte[] data = baos.toByteArray();
    
        /* Setup input streams */
        DataInput in = new DataInputStream(new ByteArrayInputStream(data));
    
        /* Read in various values NORMALLY */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/io/LittleEndianDataOutputStreamTest.java

      public void testWriteBytes_discardHighOrderBytes() throws IOException {
    
        /* Write out various test values in LITTLE ENDIAN FORMAT */
        out.writeBytes("\uAAAA\uAABB\uAACC");
    
        byte[] data = baos.toByteArray();
    
        /* Setup input streams */
        DataInput in = new DataInputStream(new ByteArrayInputStream(data));
    
        /* Read in various values NORMALLY */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 4.9K bytes
    - Click Count (0)
Back to Top