Searched defs:checkKeyValue (Results 1 - 4 of 4) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DMapConstraint.java30 * public void checkKeyValue(Object key, Object value) {
57 void checkKeyValue(@Nullable K key, @Nullable V value); method in interface:MapConstraint
H A DMapConstraints.java61 public void checkKeyValue(Object key, Object value) { method in class:MapConstraints.NotNullMapConstraint
192 constraint.checkKeyValue(getKey(), value);
222 constraint.checkKeyValue(getKey(), value);
312 constraint.checkKeyValue(key, value);
365 constraint.checkKeyValue(key, value);
391 public void checkKeyValue(K key, V value) { method in class:MapConstraints.InverseConstraint
392 constraint.checkKeyValue(value, key);
476 constraint.checkKeyValue(key, value);
483 constraint.checkKeyValue(key, value);
770 constraint.checkKeyValue(ke
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DConstrainedBiMapTest.java40 public void checkKeyValue(Integer key, String value) { method in class:ConstrainedBiMapTest.TestConstraint
H A DMapConstraintsTest.java72 public void checkKeyValue(String key, Integer value) { method in class:MapConstraintsTest.TestConstraint
85 constraint.checkKeyValue("foo", 1);
88 constraint.checkKeyValue(null, 1);
92 constraint.checkKeyValue("foo", null);
96 constraint.checkKeyValue(null, null);

Completed in 335 milliseconds