Searched refs:b2i (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DConstFold.java70 private static Integer b2i(boolean b) { method in class:ConstFold
115 return syms.booleanType.constType(b2i(intValue(od) == 0));
117 return syms.booleanType.constType(b2i(intValue(od) == 0));
119 return syms.booleanType.constType(b2i(intValue(od) != 0));
121 return syms.booleanType.constType(b2i(intValue(od) < 0));
123 return syms.booleanType.constType(b2i(intValue(od) > 0));
125 return syms.booleanType.constType(b2i(intValue(od) <= 0));
127 return syms.booleanType.constType(b2i(intValue(od) >= 0));
183 return syms.booleanType.constType(b2i((intValue(l) & intValue(r)) != 0));
189 return syms.booleanType.constType(b2i((intValu
[all...]

Completed in 29 milliseconds