Lines Matching full:integer
39 // Single element: Integer.MIN_VALUE.
42 case Integer.MIN_VALUE: return 0;
48 // Single element: Integer.MAX_VALUE.
51 case Integer.MAX_VALUE: return 0;
57 // Two elements: 0 and Integer.MIN_VALUE.
61 case Integer.MIN_VALUE: return 1;
67 // Two elements: 0 and Integer.MAX_VALUE.
71 case Integer.MAX_VALUE: return 1;
77 // Two elements: Integer.MIN_VALUE and Integer.MAX_VALUE.
80 case Integer.MIN_VALUE: return 0;
81 case Integer.MAX_VALUE: return 1;