/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/ |
H A D | AffixPatternMatcher.java | 38 AffixPatternMatcher series = new AffixPatternMatcher(affixPattern); in fromAffixPattern() 39 series.factory = factory; in fromAffixPattern() 40 series.ignorables = (0 != (parseFlags & ParsingUtils.PARSE_FLAG_EXACT_AFFIX)) ? null in fromAffixPattern() 42 series.lastTypeOrCp = 0; in fromAffixPattern() 43 AffixUtils.iterateWithConsumer(affixPattern, series); in fromAffixPattern() 46 series.factory = null; in fromAffixPattern() 47 series.ignorables = null; in fromAffixPattern() 48 series.lastTypeOrCp = 0; in fromAffixPattern() 50 series.freeze(); in fromAffixPattern() 51 return series; in fromAffixPattern() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/ |
H A D | AffixPatternMatcher.java | 40 AffixPatternMatcher series = new AffixPatternMatcher(affixPattern); in fromAffixPattern() 41 series.factory = factory; in fromAffixPattern() 42 series.ignorables = (0 != (parseFlags & ParsingUtils.PARSE_FLAG_EXACT_AFFIX)) ? null in fromAffixPattern() 44 series.lastTypeOrCp = 0; in fromAffixPattern() 45 AffixUtils.iterateWithConsumer(affixPattern, series); in fromAffixPattern() 48 series.factory = null; in fromAffixPattern() 49 series.ignorables = null; in fromAffixPattern() 50 series.lastTypeOrCp = 0; in fromAffixPattern() 52 series.freeze(); in fromAffixPattern() 53 return series; in fromAffixPattern() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | specializationsShouldNotAffectEachOther.js | 6 var series: Series; variable 11 var seriesExtent = (series) => null; 20 var keyExtent2: any[] = series.data.map(function (d: string) { return d; });
23 var series;
variable 25 var seriesExtent = function (series) { return null; };
30 var keyExtent2 = series.data.map(function (d) { return d; });
|
H A D | contextualOverloadListFromArrayUnion.js | 31 export function series<T>(tasks: Task<T>[], callback: Callback<T[]>): void { 55 series([ 76 export function series(tasks, callback) {
100 series([
|
H A D | underscoreMapFirst.js | 33 series: ISeries[]; 44 var allSeries: ISeries[][] = _.pluck(data, "series"); 74 var allSeries = _.pluck(data, "series");
|
/third_party/mesa3d/bin/ |
H A D | gen_calendar_entries.py | 47 series: str 54 series: str 64 LAST_RELEASE = 'This is the last planned release of the {}.x series.' 156 writer.writerow([args.series, date.isoformat(), f'{args.series}.{base}', args.manager]) 159 writer.writerow([None, date.isoformat(), f'{args.series}.{row}', args.manager]) 161 writer.writerow([None, date.isoformat(), f'{args.series}.3', args.manager, LAST_RELEASE.format(args.series)]) 163 commit(f'docs: Add calendar entries for {args.series} release.') 184 if row[0] == args.series [all...] |
H A D | gen_calendar_entries_test.py | 152 ('', '2021-01-27', '20.3.4', 'Dylan Baker', 'Last planned release of the 20.3.x series'), 193 ('', '2021-01-27', '20.3.4', 'Dylan Baker', 'This is the last planned release of the 20.3.x series.'), 197 args.series = '20.3' 208 ('', '2021-02-24', '20.3.6', 'Dylan Baker', 'This is the last planned release of the 20.3.x series.'), 215 ('', '2021-01-27', '20.3.4', 'Dylan Baker', 'This is the last planned release of the 20.3.x series.'), 219 ('', '2021-02-24', '21.0.4', 'Dylan Baker', 'This is the last planned release of the 21.0.x series.'), 223 args.series = '21.0' 235 ('', '2021-03-10', '21.0.5', 'Dylan Baker', 'This is the last planned release of the 21.0.x series.'), 243 ('', '2021-01-27', '20.3.4', 'Dylan Baker', 'This is the last planned release of the 20.3.x series.'), 249 args.series [all...] |
/third_party/protobuf/js/ |
H A D | gulpfile.js | 148 gulp.task('dist', gulp.series(['genproto_wellknowntypes'], function(cb) { 185 gulp.series( 219 gulp.series( 236 gulp.series( 251 gulp.task('test_commonjs', gulp.series(['make_commonjs_out'], function(cb) { 260 gulp.task('test', gulp.series(['test_closure', 'test_commonjs'], function(cb) {
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/ |
H A D | NumberParserTest.java | 217 SeriesMatcher series = new SeriesMatcher(); in testSeriesMatcher() 218 series.addMatcher(PlusSignMatcher.getInstance(symbols, false)); in testSeriesMatcher() 219 series.addMatcher(MinusSignMatcher.getInstance(symbols, false)); in testSeriesMatcher() 220 series.addMatcher(IgnorablesMatcher.getInstance(0)); in testSeriesMatcher() 221 series.addMatcher(PercentMatcher.getInstance(symbols)); in testSeriesMatcher() 222 series.addMatcher(IgnorablesMatcher.getInstance(0)); in testSeriesMatcher() 223 series.freeze(); in testSeriesMatcher() 225 assertFalse(series.smokeTest(new StringSegment("x", false))); in testSeriesMatcher() 226 assertFalse(series.smokeTest(new StringSegment("-", false))); in testSeriesMatcher() 227 assertTrue(series in testSeriesMatcher() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
H A D | NumberParserTest.java | 214 SeriesMatcher series = new SeriesMatcher(); in testSeriesMatcher() 215 series.addMatcher(PlusSignMatcher.getInstance(symbols, false)); in testSeriesMatcher() 216 series.addMatcher(MinusSignMatcher.getInstance(symbols, false)); in testSeriesMatcher() 217 series.addMatcher(IgnorablesMatcher.getInstance(0)); in testSeriesMatcher() 218 series.addMatcher(PercentMatcher.getInstance(symbols)); in testSeriesMatcher() 219 series.addMatcher(IgnorablesMatcher.getInstance(0)); in testSeriesMatcher() 220 series.freeze(); in testSeriesMatcher() 222 assertFalse(series.smokeTest(new StringSegment("x", false))); in testSeriesMatcher() 223 assertFalse(series.smokeTest(new StringSegment("-", false))); in testSeriesMatcher() 224 assertTrue(series in testSeriesMatcher() [all...] |
/third_party/astc-encoder/Test/ |
H A D | astc_test_competitive_plot.py | 60 for series in series_set: 61 plt.scatter(series.perf, series.qual, s=2, label=series.name)
|
H A D | astc_test_result_plot.py | 201 for k, series in enumerate(blockSizes): 202 fn = lambda x: x.blkSz == series 211 label = "%s blocks" % series 265 # Latest in stable series charts 274 "results-relative-stable-series.png", 284 "results-absolute-stable-series.png",
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | numbertest_parse.cpp | 206 ArraySeriesMatcher series(matchers, 5); in testSeriesMatcher() 208 assertFalse("", series.smokeTest(StringSegment(u"x", false))); in testSeriesMatcher() 209 assertFalse("", series.smokeTest(StringSegment(u"-", false))); in testSeriesMatcher() 210 assertTrue("", series.smokeTest(StringSegment(u"+", false))); in testSeriesMatcher() 235 bool actualMaybeMore = series.match(segment, result, status); in testSeriesMatcher()
|
/third_party/python/Lib/test/ |
H A D | audit-tests.py | 54 def assertIn(el, series): 55 if el not in series: 56 raise AssertionError(f"{el!r} should be in {series!r}") 59 def assertNotIn(el, series): 60 if el in series: 61 raise AssertionError(f"{el!r} should not be in {series!r}")
|
/third_party/skia/src/gpu/ |
H A D | GrFragmentProcessor.cpp | 456 std::unique_ptr<GrFragmentProcessor> series[2] = {std::move(g), std::move(f)}; 457 GrColorFragmentProcessorAnalysis info(inputColor, series, SK_ARRAY_COUNT(series)); 468 return ComposeProcessor::Make(/*f=*/std::move(series[1]), /*g=*/std::move(series[0])); 471 return ComposeProcessor::Make(/*f=*/std::move(series[1]),
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/Config/ |
H A D | Query.pm | 44 in keyed pair form, i.e. a series of C<< key => value >> pairs. Available
|
/third_party/openssl/util/perl/OpenSSL/Config/ |
H A D | Query.pm | 44 in keyed pair form, i.e. a series of C<< key => value >> pairs. Available
|
/third_party/ffmpeg/libavcodec/ |
H A D | lagarith.c | 104 static const uint8_t series[] = { 1, 2, 3, 5, 8, 13, 21 }; in lag_decode_prob() local 117 bits += series[i]; in lag_decode_prob()
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | Ordinals.pm | 67 in keyed pair form, i.e. a series of C<< key => value >> pairs. Available 247 given in form keyed pair form, i.e. a series of C<< key => value >> pairs. 745 options in keyed pair form, i.e. a series of C<< key => value >> pairs.
|
/third_party/openssl/util/perl/OpenSSL/ |
H A D | Ordinals.pm | 67 in keyed pair form, i.e. a series of C<< key => value >> pairs. Available 247 given in form keyed pair form, i.e. a series of C<< key => value >> pairs. 745 options in keyed pair form, i.e. a series of C<< key => value >> pairs.
|