/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
D | HtmlStripFunction.java | 46 Map<String, String> tempMap = new HashMap<String, String>(); 49 tempMap.put("amp", "&"); 50 tempMap.put("quot", "\""); 51 tempMap.put("gt", ">"); 52 tempMap.put("lt", "<"); 54 tempMap.put("agrave", "\u00e0"); 55 tempMap.put("aacute", "\u00e1"); 56 tempMap.put("acirc", "\u00e2"); 57 tempMap.put("atilde", "\u00e3"); 58 tempMap.put("auml", "\u00e4"); [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/props/ |
D | RandomStringGenerator.java | 40 UnicodeMap tempMap = factory.getProperty("GraphemeClusterBreak").getUnicodeMap(); in init() local 41 extendedMap.putAll(tempMap.keySet("CR"), "CR"); in init() 42 extendedMap.putAll(tempMap.keySet("LF"), "LF"); in init() 43 extendedMap.putAll(tempMap.keySet("Extend"), "GCExtend"); in init() 44 extendedMap.putAll(tempMap.keySet("Control"), "GCControl"); in init()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | DateTimePatternGenerator.java | 431 HashMap<String, String[]> tempMap; field in DateTimePatternGenerator.DayPeriodAllowedHoursSink 433 private DayPeriodAllowedHoursSink(HashMap<String, String[]> tempMap) { in DayPeriodAllowedHoursSink() argument 434 this.tempMap = tempMap; in DayPeriodAllowedHoursSink() 465 tempMap.put(regionOrLocale, list); in put()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateTimePatternGenerator.java | 435 HashMap<String, String[]> tempMap; field in DateTimePatternGenerator.DayPeriodAllowedHoursSink 437 private DayPeriodAllowedHoursSink(HashMap<String, String[]> tempMap) { in DayPeriodAllowedHoursSink() argument 438 this.tempMap = tempMap; in DayPeriodAllowedHoursSink() 469 tempMap.put(regionOrLocale, list); in put()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | XMLSource.java | 96 public void putAll(Map<String, String> tempMap, int conflict_resolution) { in putAll() argument 97 for (Iterator<String> it = tempMap.keySet().iterator(); it.hasNext();) { in putAll() 100 putValueAtPath(path, tempMap.get(path)); in putAll()
|
D | CldrUtility.java | 508 LinkedHashMap tempMap = new LinkedHashMap<>(sourceMap); // copy contents in protectCollectionX() local 510 for (Object key : tempMap.keySet()) { in protectCollectionX() 511 sourceMap.put(protectCollection(key), protectCollectionX(tempMap.get(key))); in protectCollectionX()
|
/external/skia/src/core/ |
D | SkMatrix.cpp | 1423 SkMatrix tempMap, result; in setPolyToPoly() local 1425 if (!proc(src, &tempMap)) { in setPolyToPoly() 1428 if (!tempMap.invert(&result)) { in setPolyToPoly() 1431 if (!proc(dst, &tempMap)) { in setPolyToPoly() 1434 this->setConcat(tempMap, result); in setPolyToPoly()
|
/external/skqp/src/core/ |
D | SkMatrix.cpp | 1400 SkMatrix tempMap, result; in setPolyToPoly() local 1402 if (!proc(src, &tempMap)) { in setPolyToPoly() 1405 if (!tempMap.invert(&result)) { in setPolyToPoly() 1408 if (!proc(dst, &tempMap)) { in setPolyToPoly() 1411 this->setConcat(tempMap, result); in setPolyToPoly()
|