Lines Matching refs:Or
111 expectEquals(7, $opt$Or(5, 3)); in orInt()
112 expectEquals(0, $opt$Or(0, 0)); in orInt()
113 expectEquals(3, $opt$Or(0, 3)); in orInt()
114 expectEquals(3, $opt$Or(3, 0)); in orInt()
115 expectEquals(-3, $opt$Or(1, -3)); in orInt()
116 expectEquals(-3, $opt$Or(-12, -3)); in orInt()
130 expectEquals(7L, $opt$Or(5L, 3L)); in orLong()
131 expectEquals(0L, $opt$Or(0L, 0L)); in orLong()
132 expectEquals(3L, $opt$Or(0L, 3L)); in orLong()
133 expectEquals(3L, $opt$Or(3L, 0L)); in orLong()
134 expectEquals(-3L, $opt$Or(1L, -3L)); in orLong()
135 expectEquals(-3L, $opt$Or(-12L, -3L)); in orLong()
148 static int $opt$Or(int a, int b) { in $opt$Or()
160 static long $opt$Or(long a, long b) { in $opt$Or()