Home | History | Annotate | Download | only in src

Lines Matching full:boolean

19   public static void assertBoolEquals(boolean expected, boolean result) {
26 * Test that integer Phis are accepted as Boolean inputs until
30 /// CHECK-START: boolean Main.TestPhiAsBoolean(int) select_generator (after)
34 public static boolean f1;
35 public static boolean f2;
37 public static boolean InlinePhi(int x) {
41 public static boolean TestPhiAsBoolean(int x) {
46 * Test that integer And is accepted as a Boolean input until
50 /// CHECK-START: boolean Main.TestAndAsBoolean(boolean, boolean) select_generator (after)
54 public static boolean InlineAnd(boolean x, boolean y) {
58 public static boolean TestAndAsBoolean(boolean x, boolean y) {
63 * Test that integer Or is accepted as a Boolean input until
67 /// CHECK-START: boolean Main.TestOrAsBoolean(boolean, boolean) select_generator (after)
71 public static boolean InlineOr(boolean x, boolean y) {
75 public static boolean TestOrAsBoolean(boolean x, boolean y) {
80 * Test that integer Xor is accepted as a Boolean input until
84 /// CHECK-START: boolean Main.TestXorAsBoolean(boolean, boolean) select_generator (after)
88 public static boolean InlineXor(boolean x, boolean y) {
92 public static boolean TestXorAsBoolean(boolean x, boolean y) {