Searched refs:unsigned (Results 1 – 3 of 3) sorted by relevance
/libcore/ojluni/src/test/java/util/Arrays/ |
D | ArraysEqCmpTest.java | 80 final boolean unsigned; field in ArraysEqCmpTest.ArrayType 99 public ArrayType(Class<T> arrayType, boolean unsigned) { in ArrayType() argument 102 this.unsigned = unsigned; in ArrayType() 121 String compareName = unsigned ? "compareUnsigned" : "compare"; in ArrayType() 173 return unsigned ? "unsigned " + s : s; in toString() 455 public Bytes(boolean unsigned) { in Bytes() argument 456 super(byte[].class, unsigned); in Bytes() 495 public Shorts(boolean unsigned) { in Shorts() argument 496 super(short[].class, unsigned); in Shorts() 515 public Integers(boolean unsigned) { in Integers() argument [all …]
|
/libcore/ojluni/src/main/java/sun/invoke/util/ |
D | Wrapper.java | 30 …( Boolean.class, "Boolean", boolean.class, "boolean", 'Z', new boolean[0], Format.unsigned( 1)), 35 …(Character.class, "Character", char.class, "char", 'C', new char[0], Format.unsigned(16)), 105 static int unsigned(int size) { return format(UNSIGNED, size, (size > 32 ? 2 : 1)); } in unsigned() method in Wrapper.Format
|
/libcore/ojluni/src/main/java/java/util/jar/ |
D | JarVerifier.java | 567 …ivate CodeSource[] mapSignersToCodeSources(URL url, List<CodeSigner[]> signers, boolean unsigned) { in mapSignersToCodeSources() argument 573 if (unsigned) { in mapSignersToCodeSources()
|