Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
DResourceUtilsTests.java33 assertNull(ResourceUtils.findConstantForKeyValuePairs(anyKeyValue, nullArray)); in testFindConstantForKeyValuePairsSimple()
34 assertNull(ResourceUtils.findConstantForKeyValuePairs(emptyKeyValue, nullArray)); in testFindConstantForKeyValuePairsSimple()
35 assertNull(ResourceUtils.findConstantForKeyValuePairs(nullKeyValue, nullArray)); in testFindConstantForKeyValuePairsSimple()
38 assertNull(ResourceUtils.findConstantForKeyValuePairs(anyKeyValue, emptyArray)); in testFindConstantForKeyValuePairsSimple()
39 assertNull(ResourceUtils.findConstantForKeyValuePairs(emptyKeyValue, emptyArray)); in testFindConstantForKeyValuePairsSimple()
40 assertNull(ResourceUtils.findConstantForKeyValuePairs(nullKeyValue, emptyArray)); in testFindConstantForKeyValuePairsSimple()
53 assertEquals("0.3", ResourceUtils.findConstantForKeyValuePairs(keyValues, array)); in testFindConstantForKeyValuePairsSimple()
55 assertEquals("0.4", ResourceUtils.findConstantForKeyValuePairs(keyValues, array)); in testFindConstantForKeyValuePairsSimple()
57 assertEquals("0.2", ResourceUtils.findConstantForKeyValuePairs(keyValues, array)); in testFindConstantForKeyValuePairsSimple()
61 assertNull(ResourceUtils.findConstantForKeyValuePairs(keyValues, array)); in testFindConstantForKeyValuePairsSimple()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DResourceUtils.java79 final String overrideValue = findConstantForKeyValuePairs(sBuildKeyValues, overrideArray); in getDeviceOverrideValue()
125 static String findConstantForKeyValuePairs(final HashMap<String, String> keyValuePairs, in findConstantForKeyValuePairs() method in ResourceUtils