/third_party/libxml2/result/pattern/ |
D | multiple | 1 Node /c/b[1]/a[1] matches pattern a 2 Node /c/b[1]/a[2] matches pattern a 3 Node /c/c/b/a[1] matches pattern a 4 Node /c/c/b/a[2] matches pattern a 5 Node /c/b[2]/a[1] matches pattern a 6 Node /c/b[2]/a[2] matches pattern a 7 Node /c/b[1] matches pattern b 8 Node /c/c/b matches pattern b 9 Node /c/b[2] matches pattern b 10 Node /c matches pattern c [all …]
|
D | conj | 1 Node /a matches pattern a|b 2 Node /a/b matches pattern a|b 3 Node /a/b/c[1]/b matches pattern a|b 4 Node /a/b/c[2]/b matches pattern a|b 5 Node /a/b/c[2]/c/b matches pattern a|b 6 Node /a/c/b matches pattern a|b 7 Node /a matches pattern a|c 8 Node /a/b/c[1] matches pattern a|c 9 Node /a/b/c[2] matches pattern a|c 10 Node /a/b/c[2]/c matches pattern a|c [all …]
|
D | namespaces | 1 Node /a matches pattern //a 2 Node /a/b:b/a matches pattern //a 3 Node /a/*[4]/a matches pattern //a 4 Node /a/a:a matches pattern //a:a 5 Node /a/b:b/a/a:a matches pattern //a:a 6 Node /a/*[4] matches pattern //a:a 7 Node /a/c:a matches pattern //a:a 8 Node /a/b matches pattern //b 9 Node /a/a:a/b:b matches pattern //b:b 10 Node /a/b:b matches pattern //b:b [all …]
|
D | simple | 1 Node /a matches pattern a 2 Node /a/b matches pattern b 3 Node /a/b matches pattern b 4 Node /a matches pattern /a 5 Node /a/b matches pattern a/b 6 Node /a/b/c matches pattern a/b/c 7 Node /a matches pattern //a 8 Node /a/b matches pattern //b 9 Node /a/b/c matches pattern //c 10 Node /a/b matches pattern a//b [all …]
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
D | static_dict.c | 27 uint32_t* matches) { in AddMatch() argument 29 matches[len] = BROTLI_MIN(uint32_t, matches[len], match); in AddMatch() 79 size_t min_length, size_t max_length, uint32_t* matches) { in BrotliFindAllStaticDictionaryMatches() argument 100 AddMatch(id, l, l, matches); in BrotliFindAllStaticDictionaryMatches() 106 AddMatch(id + 12 * n, l - 1, l, matches); in BrotliFindAllStaticDictionaryMatches() 110 AddMatch(id + 49 * n, l + 3, l, matches); in BrotliFindAllStaticDictionaryMatches() 122 AddMatch(id + transform_id * n, len, l, matches); in BrotliFindAllStaticDictionaryMatches() 131 AddMatch(id + n, l + 1, l, matches); in BrotliFindAllStaticDictionaryMatches() 134 AddMatch(id + 28 * n, l + 3, l, matches); in BrotliFindAllStaticDictionaryMatches() 136 if (s[3] == ' ') AddMatch(id + 46 * n, l + 4, l, matches); in BrotliFindAllStaticDictionaryMatches() [all …]
|
/third_party/node/deps/brotli/c/enc/ |
D | static_dict.c | 27 uint32_t* matches) { in AddMatch() argument 29 matches[len] = BROTLI_MIN(uint32_t, matches[len], match); in AddMatch() 79 size_t min_length, size_t max_length, uint32_t* matches) { in BrotliFindAllStaticDictionaryMatches() argument 100 AddMatch(id, l, l, matches); in BrotliFindAllStaticDictionaryMatches() 106 AddMatch(id + 12 * n, l - 1, l, matches); in BrotliFindAllStaticDictionaryMatches() 110 AddMatch(id + 49 * n, l + 3, l, matches); in BrotliFindAllStaticDictionaryMatches() 122 AddMatch(id + transform_id * n, len, l, matches); in BrotliFindAllStaticDictionaryMatches() 131 AddMatch(id + n, l + 1, l, matches); in BrotliFindAllStaticDictionaryMatches() 134 AddMatch(id + 28 * n, l + 3, l, matches); in BrotliFindAllStaticDictionaryMatches() 136 if (s[3] == ' ') AddMatch(id + 46 * n, l + 4, l, matches); in BrotliFindAllStaticDictionaryMatches() [all …]
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
D | rc_test_helpers.c | 76 static int match_length(regmatch_t * matches, int index) in match_length() argument 78 return matches[index].rm_eo - matches[index].rm_so; in match_length() 84 regmatch_t * matches, in regex_helper() argument 99 err_code = regexec(®ex, search_str, num_matches, matches, 0); in regex_helper() 103 matches[i].rm_so, matches[i].rm_eo); in regex_helper() 140 regmatch_t matches[REGEX_SRC_MATCHES]; in init_rc_normal_src() local 146 if (!regex_helper(regex_str, src_str, matches, REGEX_SRC_MATCHES)) { in init_rc_normal_src() 152 tokens.Negate.String = src_str + matches[1].rm_so; in init_rc_normal_src() 153 tokens.Negate.Length = match_length(matches, 1); in init_rc_normal_src() 154 tokens.Abs.String = src_str + matches[2].rm_so; in init_rc_normal_src() [all …]
|
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
D | lexer.cc | 135 bool Lexer::matches(size_t pos, const std::string& substr) { in matches() function in tint::reader::wgsl::Lexer 145 if (matches(pos_, "\n")) { in skip_whitespace_and_comments() 174 if (matches(pos_, "//")) { in skip_comment() 177 while (!is_eof() && !matches(pos_, "\n")) { in skip_comment() 184 if (matches(pos_, "/*")) { in skip_comment() 196 if (matches(pos_, "/*")) { in skip_comment() 201 } else if (matches(pos_, "*/")) { in skip_comment() 206 } else if (matches(pos_, "\n")) { in skip_comment() 231 if (matches(end, "-")) { in try_float() 240 if (end < len_ && matches(end, ".")) { in try_float() [all …]
|
/third_party/python/Lib/ |
D | rlcompleter.py | 90 self.matches = self.attr_matches(text) 92 self.matches = self.global_matches(text) 94 return self.matches[state] 117 matches = [] 129 matches.append(word) 134 matches.append(self._callable_postfix(val, word)) 135 return matches 166 matches = [] 187 matches.append(match) 190 matches.append(self._callable_postfix(value, match)) [all …]
|
/third_party/boost/libs/spirit/test/x3/ |
D | matches.cpp | 18 using boost::spirit::x3::matches; in main() 21 BOOST_SPIRIT_ASSERT_CONSTEXPR_CTORS(matches['x']); in main() 24 BOOST_TEST(test("x", matches[char_])); in main() 26 BOOST_TEST(test_attr("x", matches[char_], result) && result); in main() 30 BOOST_TEST(!test("y", matches[char_('x')])); in main() 31 BOOST_TEST(!test("y", matches['x'])); in main() 33 BOOST_TEST(test_attr("y", matches[char_('x')], result, false) && !result); in main() 35 BOOST_TEST(test_attr("y", matches['x'], result, false) && !result); in main()
|
/third_party/node/test/fixtures/wpt/url/ |
D | urlsearchparams-getall.any.js | 17 var matches = params.getAll('a'); 18 assert_true(matches && matches.length == 4, 'Search params object has values for name "a"'); 19 …assert_array_equals(matches, ['1', '2', '3', ''], 'Search params object has expected name "a" valu… 22 var matches = params.getAll('a'); 23 assert_true(matches && matches.length == 1, 'Search params object has values for name "a"'); 24 assert_array_equals(matches, ['one'], 'Search params object has expected name "a" values');
|
/third_party/node/deps/npm/node_modules/read-cmd-shim/ |
D | index.js | 15 var matches = cmdshimContents.match(/"[$]basedir[/]([^"]+?)"\s+[$]args/) 16 return matches && matches[1] 20 var matches = cmdshimContents.match(/"%(?:~dp0|dp0%)\\([^"]+?)"\s+%[*]/) 21 return matches && matches[1] 25 var matches = cmdshimContents.match(/"[$]basedir[/]([^"]+?)"\s+"[$]@"/) 26 return matches && matches[1]
|
/third_party/boost/libs/spirit/test/qi/ |
D | matches.cpp | 21 using qi::matches; in main() 25 BOOST_TEST(test("x", matches[char_])); in main() 27 BOOST_TEST(test_attr("x", matches[char_], result) && result); in main() 31 BOOST_TEST(!test("y", matches[char_('x')])); in main() 32 BOOST_TEST(!test("y", matches['x'])); in main() 34 BOOST_TEST(test_attr("y", matches[char_('x')], result, false) && !result); in main() 36 BOOST_TEST(test_attr("y", matches['x'], result, false) && !result); in main()
|
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | mergeable_material_test.dart | 16 void matches(BorderRadius borderRadius, RadiusType top, RadiusType bottom) { 162 matches(getBorderRadius(tester, 0), RadiusType.Round, RadiusType.Round); 197 matches(getBorderRadius(tester, 0), RadiusType.Round, RadiusType.Round); 267 matches(getBorderRadius(tester, 0), RadiusType.Round, RadiusType.Round); 268 matches(getBorderRadius(tester, 1), RadiusType.Round, RadiusType.Round); 300 matches(getBorderRadius(tester, 0), RadiusType.Round, RadiusType.Shifting); 301 matches(getBorderRadius(tester, 1), RadiusType.Shifting, RadiusType.Round); 306 matches(getBorderRadius(tester, 0), RadiusType.Round, RadiusType.Sharp); 307 matches(getBorderRadius(tester, 1), RadiusType.Sharp, RadiusType.Round); 341 matches(getBorderRadius(tester, 0), RadiusType.Round, RadiusType.Round); [all …]
|
/third_party/boost/boost/xpressive/detail/core/matcher/ |
D | simple_repeat_matcher.hpp | 98 unsigned int matches = 0; in match_() local 102 while(matches < this->max_ && this->xpr_.match(state)) in match_() 104 ++matches; in match_() 112 state.next_search_ = (matches && matches < this->max_) in match_() 117 if(this->min_ > matches) in match_() 124 for(; ; --matches, std::advance(state.cur_, diff)) in match_() 130 else if(this->min_ == matches) in match_() 144 unsigned int matches = 0; in match_() local 146 for(; matches < this->min_; ++matches) in match_() 162 while(matches++ < this->max_ && this->xpr_.match(state)); in match_()
|
/third_party/boost/tools/build/doc/src/ |
D | regex.adoc | 6 * `"x*"` matches the pattern `"x"` zero or more times. 7 * `"x+"` matches `"x"` one or more times. 8 * `"x?"` matches `"x"` zero or one time. 9 * `"[abcd]"` matches any of the characters, `"a"`, `"b"`, `"c"`, and 10 `"d"`. A character range such as `"[a-z]"` matches any character between 11 `"a"` and `"z"`. `"[^abc]"` matches any character which is not `"a"`, 13 * `"x|y"` matches either pattern `"x"` or pattern `"y"` 14 * `(x)` matches `"x"` and captures it. 15 * `"^"` matches the beginning of the string. 16 * `"$"` matches the end of the string. [all …]
|
/third_party/jsframework/runtime/main/extend/mediaquery/ |
D | pluginMediaQuery.ts | 24 matches: boolean; property 39 get matches() { method in MediaQueryList 43 set matches(matches: boolean) { method in MediaQueryList 44 this._matches = matches; 97 mediaQueryList.matches = result; 98 const matchData: MatchData = { matches: false }; 99 matchData.matches = result;
|
/third_party/ffmpeg/tests/ref/fate/ |
D | srtp | 2 Decrypted content matches input 3 Decrypted content matches input 4 Decrypted content matches input 6 Decrypted content matches input 7 Decrypted content matches input 8 Decrypted content matches input
|
/third_party/boost/libs/regex/test/c_compiler_checks/ |
D | posix_api_check.c | 27 regmatch_t matches[1]; variable 46 matches[0].rm_so = 0; in main() 47 matches[0].rm_eo = strlen(text); in main() 48 result = regexecA(&re, text, 1, matches, REG_NOTBOL | REG_NOTEOL | REG_STARTEND); in main() 57 assert((matches[0].rm_so == matches[0].rm_eo) && (matches[0].rm_eo == 1)); in main()
|
D | wide_posix_api_check.cpp | 36 regmatch_t matches[1]; variable 62 matches[0].rm_so = 0; in main() 63 matches[0].rm_eo = wcslen(text); in main() 64 result = regexec(&re, text, 1, matches, REG_NOTBOL | REG_NOTEOL | REG_STARTEND); in main() 76 if((matches[0].rm_so != matches[0].rm_eo) || (matches[0].rm_eo != 1)) in main()
|
D | wide_posix_api_check.c | 34 regmatch_t matches[1]; variable 61 matches[0].rm_so = 0; in main() 62 matches[0].rm_eo = wcslen(text); in main() 63 result = regexec(&re, text, 1, matches, REG_NOTBOL | REG_NOTEOL | REG_STARTEND); in main() 73 if((matches[0].rm_so != matches[0].rm_eo) || (matches[0].rm_eo != 1)) in main()
|
/third_party/boost/libs/log/test/run/ |
D | filt_matches_std_regex.cpp | 57 filter f = expr::matches< std::string >(data::attr1(), regex_type("\\d+\\.\\d+\\.\\d+\\.\\d+")); in BOOST_AUTO_TEST_CASE() 60 f = expr::matches< std::string >(data::attr1(), regex_type("[a-z]*")); in BOOST_AUTO_TEST_CASE() 63 …f = expr::matches< logging::string_literal >(data::attr2(), regex_type("[A-Z]* [a-z]* [A-Za-z]*")); in BOOST_AUTO_TEST_CASE() 66 f = expr::matches< std::string >(data::attr3(), regex_type("Hello, world!")); in BOOST_AUTO_TEST_CASE() 70 f = expr::matches< std::string >(data::attr4(), regex_type(".*")); in BOOST_AUTO_TEST_CASE() 74 f = expr::matches< std::string >(data::attr2(), regex_type("[A-Z]* [a-z]* [A-Za-z]*")); in BOOST_AUTO_TEST_CASE() 102 …filter f = expr::matches< std::string >(data::attr1(), regex_type("\\d+\\.\\d+\\.\\d+\\.\\d+")) ||… in BOOST_AUTO_TEST_CASE() 107 …f = expr::matches< std::string >(data::attr1(), regex_type("\\d+\\.\\d+\\.\\d+\\.\\d+")) && expr::… in BOOST_AUTO_TEST_CASE()
|
D | filt_matches_boost_regex.cpp | 53 filter f = expr::matches< std::string >(data::attr1(), regex_type("\\d+\\.\\d+\\.\\d+\\.\\d+")); in BOOST_AUTO_TEST_CASE() 56 f = expr::matches< std::string >(data::attr1(), regex_type("[a-z]*")); in BOOST_AUTO_TEST_CASE() 59 …f = expr::matches< logging::string_literal >(data::attr2(), regex_type("[A-Z]* [a-z]* [A-Za-z]*")); in BOOST_AUTO_TEST_CASE() 62 f = expr::matches< std::string >(data::attr3(), regex_type("Hello, world!")); in BOOST_AUTO_TEST_CASE() 66 f = expr::matches< std::string >(data::attr4(), regex_type(".*")); in BOOST_AUTO_TEST_CASE() 70 f = expr::matches< std::string >(data::attr2(), regex_type("[A-Z]* [a-z]* [A-Za-z]*")); in BOOST_AUTO_TEST_CASE() 98 …filter f = expr::matches< std::string >(data::attr1(), regex_type("\\d+\\.\\d+\\.\\d+\\.\\d+")) ||… in BOOST_AUTO_TEST_CASE() 103 …f = expr::matches< std::string >(data::attr1(), regex_type("\\d+\\.\\d+\\.\\d+\\.\\d+")) && expr::… in BOOST_AUTO_TEST_CASE()
|
D | filt_matches_spirit_qi.cpp | 55 …filter f = expr::matches< std::string >(data::attr1(), spirit::uint_ >> '.' >> spirit::uint_ >> '.… in BOOST_AUTO_TEST_CASE() 59 …f = expr::matches< std::string >(data::attr1(), spirit::rule< std::string::const_iterator, void() … in BOOST_AUTO_TEST_CASE() 62 f = expr::matches< std::string >(data::attr1(), *spirit::lower); in BOOST_AUTO_TEST_CASE() 65 …f = expr::matches< logging::string_literal >(data::attr2(), *spirit::upper >> spirit::space >> *sp… in BOOST_AUTO_TEST_CASE() 68 f = expr::matches< std::string >(data::attr3(), spirit::lit("Hello, world!")); in BOOST_AUTO_TEST_CASE() 72 f = expr::matches< std::string >(data::attr4(), *spirit::char_); in BOOST_AUTO_TEST_CASE() 76 …f = expr::matches< std::string >(data::attr2(), *spirit::upper >> spirit::space >> *spirit::lower … in BOOST_AUTO_TEST_CASE() 103 …filter f = expr::matches< std::string >(data::attr1(), +spirit::digit >> '.' >> +spirit::digit >> … in BOOST_AUTO_TEST_CASE() 104 …|| expr::matches< logging::string_literal >(data::attr2(), *spirit::upper >> spirit::space >> *spi… in BOOST_AUTO_TEST_CASE() 109 …f = expr::matches< std::string >(data::attr1(), +spirit::digit >> '.' >> +spirit::digit >> '.' >> … in BOOST_AUTO_TEST_CASE() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | stringMatchAll.types | 2 const matches = "matchAll".matchAll(/\w/g); 3 >matches : IterableIterator<RegExpMatchArray> 10 const array = [...matches]; 12 >[...matches] : RegExpMatchArray[] 13 >...matches : RegExpMatchArray 14 >matches : IterableIterator<RegExpMatchArray>
|