Home
last modified time | relevance | path

Searched refs:stringMap (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
DUnicodeMap.java60 private Map<String,T> stringMap; field in UnicodeMap
77 stringMap = null; in clear()
394 if (stringMap == null) {
395 stringMap = new TreeMap<String,T>();
397 stringMap.put(string, value);
399 } else if (stringMap != null) {
400 if (stringMap.remove(string) != null) {
458 if (unicodeMap.stringMap != null && !unicodeMap.stringMap.isEmpty()) {
459 if (stringMap == null) {
460 stringMap = new TreeMap<String,T>();
[all …]
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DDOMOutputCapsule.java630 Element stringMap = appendElement(name); in writeSavableMap() local
639 currentElement = stringMap; in writeSavableMap()
642 currentElement = (Element) stringMap.getParentNode(); in writeSavableMap()
652 Element stringMap = appendElement(name); in writeStringSavableMap() local
661 currentElement = stringMap; in writeStringSavableMap()
664 currentElement = (Element) stringMap.getParentNode(); in writeStringSavableMap()
674 Element stringMap = appendElement(name); in writeIntSavableMap() local
682 currentElement = stringMap; in writeIntSavableMap()
685 currentElement = (Element) stringMap.getParentNode(); in writeIntSavableMap()
/external/libxml2/
Dxmlregexp.c289 xmlChar **stringMap; member
463 xmlChar **stringMap; in xmlRegEpxFromParse() local
491 stringMap = xmlMalloc(ret->nbAtoms * sizeof(char *)); in xmlRegEpxFromParse()
492 if (stringMap == NULL) { in xmlRegEpxFromParse()
501 xmlFree(stringMap); in xmlRegEpxFromParse()
511 if (xmlStrEqual(stringMap[j], value)) { in xmlRegEpxFromParse()
518 stringMap[nbatoms] = xmlStrdup(value); in xmlRegEpxFromParse()
519 if (stringMap[nbatoms] == NULL) { in xmlRegEpxFromParse()
521 xmlFree(stringMap[i]); in xmlRegEpxFromParse()
523 xmlFree(stringMap); in xmlRegEpxFromParse()
[all …]