Searched defs:els (Results 1 – 1 of 1) sorted by relevance
/art/test/083-compiler-regressions/src/ |
D | Main.java | 9751 private static int ifEqz(int src, int thn, int els) { return (src == 0) ? thn : els; } in ifEqz() 9752 private static int ifNez(int src, int thn, int els) { return (src != 0) ? thn : els; } in ifNez() 9753 private static int ifLtz(int src, int thn, int els) { return (src < 0) ? thn : els; } in ifLtz() 9754 private static int ifGez(int src, int thn, int els) { return (src >= 0) ? thn : els; } in ifGez() 9755 private static int ifGtz(int src, int thn, int els) { return (src > 0) ? thn : els; } in ifGtz() 9756 private static int ifLez(int src, int thn, int els) { return (src <= 0) ? thn : els; } in ifLez()
|