Home | History | Annotate | Download | only in collect

Lines Matching refs:RIGHT

18 import static com.google.common.collect.BstSide.RIGHT;
55 testLacksChild(leaf, RIGHT);
62 testLacksChild(node, RIGHT);
69 testChildIs(node, RIGHT, leaf);
74 SimpleNode right = new SimpleNode('c', null, null);
75 SimpleNode node = new SimpleNode('b', left, right);
77 testChildIs(node, RIGHT, right);
96 for (SimpleNode right : GOOD_RIGHTS) {
98 new SimpleNode(MIDDLE_KEY, left, right).orderingInvariantHolds(Ordering.natural()));
105 for (SimpleNode right : ALL_RIGHTS) {
107 new SimpleNode(MIDDLE_KEY, left, right).orderingInvariantHolds(Ordering.natural()));
114 for (SimpleNode right : BAD_RIGHTS) {
116 new SimpleNode(MIDDLE_KEY, left, right).orderingInvariantHolds(Ordering.natural()));