OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatcherPattern
(Results
1 - 5
of
5
) sorted by null
/external/cldr/tools/java/org/unicode/cldr/util/
AttributeValueValidity.java
50
private static Map<DtdType, Map<String, Map<String,
MatcherPattern
>>> dtd_element_attribute_validity = new EnumMap<>(DtdType.class);
51
private static Map<String,
MatcherPattern
> common_attribute_validity = new LinkedHashMap<String,
MatcherPattern
>();
52
private static Map<String,
MatcherPattern
> variables = new LinkedHashMap<String,
MatcherPattern
>();
141
//
MatcherPattern
m = new
MatcherPattern
(key.toString(), validItems.toString(), new CollectionMatcher(validItems));
151
//
MatcherPattern
m = new
MatcherPattern
(key.toString(), all.toString(), new CollectionMatcher(all));
153
//
MatcherPattern
m2 = new MatcherPattern(key.toString(), regularAndUnknown.toString(), new CollectionMatcher(regula (…)
[
all
...]
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
ObjectMatcherFactory.java
82
Map<String, ObjectMatcherFactory.
MatcherPattern
> m, String key,
186
Map<String, ObjectMatcherFactory.
MatcherPattern
> col,
188
ObjectMatcherFactory.
MatcherPattern
mpTemp = col.get(key);
200
public static class
MatcherPattern
{
TestAttributeValues.java
16
import org.unicode.cldr.util.AttributeValueValidity.
MatcherPattern
;
44
MatcherPattern
mp = AttributeValueValidity.getMatcherPattern("$language");
TestLocale.java
17
import org.unicode.cldr.util.AttributeValueValidity.
MatcherPattern
;
233
final
MatcherPattern
SCRIPT_NON_UNICODE = AttributeValueValidity.getMatcherPattern("$scriptNonUnicode");
/external/cldr/tools/java/org/unicode/cldr/test/
CheckAttributeValues.java
51
static Map<String, Map<String,
MatcherPattern
>> element_attribute_validity = new HashMap<String, Map<String,
MatcherPattern
>>();
52
static Map<String,
MatcherPattern
> common_attribute_validity = new HashMap<String,
MatcherPattern
>();
53
static Map<String,
MatcherPattern
> variables = new HashMap<String,
MatcherPattern
>();
96
Map<String,
MatcherPattern
> attribute_validity = element_attribute_validity.get(element);
184
private boolean check(Map<String,
MatcherPattern
> attribute_validity, String attribute, String attributeValue,
189
MatcherPattern
matcherPattern
= attribute_validity.get(attribute)
[
all
...]
Completed in 1371 milliseconds