Home
last modified time | relevance | path

Searched refs:PathSpaceType (Results 1 – 2 of 2) sorted by relevance

/external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/
DTestDisplayAndInputProcessor.java6 import org.unicode.cldr.test.DisplayAndInputProcessor.PathSpaceType;
416 PathSpaceType pst = PathSpaceType.get(a[i].xpath); in TestWhitespaceNormalization()
426 private PathSpaceType pst;
428 public PathSpaceData(String xpath, String rawValue, String normValue, PathSpaceType pst) { in PathSpaceData()
438 " \u00A0 TEST \u00A0 ", "TEST", PathSpaceType.allowSp), in getArray()
440 "\u00A0 FOO \u00A0\u00A0 BAR \u00A0", "FOO BAR", PathSpaceType.allowSp), in getArray()
442 "\u00A0 DUCK \u00A0 GOOSE \u00A0", "DUCK GOOSE", PathSpaceType.allowSp), in getArray()
445 " \u00A0 ፊደል \u00A0 ", "ፊደል", PathSpaceType.allowNbsp), in getArray()
447 … "\u00A0 ding \u00A0\u00A0 dong \u00A0", "ding\u00A0dong", PathSpaceType.allowNbsp), in getArray()
449 "\u00A0 HA HU \u00A0", "HA\u00A0HU", PathSpaceType.allowNbsp), in getArray()
[all …]
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/test/
DDisplayAndInputProcessor.java1096 PathSpaceType pst = PathSpaceType.get(path); in normalizeWhitespace()
1097 if (pst == PathSpaceType.allowSp) { in normalizeWhitespace()
1099 } else if (pst == PathSpaceType.allowNbsp) { in normalizeWhitespace()
1102 } else if (pst == PathSpaceType.allowNNbsp) { in normalizeWhitespace()
1105 } else if (pst == PathSpaceType.allowSpOrNbsp) { in normalizeWhitespace()
1165 public enum PathSpaceType { enum in DisplayAndInputProcessor
1168 public static PathSpaceType get(String path) { in get()