/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | StringMatcher.cpp | 29 StringMatcher::StringPair*> &Matches) { in FindFirstNonCommonLetter() argument 30 assert(!Matches.empty()); in FindFirstNonCommonLetter() 31 for (unsigned i = 0, e = Matches[0]->first.size(); i != e; ++i) { in FindFirstNonCommonLetter() 33 char Letter = Matches[0]->first[i]; in FindFirstNonCommonLetter() 35 for (unsigned str = 0, e = Matches.size(); str != e; ++str) in FindFirstNonCommonLetter() 36 if (Matches[str]->first[i] != Letter) in FindFirstNonCommonLetter() 40 return Matches[0]->first.size(); in FindFirstNonCommonLetter() 49 const std::vector<const StringPair *> &Matches, unsigned CharNo, in EmitStringMatcherForChar() argument 51 assert(!Matches.empty() && "Must have at least one string to match!"); in EmitStringMatcherForChar() 56 if (CharNo == Matches[0]->first.size()) { in EmitStringMatcherForChar() [all …]
|
/third_party/googletest/googlemock/test/ |
D | gmock-matchers_test.cc | 251 EXPECT_TRUE(m.Matches(2)); in TEST() 252 EXPECT_FALSE(m.Matches(3)); in TEST() 266 EXPECT_TRUE(m.Matches(4)); in TEST() 267 EXPECT_FALSE(m.Matches(5)); in TEST() 273 EXPECT_TRUE(m1.Matches(5)); in TEST() 274 EXPECT_FALSE(m1.Matches(6)); in TEST() 280 EXPECT_TRUE(m1.Matches(nullptr)); in TEST() 282 EXPECT_FALSE(m1.Matches(&n)); in TEST() 294 EXPECT_TRUE(m1.Matches(1)); in TEST() 295 EXPECT_FALSE(m1.Matches(2)); in TEST() [all …]
|
D | gmock_link_test.h | 629 EXPECT_TRUE(m.Matches(helper)); in TEST() 632 EXPECT_TRUE(m2.Matches(&helper)); in TEST() 640 EXPECT_TRUE(m.Matches(helper)); in TEST() 643 EXPECT_TRUE(m2.Matches(&helper)); in TEST() 649 EXPECT_TRUE(m.Matches(nullptr)); in TEST() 657 EXPECT_TRUE(m.Matches(&n)); in TEST() 663 EXPECT_TRUE(m.Matches(nullptr)); in TEST() 669 EXPECT_TRUE(m.Matches(1)); in TEST() 675 EXPECT_TRUE(m.Matches(1)); in TEST() 681 EXPECT_FALSE(m.Matches(1)); in TEST() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Regex.cpp | 68 bool Regex::match(StringRef String, SmallVectorImpl<StringRef> *Matches){ in match() argument 72 unsigned nmatch = Matches ? preg->re_nsub+1 : 0; in match() 92 if (Matches) { // match position requested in match() 93 Matches->clear(); in match() 98 Matches->push_back(StringRef()); in match() 102 Matches->push_back(StringRef(String.data()+pm[i].rm_so, in match() 112 SmallVector<StringRef, 8> Matches; in sub() local 118 if (!match(String, &Matches)) in sub() 123 std::string Res(String.begin(), Matches[0].begin()); in sub() 171 RefValue < Matches.size()) in sub() [all …]
|
/third_party/flutter/flutter/dev/integration_tests/android_semantics_testing/lib/src/ |
D | constants.dart | 58 /// Matches `AccessibilityAction.ACTION_FOCUS`. 61 /// Matches `AccessibilityAction.ACTION_CLEAR_FOCUS`. 64 /// Matches `AccessibilityAction.ACTION_SELECT`. 67 /// Matches `AccessibilityAction.ACTION_CLEAR_SELECTION`. 70 /// Matches `AccessibilityAction.ACTION_CLICK`. 73 /// Matches `AccessibilityAction.ACTION_LONG_CLICK`. 76 /// Matches `AccessibilityAction.ACTION_ACCESSIBILITY_FOCUS`. 79 /// Matches `AccessibilityAction.ACTION_CLEAR_ACCESSIBILITY_FOCUS`. 82 /// Matches `AccessibilityAction.ACTION_NEXT_AT_MOVEMENT_GRANULARITY`. 85 /// Matches `AccessibilityAction.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY`. [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Regex.cpp | 82 bool Regex::match(StringRef String, SmallVectorImpl<StringRef> *Matches, in match() argument 92 unsigned nmatch = Matches ? preg->re_nsub+1 : 0; in match() 114 if (Matches) { // match position requested in match() 115 Matches->clear(); in match() 120 Matches->push_back(StringRef()); in match() 124 Matches->push_back(StringRef(String.data()+pm[i].rm_so, in match() 134 SmallVector<StringRef, 8> Matches; in sub() local 137 if (!match(String, &Matches, Error)) in sub() 142 std::string Res(String.begin(), Matches[0].begin()); in sub() 190 RefValue < Matches.size()) in sub() [all …]
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_validate.cpp | 578 if (option.Matches ("v", true)) in main() 583 else if (option.Matches ("d", true)) in main() 603 else if (option.Matches ("s", true)) in main() 619 else if (option.Matches ("b4", true)) in main() 624 else if (option.Matches ("size", true)) in main() 640 else if (option.Matches ("min", true)) in main() 656 else if (option.Matches ("max", true)) in main() 672 else if (option.Matches ("proxy", true)) in main() 688 else if (option.Matches ("cs1", true)) in main() 695 else if (option.Matches ("cs2", true)) in main() [all …]
|
/third_party/boost/libs/spirit/doc/qi/ |
D | binary.qbk | 86 [[`byte_`] [Matches any 8 bit native endian binary.]] 87 [[`word`] [Matches any 16 bit native endian binary.]] 88 [[`dword`] [Matches any 32 bit native endian binary.]] 89 [[`qword`] [Matches any 64 bit native endian binary.]] 90 [[`bin_float`] [Matches any float native endian binary.]] 91 [[`bin_double`] [Matches any double native endian binary.]] 92 [[`byte_(b)`] [Matches an exact 8 bit native endian binary.]] 93 [[`word(w)`] [Matches an exact 16 bit native endian binary.]] 94 [[`dword(dw)`] [Matches an exact 32 bit native endian binary.]] 95 [[`qword(qw)`] [Matches an exact 64 bit native endian binary.]] [all …]
|
D | quick_reference.qbk | 53 [[[qi_char `ch`]] [`Unused`] [Matches `ch`]] 54 [[[qi_char `lit(ch)`]] [`Unused`] [Matches `ch`]] 55 [[[qi_char `char_`]] [`Ch`] [Matches any character]] 56 [[[qi_char `char_(ch)`]] [`Ch`] [Matches `ch`]] 57 [[[qi_char `char_("c")`]] [`Ch`] [Matches a single char string literal, `c`]] 58 …[[[qi_char `char_(ch, ch2)`]][`Ch`] [Matches a range of chars from `ch` to `ch2` (inclu… 59 [[[qi_char `char_(charset)`]][`Ch`] [Matches a character set `charset`]] 61 [[[qi_char_class `alnum`]] [`Ch`] [Matches a character based on the equivalent of 63 [[[qi_char_class `alpha`]] [`Ch`] [Matches a character based on the equivalent of 65 [[[qi_char_class `blank`]] [`Ch`] [Matches a character based on the equivalent of [all …]
|
D | char.qbk | 268 [[`ns::alnum`] [Matches alpha-numeric characters]] 269 [[`ns::alpha`] [Matches alphabetic characters]] 270 [[`ns::blank`] [Matches spaces or tabs]] 271 [[`ns::cntrl`] [Matches control characters]] 272 [[`ns::digit`] [Matches numeric digits]] 273 [[`ns::graph`] [Matches non-space printing characters]] 274 [[`ns::lower`] [Matches lower case letters]] 275 [[`ns::print`] [Matches printable characters]] 276 [[`ns::punct`] [Matches punctuation symbols]] 277 [[`ns::space`] [Matches spaces, tabs, returns, and newlines]] [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | NativeEnumTypes.cpp | 26 : Matches(), Index(0), Session(PDBSession) { in NativeEnumTypes() 34 Matches.push_back(*TI); in NativeEnumTypes() 43 Matches.push_back(*TI); in NativeEnumTypes() 52 : Matches(std::move(Indices)), Index(0), Session(PDBSession) {} in NativeEnumTypes() 55 return static_cast<uint32_t>(Matches.size()); in getChildCount() 59 if (N < Matches.size()) { in getChildAtIndex() 60 SymIndexId Id = Session.getSymbolCache().findSymbolByTypeIndex(Matches[N]); in getChildAtIndex()
|
/third_party/boost/libs/spirit/doc/x3/ |
D | quick_reference.qbk | 48 [[[x3_char `ch`]] [`Unused`] [Matches `ch`]] 49 [[[x3_char `lit(ch)`]] [`Unused`] [Matches `ch`]] 50 [[[x3_char `char_`]] [`Ch`] [Matches any character]] 51 [[[x3_char `char_(ch)`]] [`Ch`] [Matches `ch`]] 52 [[[x3_char `char_("c")`]] [`Ch`] [Matches a single char string literal, `c`]] 53 …[[[x3_char `char_(ch, ch2)`]][`Ch`] [Matches a range of chars from `ch` to `ch2` (inclu… 54 [[[x3_char `char_(charset)`]][`Ch`] [Matches a character set `charset`]] 56 [[[x3_char_class `alnum`]] [`Ch`] [Matches a character based on the equivalent of 58 [[[x3_char_class `alpha`]] [`Ch`] [Matches a character based on the equivalent of 60 [[[x3_char_class `blank`]] [`Ch`] [Matches a character based on the equivalent of [all …]
|
/third_party/iptables/extensions/ |
D | libip6t_frag.man | 4 Matches the given Identification or range of it. 11 Matches if the reserved fields are filled with zero. 14 Matches on the first fragment. 17 Matches if there are more fragments. 20 Matches if this is the last fragment.
|
D | libxt_policy.man | 16 Matches if the packet is subject to IPsec processing. \fB\-\-pol none\fP 28 Matches the reqid of the policy rule. The reqid can be specified with 35 Matches the SPI of the SA. 38 Matches the encapsulation protocol. 41 Matches the encapsulation mode. 44 Matches the source end-point address of a tunnel mode SA. 48 Matches the destination end-point address of a tunnel mode SA.
|
D | libip6t_hl.man | 4 Matches if Hop Limit equals \fIvalue\fP. 7 Matches if Hop Limit is less than \fIvalue\fP. 10 Matches if Hop Limit is greater than \fIvalue\fP.
|
D | libipt_ttl.man | 4 Matches the given TTL value. 7 Matches if TTL is greater than the given TTL value. 10 Matches if TTL is less than the given TTL value.
|
D | libxt_ipcomp.c.man | 4 Matches IPcomp header CPI value. 7 Matches if the reserved field is filled with zero.
|
D | libxt_owner.man | 9 Matches if the packet socket's file structure (if it has one) is owned by the 15 Matches if the packet socket's file structure is owned by the given group. 23 Matches if the packet is associated with a socket.
|
D | libip6t_ah.man | 4 Matches SPI. 10 Matches if the reserved field is filled with zero.
|
/third_party/skia/third_party/externals/microhttpd/w32/VS2013/ |
D | gen_dll_res.ps1 | 13 [string]$MHD_ver = $Matches[1].ToString() 14 [string]$MHD_ver_major = $Matches[2].ToString() 15 [string]$MHD_ver_minor = $Matches[3].ToString() 16 [string]$MHD_ver_patchlev = $Matches[4].ToString()
|
/third_party/json/test/thirdparty/Fuzzer/test/ |
D | RepeatedMemcmp.cpp | 11 int Matches = 0; in LLVMFuzzerTestOneInput() local 15 Matches++; in LLVMFuzzerTestOneInput() 17 if (Matches > 20) { in LLVMFuzzerTestOneInput()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/ |
D | StringMatcher.h | 36 const std::vector<StringPair> &Matches; variable 42 : StrVariableName(strVariableName), Matches(matches), OS(os) {} in StringMatcher() 47 bool EmitStringMatcherForChar(const std::vector<const StringPair *> &Matches,
|
/third_party/boost/libs/regex/doc/ |
D | syntax_perl.qbk | 100 [^a{n}] Matches 'a' repeated exactly n times. 102 [^a{n,}] Matches 'a' repeated n or more times. 104 [^a{n, m}] Matches 'a' repeated between n and m times inclusive. 138 [^*?] Matches the previous atom zero or more times, while consuming as little 141 [^+?] Matches the previous atom one or more times, while consuming as 144 [^??] Matches the previous atom zero or one times, while consuming 147 [^{n,}?] Matches the previous atom n or more times, while consuming as 150 [^{n,m}?] Matches the previous atom between n and m times, while 160 [^*+] Matches the previous atom zero or more times, while giving nothing back. 162 [^++] Matches the previous atom one or more times, while giving nothing back. [all …]
|
D | syntax_extended.qbk | 98 `a{n}` Matches 'a' repeated /exactly n times/. 100 `a{n,}` Matches 'a' repeated /n or more times/. 102 `a{n, m}` Matches 'a' repeated /between n and m times inclusive/. 260 [[\\N{Name}][Matches the single character which has the symbolic name ['Name]. For example `\\N{ne… 293 [[`\pX`][Matches any character that has the property X.][`[[:X:]]`]] 294 [[`\p{Name}`][Matches any character that has the property Name.][`[[:Name:]]`]] 295 [[`\PX`][Matches any character that does not have the property X.][`[^[:X:]]`]] 296 [[`\P{Name}`][Matches any character that does not have the property Name.][`[^[:Name:]]`]] 307 [[`\<`][Matches the start of a word.]] 308 [[`\>`][Matches the end of a word.]] [all …]
|
/third_party/boost/libs/spirit/doc/lex/ |
D | quick_reference.qbk | 41 [[`ch`] [n/a] [Matches `ch`]] 42 [[`char_(ch)`] [n/a] [Matches `ch`]] 43 [[`str`] [n/a] [Matches regular expression `str`]] 44 [[`string(str)`] [n/a] [Matches regular expression `str`]] 45 [[`token_def<Attrib>`] [`Attrib`] [Matches the immediate argument]] 46 [[`a | b`] [n/a] [Matches any of the expressions `a` or `b`]]
|