Home
last modified time | relevance | path

Searched refs:smokeTest (Results 1 – 25 of 68) sorted by relevance

123

/external/cronet/third_party/icu/source/i18n/
Dnumparse_compositions.cpp64 bool SeriesMatcher::smokeTest(const StringSegment& segment) const { in smokeTest() function in SeriesMatcher
70 return matcher->smokeTest(segment); in smokeTest()
Dnumparse_affixes.cpp188 bool CodePointMatcher::smokeTest(const StringSegment& segment) const { in smokeTest() function in CodePointMatcher
417 bool AffixMatcher::smokeTest(const StringSegment& segment) const { in smokeTest() function in AffixMatcher
418 return (fPrefix != nullptr && fPrefix->smokeTest(segment)) || in smokeTest()
419 (fSuffix != nullptr && fSuffix->smokeTest(segment)); in smokeTest()
Dnumparse_affixes.h39 bool smokeTest(const StringSegment& segment) const override;
182 bool smokeTest(const StringSegment& segment) const override;
Dnumparse_scientific.h29 bool smokeTest(const StringSegment& segment) const override;
Dnumparse_currency.h42 bool smokeTest(const StringSegment& segment) const override;
/external/icu/icu4c/source/i18n/
Dnumparse_compositions.cpp64 bool SeriesMatcher::smokeTest(const StringSegment& segment) const { in smokeTest() function in SeriesMatcher
70 return matcher->smokeTest(segment); in smokeTest()
Dnumparse_affixes.cpp188 bool CodePointMatcher::smokeTest(const StringSegment& segment) const { in smokeTest() function in CodePointMatcher
417 bool AffixMatcher::smokeTest(const StringSegment& segment) const { in smokeTest() function in AffixMatcher
418 return (fPrefix != nullptr && fPrefix->smokeTest(segment)) || in smokeTest()
419 (fSuffix != nullptr && fSuffix->smokeTest(segment)); in smokeTest()
Dnumparse_affixes.h39 bool smokeTest(const StringSegment& segment) const override;
182 bool smokeTest(const StringSegment& segment) const override;
Dnumparse_scientific.h29 bool smokeTest(const StringSegment& segment) const override;
Dnumparse_currency.h42 bool smokeTest(const StringSegment& segment) const override;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
DSeriesMatcher.java88 public boolean smokeTest(StringSegment segment) { in smokeTest() method in SeriesMatcher
96 return matchers.get(0).smokeTest(segment); in smokeTest()
DAffixMatcher.java218 public boolean smokeTest(StringSegment segment) { in smokeTest() method in AffixMatcher
219 return (prefix != null && prefix.smokeTest(segment)) in smokeTest()
220 || (suffix != null && suffix.smokeTest(segment)); in smokeTest()
DValidationMatcher.java18 public boolean smokeTest(StringSegment segment) { in smokeTest() method in ValidationMatcher
DNumberParseMatcher.java58 public boolean smokeTest(StringSegment segment); in smokeTest() method
DCodePointMatcher.java35 public boolean smokeTest(StringSegment segment) { in smokeTest() method in CodePointMatcher
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/parse/
DSeriesMatcher.java90 public boolean smokeTest(StringSegment segment) { in smokeTest() method in SeriesMatcher
98 return matchers.get(0).smokeTest(segment); in smokeTest()
DAffixMatcher.java220 public boolean smokeTest(StringSegment segment) { in smokeTest() method in AffixMatcher
221 return (prefix != null && prefix.smokeTest(segment)) in smokeTest()
222 || (suffix != null && suffix.smokeTest(segment)); in smokeTest()
DValidationMatcher.java20 public boolean smokeTest(StringSegment segment) { in smokeTest() method in ValidationMatcher
DNumberParseMatcher.java61 public boolean smokeTest(StringSegment segment); in smokeTest() method
DCodePointMatcher.java37 public boolean smokeTest(StringSegment segment) { in smokeTest() method in CodePointMatcher
/external/icu/libicu/cts_headers/
Dnumparse_affixes.h39 bool smokeTest(const StringSegment& segment) const override;
182 bool smokeTest(const StringSegment& segment) const override;
Dnumparse_scientific.h29 bool smokeTest(const StringSegment& segment) const override;
/external/kotlinx.coroutines/integration-testing/
Dsettings.gradle10 include 'smokeTest'
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
DNumberParserTest.java225 assertFalse(series.smokeTest(new StringSegment("x", false))); in testSeriesMatcher()
226 assertFalse(series.smokeTest(new StringSegment("-", false))); in testSeriesMatcher()
227 assertTrue(series.smokeTest(new StringSegment("+", false))); in testSeriesMatcher()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DNumberParserTest.java222 assertFalse(series.smokeTest(new StringSegment("x", false))); in testSeriesMatcher()
223 assertFalse(series.smokeTest(new StringSegment("-", false))); in testSeriesMatcher()
224 assertTrue(series.smokeTest(new StringSegment("+", false))); in testSeriesMatcher()

123