Searched defs:EQ (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/util/
H A DDisabledAlgorithmConstraints.java382 EQ, // "==" enum constant in enum:DisabledAlgorithmConstraints.Constraint.Operator
392 return EQ;
477 case EQ: // an unavailable key size
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java1215 private static final int EQ = 1; field in class:ConcurrentSkipListMap
1222 * @param rel the relation -- OR'ed combination of EQ, LT, GT
1243 if ((c == 0 && (rel & EQ) != 0) ||
1257 * @param rel the relation -- OR'ed combination of EQ, LT, GT
2148 return getNear(key, LT|EQ);
2157 Node<K,V> n = findNear(key, LT|EQ, comparator);
2171 return getNear(key, GT|EQ);
2179 Node<K,V> n = findNear(key, GT|EQ, comparator);
2658 return m.findNear(lo, GT|EQ, cmp);
2671 return m.findNear(hi, LT|EQ, cm
[all...]

Completed in 21 milliseconds