Searched refs:stringMap (Results 1 - 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DUnicodeMap.java61 private TreeMap<String,T> stringMap; field in class:UnicodeMap
78 stringMap = null;
124 that.stringMap = stringMap == null ? null : (TreeMap<String, T>) stringMap.clone();
396 if (stringMap == null) {
397 stringMap = new TreeMap<String,T>();
399 stringMap.put(string, value);
401 } else if (stringMap != null) {
402 if (stringMap
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DUnicodeMap.java60 private TreeMap<String,T> stringMap; field in class:UnicodeMap
77 stringMap = null;
123 that.stringMap = stringMap == null ? null : (TreeMap<String, T>) stringMap.clone();
395 if (stringMap == null) {
396 stringMap = new TreeMap<String,T>();
398 stringMap.put(string, value);
400 } else if (stringMap != null) {
401 if (stringMap
[all...]
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DDOMOutputCapsule.java630 Element stringMap = appendElement(name);
639 currentElement = stringMap;
642 currentElement = (Element) stringMap.getParentNode();
652 Element stringMap = appendElement(name);
661 currentElement = stringMap;
664 currentElement = (Element) stringMap.getParentNode();
674 Element stringMap = appendElement(name);
682 currentElement = stringMap;
685 currentElement = (Element) stringMap.getParentNode();
/external/libxml2/
H A Dxmlregexp.c289 xmlChar **stringMap; member in struct:_xmlRegexp
463 xmlChar **stringMap; local
491 stringMap = xmlMalloc(ret->nbAtoms * sizeof(char *));
492 if (stringMap == NULL) {
501 xmlFree(stringMap);
511 if (xmlStrEqual(stringMap[j], value)) {
518 stringMap[nbatoms] = xmlStrdup(value);
519 if (stringMap[nbatoms] == NULL) {
521 xmlFree(stringMap[i]);
523 xmlFree(stringMap);
[all...]

Completed in 194 milliseconds