Home
last modified time | relevance | path

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

/external/deqp/external/openglcts/modules/common/
DglcExposedExtensionsTests.cpp44 const std::vector<std::string> *allowedExceptions = NULL);
68 const std::vector<std::string> *allowedExceptions) in ExposedExtensionsTest() argument
74 if (allowedExceptions) in ExposedExtensionsTest()
76 m_allowedExceptions = *allowedExceptions; in ExposedExtensionsTest()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DLocaleValidator.java110 private final Multimap<LstrType, AllowedMatch> allowedExceptions; field in LocaleValidator.AllowedValid
119 Collection<AllowedMatch> allowedMatches = allowedExceptions.get(lstrType); in isAllowed()
131 public AllowedValid(Set<Validity.Status> allowedStatus, Object... allowedExceptions) { in AllowedValid() argument
137 if (allowedExceptions != null) { in AllowedValid()
138 for (int i = 0; i < allowedExceptions.length; i += 2) { in AllowedValid()
140 (LstrType) allowedExceptions[i], in AllowedValid()
141 (AllowedMatch) allowedExceptions[i + 1]); in AllowedValid()
144 this.allowedExceptions = ImmutableMultimap.copyOf(allowed); in AllowedValid()
149 return allowedStatus + " " + allowedExceptions; in toString()