/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/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateTimePatternGenerator.java | 370 HashMap<String, String[]> tempMap; field in DateTimePatternGenerator.DayPeriodAllowedHoursSink 372 private DayPeriodAllowedHoursSink(HashMap<String, String[]> tempMap) { in DayPeriodAllowedHoursSink() argument 373 this.tempMap = tempMap; in DayPeriodAllowedHoursSink() 384 tempMap.put(regionOrLocale, value.getStringArrayOrStringAsArray()); in put()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | DateTimePatternGenerator.java | 366 HashMap<String, String[]> tempMap; field in DateTimePatternGenerator.DayPeriodAllowedHoursSink 368 private DayPeriodAllowedHoursSink(HashMap<String, String[]> tempMap) { in DayPeriodAllowedHoursSink() argument 369 this.tempMap = tempMap; in DayPeriodAllowedHoursSink() 380 tempMap.put(regionOrLocale, value.getStringArrayOrStringAsArray()); in put()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | XMLSource.java | 85 public void putAll(Map<String, String> tempMap, int conflict_resolution) { in putAll() argument 86 for (Iterator<String> it = tempMap.keySet().iterator(); it.hasNext();) { in putAll() 89 putValueAtPath(path, tempMap.get(path)); in putAll()
|
D | CldrUtility.java | 491 LinkedHashMap tempMap = new LinkedHashMap<>(sourceMap); // copy contents in protectCollectionX() local 493 for (Object key : tempMap.keySet()) { in protectCollectionX() 494 sourceMap.put(protectCollection(key), protectCollectionX(tempMap.get(key))); in protectCollectionX()
|
/external/skia/src/core/ |
D | SkMatrix.cpp | 1412 SkMatrix tempMap, result; in setPolyToPoly() local 1414 if (!proc(src, &tempMap)) { in setPolyToPoly() 1417 if (!tempMap.invert(&result)) { in setPolyToPoly() 1420 if (!proc(dst, &tempMap)) { in setPolyToPoly() 1423 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()
|