/third_party/gettext/gettext-tools/src/ |
D | msgfilter.c | 681 char **substrings; in process_message() local 736 substrings = XNMALLOC (nsubstrings, char *); in process_message() 759 substrings[k] = result; in process_message() 769 size_t length = strlen (substrings[k]); in process_message() 771 memcpy (q, substrings[k], length + 1); in process_message() 772 free (substrings[k]); in process_message() 775 free (substrings); in process_message()
|
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/ |
D | prefer-string-starts-ends-with.md | 1 … and `String#endsWith` instead of other equivalent methods of checking substrings (`prefer-string-…
|
D | naming-convention.md | 120 …finer-grained control over identifiers, letting you ban (or force) certain patterns and substrings.
|
/third_party/skia/tools/skdiff/ |
D | skdiff_main.cpp | 231 const StringArray& substrings) { in string_contains_any_of() argument 232 for (int i = 0; i < substrings.count(); i++) { in string_contains_any_of() 233 if (string.contains(substrings[i].c_str())) { in string_contains_any_of()
|
/third_party/flutter/skia/tools/skdiff/ |
D | skdiff_main.cpp | 242 const StringArray& substrings) { in string_contains_any_of() argument 243 for (int i = 0; i < substrings.count(); i++) { in string_contains_any_of() 244 if (string.contains(substrings[i]->c_str())) { in string_contains_any_of()
|
/third_party/boost/tools/build/doc/src/ |
D | regex.adoc | 22 Returns a list of the following substrings:
|
/third_party/gstreamer/gstplugins_bad/ext/ttml/ |
D | ttmlparse.c | 299 gchar **substrings = g_strsplit (strings[2], ".", 2); in ttml_parse_timecode() local 300 seconds = g_ascii_strtoull (substrings[0], NULL, 10U); in ttml_parse_timecode() 301 n_digits = strlen (substrings[1]); in ttml_parse_timecode() 302 milliseconds = g_ascii_strtoull (substrings[1], NULL, 10U); in ttml_parse_timecode() 305 g_strfreev (substrings); in ttml_parse_timecode()
|
/third_party/icu/docs/userguide/strings/ |
D | properties.md | 258 also more efficient methods for iterating over substrings. 268 It is often useful to partition a string into substrings where every character 269 has the property, and substrings where every character does not have the
|
/third_party/pcre2/pcre2/doc/ |
D | pcre2grep.txt | 77 matching substrings, or if --only-matching, --file-offsets, or --line- 95 matching with "super|man" when only the matching substrings are being 659 captured substrings into the text. 664 turing substrings, or if the capture is unset, the replace- 718 If this option is given multiple times, multiple substrings 721 the substrings matched by capturing parentheses 3 and 1 and 947 ter, it is parsed into a list of substrings separated by pipe charac- 949 ing substrings specifying arguments: 974 substrings, and therefore should not be present. Any syntax errors in
|
D | pcre2.txt | 582 turn captured substrings. A description of the two matching algorithms 587 convenience functions for extracting captured substrings from a subject 1560 matches, which are necessarily substrings of the first one, must obvi- 2492 When using pcre2_dfa_match() there may be multiple matched substrings 2508 right size to hold all the substrings a pattern might capture when 2831 addition, further substrings from the subject may be picked out by 2836 of parenthesized group that do not cause substrings to be captured. The 2840 You can use auxiliary functions for accessing captured substrings by 2866 numbered pair that has been set. For example, if two substrings have 2882 zero. If captured substrings are not of interest, pcre2_match() may be [all …]
|
D | pcre2test.txt | 712 for substrings enclosed in single or double quotes, are to be inter- 1106 getall extract all captured substrings 1260 all captured substrings. 1262 If the subject line is successfully matched, the substrings extracted 1556 Unset capturing substrings that are not followed by one that is set are 1558 the following example, there are two capturing substrings, but when the 1643 so the modifiers that are concerned with captured substrings are not
|
/third_party/boost/tools/build/src/util/ |
D | regex.jam | 10 # Returns a list of the following substrings:
|
/third_party/libinput/doc/user/ |
D | conf.py.in | 178 # two substrings in the same file.
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/ |
D | test.dart | 31 help: 'A regular expression matching substrings of the names of tests to run.',
|
/third_party/boost/libs/program_options/doc/ |
D | requirements-Rozental | 151 substrings.
|
/third_party/pcre2/pcre2/testdata/ |
D | testoutput2 | 252 Matched, but too many substrings 255 Matched, but too many substrings 259 Matched, but too many substrings 281 Matched, but too many substrings 297 Matched, but too many substrings 300 Matched, but too many substrings 304 Matched, but too many substrings 5690 Matched, but too many substrings 5713 Matched, but too many substrings 6514 Matched, but too many substrings [all …]
|
/third_party/python/Doc/library/ |
D | configparser.rst | 558 Delimiters are substrings that delimit keys from values within a section. 911 When *delimiters* is given, it is used as the set of substrings that 913 as the set of substrings that prefix comments in otherwise empty lines. 915 be used as the set of substrings that prefix comments in non-empty lines.
|
/third_party/python/Lib/test/ |
D | test_statistics.py | 656 substrings = [ 663 substrings.append('differ at index %d' % idx) 664 return substrings
|
/third_party/python/Doc/howto/ |
D | regex.rst | 368 | ``findall()`` | Find all substrings where the RE matches, and | 371 | ``finditer()`` | Find all substrings where the RE matches, and | 877 Elaborate REs may use many groups, both to capture substrings of interest, and 1069 | ``sub()`` | Find all substrings where the RE matches, and |
|
/third_party/pcre2/pcre2/ |
D | NEWS | 203 all possible captured substrings in the pattern.
|
/third_party/boost/boost/test/impl/ |
D | test_tools.ipp | 677 … // we need this substring as is because we compute the best matching substrings on it.
|
/third_party/python/Objects/stringlib/ |
D | stringlib_find_two_way_notes.txt | 65 If this is true for every pair of equal-length substrings around the
|
/third_party/boost/libs/spirit/doc/ |
D | what_s_new.qbk | 646 * Fixed __qi__ symbols not to match substrings anymore. Added 647 `qi::symbols::prefix_find` to allow matching of (prefix-) substrings.
|
/third_party/typescript/tests/baselines/reference/ |
D | 1.0lib-noErrors.types | 529 * Split a string into substrings using the specified separator and return them as an array. 539 * Split a string into substrings using the specified separator and return them as an array. 599 …* Allows manipulation and formatting of text strings and determination and location of substrings …
|
/third_party/typescript_eslint/packages/eslint-plugin/ |
D | README.md | 164 … and `String#endsWith` instead of other equivalent methods of checking substrings | …
|