OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inttoshort
(Results
1 - 1
of
1
) sorted by null
/external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java
550
Method
intToShort
= numericCastingMethod(int.class, short.class);
551
assertEquals((short) 0x1234,
intToShort
.invoke(null, 0x00001234));
552
assertEquals((short) 0x1234,
intToShort
.invoke(null, 0xabcd1234));
553
assertEquals((short) 0x1234,
intToShort
.invoke(null, 0xffff1234));
[
all
...]
Completed in 183 milliseconds