Lines Matching refs:b
105 static boolean $opt$lt(long a, long b) { in $opt$lt() argument
106 return a < b; in $opt$lt()
109 static boolean $opt$lt(float a, float b) { in $opt$lt() argument
110 return a < b; in $opt$lt()
113 static boolean $opt$lt(double a, double b) { in $opt$lt() argument
114 return a < b; in $opt$lt()
117 static boolean $opt$gt(long a, long b) { in $opt$gt() argument
118 return a > b; in $opt$gt()
121 static boolean $opt$gt(float a, float b) { in $opt$gt() argument
122 return a > b; in $opt$gt()
125 static boolean $opt$gt(double a, double b) { in $opt$gt() argument
126 return a > b; in $opt$gt()
131 private static int smaliCmpLong(long a, long b) throws Exception { in smaliCmpLong() argument
134 int result = (Integer)m.invoke(null, a, b); in smaliCmpLong()
138 private static int smaliCmpGtFloat(float a, float b) throws Exception { in smaliCmpGtFloat() argument
141 int result = (Integer)m.invoke(null, a, b); in smaliCmpGtFloat()
145 private static int smaliCmpLtFloat(float a, float b) throws Exception { in smaliCmpLtFloat() argument
148 int result = (Integer)m.invoke(null, a, b); in smaliCmpLtFloat()
152 private static int smaliCmpGtDouble(double a, double b) throws Exception { in smaliCmpGtDouble() argument
155 int result = (Integer)m.invoke(null, a, b); in smaliCmpGtDouble()
159 private static int smaliCmpLtDouble(double a, double b) throws Exception { in smaliCmpLtDouble() argument
162 int result = (Integer)m.invoke(null, a, b); in smaliCmpLtDouble()
172 public static void expectLt(long a, long b) { in expectLt() argument
173 if (!$opt$lt(a, b)) { in expectLt()
174 throw new Error("Expected: " + a + " < " + b); in expectLt()
178 public static void expectGt(long a, long b) { in expectGt() argument
179 if (!$opt$gt(a, b)) { in expectGt()
180 throw new Error("Expected: " + a + " > " + b); in expectGt()
184 public static void expectLt(float a, float b) { in expectLt() argument
185 if (!$opt$lt(a, b)) { in expectLt()
186 throw new Error("Expected: " + a + " < " + b); in expectLt()
190 public static void expectGt(float a, float b) { in expectGt() argument
191 if (!$opt$gt(a, b)) { in expectGt()
192 throw new Error("Expected: " + a + " > " + b); in expectGt()
196 public static void expectFalse(float a, float b) { in expectFalse() argument
197 if ($opt$lt(a, b)) { in expectFalse()
198 throw new Error("Not expecting: " + a + " < " + b); in expectFalse()
200 if ($opt$gt(a, b)) { in expectFalse()
201 throw new Error("Not expecting: " + a + " > " + b); in expectFalse()
205 public static void expectLt(double a, double b) { in expectLt() argument
206 if (!$opt$lt(a, b)) { in expectLt()
207 throw new Error("Expected: " + a + " < " + b); in expectLt()
211 public static void expectGt(double a, double b) { in expectGt() argument
212 if (!$opt$gt(a, b)) { in expectGt()
213 throw new Error("Expected: " + a + " > " + b); in expectGt()
217 public static void expectFalse(double a, double b) { in expectFalse() argument
218 if ($opt$lt(a, b)) { in expectFalse()
219 throw new Error("Not expecting: " + a + " < " + b); in expectFalse()
221 if ($opt$gt(a, b)) { in expectFalse()
222 throw new Error("Not expecting: " + a + " > " + b); in expectFalse()