/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/ |
D | SeriesMatcher.java | 18 protected List<NumberParseMatcher> matchers = null; field in SeriesMatcher 23 if (matchers == null) { in addMatcher() 24 matchers = new ArrayList<NumberParseMatcher>(); in addMatcher() 26 matchers.add(matcher); in addMatcher() 34 return matchers == null ? 0 : matchers.size(); in length() 40 if (matchers == null) { in match() 50 for (int i = 0; i < matchers.size();) { in match() 51 NumberParseMatcher matcher = matchers.get(i); in match() 69 …if (i < matchers.size() && segment.getOffset() != result.charEnd && result.charEnd > matcherOffset… in match() 90 if (matchers == null) { in smokeTest() [all …]
|
D | NumberParserImpl.java | 270 private final List<NumberParseMatcher> matchers; field in NumberParserImpl 280 matchers = new ArrayList<>(); in NumberParserImpl() 287 this.matchers.add(matcher); in addMatcher() 290 public void addMatchers(Collection<? extends NumberParseMatcher> matchers) { in addMatchers() argument 292 this.matchers.addAll(matchers); in addMatchers() 335 for (NumberParseMatcher matcher : matchers) { in parse() 343 for (int i = 0; i < matchers.size();) { 348 NumberParseMatcher matcher = matchers.get(i); 387 for (int i = 0; i < matchers.size(); i++) { 388 NumberParseMatcher matcher = matchers.get(i); [all …]
|
D | AffixMatcher.java | 91 ArrayList<AffixMatcher> matchers = new ArrayList<>(6); in createMatchers() local 143 matchers.add(getInstance(prefix, suffix, flags)); in createMatchers() 147 matchers.add(getInstance(prefix, null, flags)); in createMatchers() 150 matchers.add(getInstance(null, suffix, flags)); in createMatchers() 156 Collections.sort(matchers, COMPARATOR); in createMatchers() 157 output.addMatchers(matchers); in createMatchers()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/ |
D | SeriesMatcher.java | 20 protected List<NumberParseMatcher> matchers = null; field in SeriesMatcher 25 if (matchers == null) { in addMatcher() 26 matchers = new ArrayList<NumberParseMatcher>(); in addMatcher() 28 matchers.add(matcher); in addMatcher() 36 return matchers == null ? 0 : matchers.size(); in length() 42 if (matchers == null) { in match() 52 for (int i = 0; i < matchers.size();) { in match() 53 NumberParseMatcher matcher = matchers.get(i); in match() 71 …if (i < matchers.size() && segment.getOffset() != result.charEnd && result.charEnd > matcherOffset… in match() 92 if (matchers == null) { in smokeTest() [all …]
|
D | NumberParserImpl.java | 272 private final List<NumberParseMatcher> matchers; field in NumberParserImpl 282 matchers = new ArrayList<>(); in NumberParserImpl() 289 this.matchers.add(matcher); in addMatcher() 292 public void addMatchers(Collection<? extends NumberParseMatcher> matchers) { in addMatchers() argument 294 this.matchers.addAll(matchers); in addMatchers() 337 for (NumberParseMatcher matcher : matchers) { in parse() 345 for (int i = 0; i < matchers.size();) { 350 NumberParseMatcher matcher = matchers.get(i); 389 for (int i = 0; i < matchers.size(); i++) { 390 NumberParseMatcher matcher = matchers.get(i); [all …]
|
D | AffixMatcher.java | 93 ArrayList<AffixMatcher> matchers = new ArrayList<>(6); in createMatchers() local 145 matchers.add(getInstance(prefix, suffix, flags)); in createMatchers() 149 matchers.add(getInstance(prefix, null, flags)); in createMatchers() 152 matchers.add(getInstance(null, suffix, flags)); in createMatchers() 158 Collections.sort(matchers, COMPARATOR); in createMatchers() 159 output.addMatchers(matchers); in createMatchers()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
D | mock_overload_set.h | 49 auto gmock_Call(MockURBG& gen, const ::testing::Matcher<Args>&... matchers) 50 -> decltype(MockHelpers::MockFor<KeyT>(gen).gmock_Call(matchers...)) { 53 return MockHelpers::MockFor<KeyT>(gen).gmock_Call(matchers...); 66 const ::testing::Matcher<Args>&... matchers) 68 matchers...)) { 71 return MockHelpers::MockFor<KeyT>(gen).gmock_Call(matcher, matchers...);
|
/third_party/googletest/docs/reference/ |
D | mocking.md | 61 `EXPECT_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))` 65 that match the given matchers *`matchers...`*. `EXPECT_CALL` must precede any 68 The parameter *`matchers...`* is a comma-separated list of 69 [matchers](../gmock_for_dummies.md#matchers-what-arguments-do-we-expect) that 72 matchers. If `(`*`matchers...`*`)` is omitted, the expectation behaves as if 73 each argument's matcher were a [wildcard matcher (`_`)](matchers.md#wildcard). 74 See the [Matchers Reference](matchers.md) for a list of all built-in matchers. 80 EXPECT_CALL(mock_object, method_name(matchers...)) 116 GoogleTest provides some built-in matchers for 2-tuples, including the `Lt()` 117 matcher above. See [Multi-argument Matchers](matchers.md#MultiArgMatchers). [all …]
|
D | matchers.md | 17 Built-in matchers (where `argument` is the function argument, e.g. 19 `EXPECT_CALL(mock_object, method(matchers))`, the arguments of `method`) are 20 divided into several categories. All matchers are defined in the `::testing` 49 Except `Ref()`, these matchers make a *copy* of `value` in case it's modified or 71 The above matchers use ULP-based comparison (the same as used in googletest). 104 [here](../advanced.md#regular-expression-syntax). All of these matchers, except 121 …` | The same as `ElementsAre()` except that the expected element values/matchers come from an init… 123 …rderedElementsAre(x0, x1, ..., xk)` for some subset `{x0, x1, ..., xk}` of the expected matchers. | 124 …f(array, count)` | Some subset of `argument` matches `UnorderedElementsAre(`expected matchers`)`. | 128 …ame as `UnorderedElementsAre()` except that the expected element values/matchers come from an init… [all …]
|
D | assertions.md | 76 The following assertion allows [matchers](matchers.md) to be used to verify 84 Verifies that *`value`* matches the [matcher](matchers.md) *`matcher`*. 115 GoogleTest provides a built-in library of matchers—see the 116 [Matchers Reference](matchers.md). It is also possible to write your own 117 matchers—see [Writing New Matchers Quickly](../gmock_cook_book.md#NewMatchers). 118 The use of matchers makes `EXPECT_THAT` a powerful, extensible assertion. 568 The parameter *`matcher`* is either a [matcher](matchers.md) for a `const 572 [`ContainsRegex(s)`](matchers.md#string-matchers), **not** 573 [`Eq(s)`](matchers.md#generic-comparison). 620 The parameter *`matcher`* is either a [matcher](matchers.md) for a `const [all …]
|
/third_party/googletest/googlemock/test/ |
D | gmock-internal-utils_test.cc | 287 std::tuple<> matchers; in TEST() local 290 EXPECT_TRUE(TupleMatches(matchers, values)); in TEST() 294 std::tuple<Matcher<int> > matchers(Eq(1)); in TEST() local 297 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST() 298 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST() 302 std::tuple<Matcher<int>, Matcher<char> > matchers(Eq(1), Eq('a')); in TEST() local 306 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST() 307 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST() 308 EXPECT_FALSE(TupleMatches(matchers, values3)); in TEST() 309 EXPECT_FALSE(TupleMatches(matchers, values4)); in TEST() [all …]
|
/third_party/googletest/ |
D | BUILD.gn | 30 "googletest/include/gtest/gtest-matchers.h", 58 "googletest/src/gtest-matchers.cc", 129 "googlemock/include/gmock/gmock-matchers.h", 131 "googlemock/include/gmock/gmock-more-matchers.h", 135 "googlemock/include/gmock/internal/custom/gmock-matchers.h", 143 "googlemock/src/gmock-matchers.cc",
|
/third_party/icu/icu4c/source/test/intltest/ |
D | numbertest_parse.cpp | 199 ArraySeriesMatcher::MatcherArray matchers(5, status); in testSeriesMatcher() local 201 matchers[0] = &m0; in testSeriesMatcher() 202 matchers[1] = &m1; in testSeriesMatcher() 203 matchers[2] = &m2; in testSeriesMatcher() 204 matchers[3] = &m3; in testSeriesMatcher() 205 matchers[4] = &m4; in testSeriesMatcher() 206 ArraySeriesMatcher series(matchers, 5); in testSeriesMatcher()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | numparse_compositions.cpp | 86 ArraySeriesMatcher::ArraySeriesMatcher(MatcherArray& matchers, int32_t matchersLen) in ArraySeriesMatcher() argument 87 : fMatchers(std::move(matchers)), fMatchersLen(matchersLen) { in ArraySeriesMatcher()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | numparse_compositions.cpp | 87 ArraySeriesMatcher::ArraySeriesMatcher(MatcherArray& matchers, int32_t matchersLen) in ArraySeriesMatcher() argument 88 : fMatchers(std::move(matchers)), fMatchersLen(matchersLen) { in ArraySeriesMatcher()
|
/third_party/icu/icu4c/source/i18n/ |
D | numparse_compositions.cpp | 87 ArraySeriesMatcher::ArraySeriesMatcher(MatcherArray& matchers, int32_t matchersLen) in ArraySeriesMatcher() argument 88 : fMatchers(std::move(matchers)), fMatchersLen(matchersLen) { in ArraySeriesMatcher()
|
D | numparse_compositions.h | 102 ArraySeriesMatcher(MatcherArray& matchers, int32_t matchersLen);
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | numparse_compositions.cpp | 87 ArraySeriesMatcher::ArraySeriesMatcher(MatcherArray& matchers, int32_t matchersLen) in ArraySeriesMatcher() argument 88 : fMatchers(std::move(matchers)), fMatchersLen(matchersLen) { in ArraySeriesMatcher()
|
/third_party/googletest/googlemock/include/gmock/ |
D | gmock-matchers.h | 626 static void ExplainMatchFailuresTo(const MatcherTuple& matchers, in ExplainMatchFailuresTo() argument 630 TuplePrefix<N - 1>::ExplainMatchFailuresTo(matchers, values, os); in ExplainMatchFailuresTo() 635 std::get<N - 1>(matchers); in ExplainMatchFailuresTo() 641 std::get<N - 1>(matchers).DescribeTo(os); in ExplainMatchFailuresTo() 691 void ExplainMatchFailureTupleTo(const MatcherTuple& matchers, in ExplainMatchFailureTupleTo() argument 695 matchers, values, os); in ExplainMatchFailureTupleTo() 1245 explicit AllOfMatcherImpl(std::vector<Matcher<T> > matchers) 1246 : matchers_(std::move(matchers)) {} 1306 VariadicMatcher(const Args&... matchers) // NOLINT 1307 : matchers_(matchers...) { [all …]
|
/third_party/googletest/googlemock/ |
D | README.md | 22 - Comes with a rich set of matchers for validating function arguments. 27 - Lets a user extend it by defining new matchers and actions.
|
/third_party/skia/third_party/externals/tint/src/ |
D | intrinsic_table.cc | 169 matchers(m), in MatchState() 178 Matchers const& matchers; member in tint::__anoncbbba3890111::MatchState 879 Matchers matchers; member in tint::__anoncbbba3890111::Impl 1081 return MatchState(builder, closed, matchers, overload, matcher_indices); in Match() 1135 auto* matcher = matchers.type[matcher_index]; in Type() 1141 auto* matcher = matchers.number[matcher_index]; in Num() 1147 auto* matcher = matchers.type[matcher_index]; in TypeName() 1153 auto* matcher = matchers.number[matcher_index]; in NumName()
|
D | intrinsic_table.inl.tmpl | 35 // Assert that the MatcherIndex is big enough to index all the matchers, plus 283 /// Matchers holds type and number matchers 320 /// The open-types, types, and type matchers 330 /// The open-numbers, and number matchers
|
/third_party/typescript/src/services/ |
D | getEditsForFileRename.ts | 64 …const matchers = getFileMatcherPatterns(configDir, /*excludes*/ [], includes, useCaseSensitiveFile… constant 66 …if (getRegexFromPattern(Debug.checkDefined(matchers.includeFilePattern), useCaseSensitiveFileNames… 67 …!getRegexFromPattern(Debug.checkDefined(matchers.includeFilePattern), useCaseSensitiveFileNames).t…
|
/third_party/rust/crates/tracing/tracing-subscriber/ |
D | Cargo.toml | 30 env-filter = ["matchers", "regex", "once_cell", "tracing", "std", "thread_local"] 45 matchers = { optional = true, version = "0.1.0" }
|
/third_party/flutter/flutter/dev/integration_tests/android_semantics_testing/lib/ |
D | android_semantics_testing.dart | 5 /// This library provides constants and matchers for testing the Android
|