HomeSort by relevance Sort by last modified time
    Searched refs:hm1 (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/test/java/tests/api/java/util/
LinkedHashMapTest.java 401 LinkedHashMap<String, String> hm1 = new LinkedHashMap<String, String>(10, 0.75f, true); local
402 hm1.put("a", "a");
403 hm1.put("b", "b");
404 hm1.put("c", "c");
405 LinkedHashMap<String, String> hm2 = (LinkedHashMap<String, String>) hm1.clone();
406 hm1.get("a");
409 Iterator<Map.Entry<String,String>> iterator = hm1.entrySet().iterator();
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch.java 716 String[] hm1 = diff_halfMatchI(longtext, shorttext, local
722 if (hm1 == null && hm2 == null) {
725 hm = hm1;
726 } else if (hm1 == null) {
730 hm = hm1[4].length() > hm2[4].length() ? hm1 : hm2;
    [all...]

Completed in 3402 milliseconds