Home
last modified time | relevance | path

Searched refs:BS (Results 1 – 1 of 1) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
DConcurrentHashMapTest.java72 static class BS implements Comparable<BS> { class in ConcurrentHashMapTest
74 BS(String value) { this.value = value; } in BS() method in ConcurrentHashMapTest.BS
75 public int compareTo(BS other) { in compareTo()
79 return (x instanceof BS) && value.equals(((BS)x).value); in equals()
145 BS bs = new BS(String.valueOf(i)); in testGenericComparable()
147 LexicographicList<BS> bss = new LexicographicList<BS>(bs); in testGenericComparable()