OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:charToByte
(Results
1 - 3
of
3
) sorted by null
/art/test/422-type-conversion/src/
Main.java
127
charToByte
();
532
private static void
charToByte
() {
533
assertByteEquals((byte)1, $opt$noinline$
CharToByte
((char)1));
534
assertByteEquals((byte)0, $opt$noinline$
CharToByte
((char)0));
535
assertByteEquals((byte)51, $opt$noinline$
CharToByte
((char)51));
536
assertByteEquals((byte)127, $opt$noinline$
CharToByte
((char)127)); // 2^7 - 1
537
assertByteEquals((byte)-128, $opt$noinline$
CharToByte
((char)128)); // 2^7
538
assertByteEquals((byte)-1, $opt$noinline$
CharToByte
((char)32767)); // 2^15 - 1
539
assertByteEquals((byte)-1, $opt$noinline$
CharToByte
((char)65535)); // 2^16 - 1
540
assertByteEquals((byte)-1, $opt$noinline$
CharToByte
((char)-1))
[
all
...]
/art/test/551-checker-shifter-operand/src/
Main.java
57
static byte $noinline$
charToByte
(char v) { if (doThrow) throw new Error(); return (byte)v; }
305
assertIntEquals(a + $noinline$
charToByte
(b), a + (byte)b);
333
assertLongEquals(a + $noinline$
charToByte
(b), a + (byte)b);
[
all
...]
/prebuilts/tools/common/m2/repository/itext/itext/2.0.8/
itext-2.0.8.jar
Completed in 66 milliseconds