Home | History | Annotate | Download | only in jsr166

Lines Matching refs:BI

34     static class BI implements Comparable<BI> {
36 BI(int value) { this.value = value; }
37 public int compareTo(BI other) {
41 return (x instanceof BI) && ((BI)x).value == value;
45 static class CI extends BI { CI(int value) { super(value); } }
46 static class DI extends BI { DI(int value) { super(value); } }
88 ConcurrentHashMap<BI, Boolean> m =
89 new ConcurrentHashMap<BI, Boolean>();
107 BI bi = new BI(i);
109 LexicographicList<BI> bis = new LexicographicList<BI>(bi);
118 assertTrue(m.containsKey(new ArrayList(Collections.singleton(new BI(i)))));
131 m.put(new ArrayList(Collections.singleton(new BI(i))), true);
135 LexicographicList<BI> bis = new LexicographicList<BI>(new BI(i));