/third_party/boost/libs/regex/test/regress/ |
D | test_simple_repeats.cpp | 24 TEST_REGEX_SEARCH("a*", perl, "b", match_default, make_array(0, 0, -2, 1, 1, -2, -2)); in test_simple_repeats() 25 TEST_REGEX_SEARCH("ab*", perl, "ab", match_default, make_array(0, 2, -2, -2)); in test_simple_repeats() 27 TEST_REGEX_SEARCH("ab*", perl, "sssabbbbbbsss", match_default, make_array(3, 10, -2, -2)); in test_simple_repeats() 28 TEST_REGEX_SEARCH("ab*c*", perl, "a", match_default, make_array(0, 1, -2, -2)); in test_simple_repeats() 29 TEST_REGEX_SEARCH("ab*c*", perl, "abbb", match_default, make_array(0, 4, -2, -2)); in test_simple_repeats() 30 TEST_REGEX_SEARCH("ab*c*", perl, "accc", match_default, make_array(0, 4, -2, -2)); in test_simple_repeats() 31 TEST_REGEX_SEARCH("ab*c*", perl, "abbcc", match_default, make_array(0, 5, -2, -2)); in test_simple_repeats() 34 TEST_INVALID_REGEX("*a", perl); in test_simple_repeats() 35 TEST_INVALID_REGEX("\\<*", perl); in test_simple_repeats() 36 TEST_INVALID_REGEX("\\>*", perl); in test_simple_repeats() [all …]
|
D | test_escapes.cpp | 22 TEST_REGEX_SEARCH("\\0101", perl, "A", match_default, make_array(0, 1, -2, -2)); in test_character_escapes() 23 TEST_REGEX_SEARCH("\\00", perl, "\0", match_default, make_array(0, 1, -2, -2)); in test_character_escapes() 24 TEST_REGEX_SEARCH("\\0", perl, "\0", match_default, make_array(0, 1, -2, -2)); in test_character_escapes() 25 TEST_REGEX_SEARCH("\\0172", perl, "z", match_default, make_array(0, 1, -2, -2)); in test_character_escapes() 27 TEST_REGEX_SEARCH("\\a", perl, "\a", match_default, make_array(0, 1, -2, -2)); in test_character_escapes() 28 TEST_REGEX_SEARCH("\\f", perl, "\f", match_default, make_array(0, 1, -2, -2)); in test_character_escapes() 29 TEST_REGEX_SEARCH("\\n", perl, "\n", match_default, make_array(0, 1, -2, -2)); in test_character_escapes() 30 TEST_REGEX_SEARCH("\\r", perl, "\r", match_default, make_array(0, 1, -2, -2)); in test_character_escapes() 31 TEST_REGEX_SEARCH("\\v", perl, "\v", match_default, make_array(0, 1, -2, -2)); in test_character_escapes() 32 TEST_REGEX_SEARCH("\\t", perl, "\t", match_default, make_array(0, 1, -2, -2)); in test_character_escapes() [all …]
|
D | test_replace.cpp | 22 TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$`", "..."); in test_replace() 23 TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$'", ",,,"); in test_replace() 24 TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$&", "aaa"); in test_replace() 25 TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$0", "aaa"); in test_replace() 26 TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$1", ""); in test_replace() 27 TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$15", ""); in test_replace() 28 TEST_REGEX_REPLACE("(a+)b+", perl, "...aaabbb,,,", match_default|format_no_copy, "$1", "aaa"); in test_replace() 29 …TEST_REGEX_REPLACE("[[:digit:]]*", perl, "123ab", match_default|format_no_copy, "<$0>", "<123><><>… in test_replace() 30 …TEST_REGEX_REPLACE("[[:digit:]]*", perl, "123ab1", match_default|format_no_copy, "<$0>", "<123><><… in test_replace() 31 TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$`$", "...$"); in test_replace() [all …]
|
D | basic_tests.cpp | 38 TEST_REGEX_SEARCH("Z", perl, "aaa", match_default, make_array(-2, -2)); in basic_tests() 39 TEST_REGEX_SEARCH("Z", perl, "xxxxZZxxx", match_default, make_array(4, 5, -2, 5, 6, -2, -2)); in basic_tests() 41 …TEST_REGEX_SEARCH("(a)", perl, "zzzaazz", match_default, make_array(3, 4, 3, 4, -2, 4, 5, 4, 5, -2… in basic_tests() 42 …TEST_REGEX_SEARCH("()", perl, "zzz", match_default, make_array(0, 0, 0, 0, -2, 1, 1, 1, 1, -2, 2, … in basic_tests() 43 TEST_REGEX_SEARCH("()", perl, "", match_default, make_array(0, 0, 0, 0, -2, -2)); in basic_tests() 44 TEST_INVALID_REGEX("(", perl); in basic_tests() 45 TEST_INVALID_REGEX("", perl|no_empty_expressions); in basic_tests() 46 …TEST_REGEX_SEARCH("", perl, "abc", match_default, make_array(0, 0, -2, 1, 1, -2, 2, 2, -2, 3, 3, -… in basic_tests() 47 TEST_INVALID_REGEX(")", perl); in basic_tests() 48 TEST_INVALID_REGEX("(aa", perl); in basic_tests() [all …]
|
D | test_tricky_cases.cpp | 27 …TEST_REGEX_SEARCH("a(((b)))c", perl, "abc", match_default, make_array(0, 3, 1, 2, 1, 2, 1, 2, -2, … in test_tricky_cases() 28 …TEST_REGEX_SEARCH("a(b|(c))d", perl, "abd", match_default, make_array(0, 3, 1, 2, -1, -1, -2, -2)); in test_tricky_cases() 29 TEST_REGEX_SEARCH("a(b|(c))d", perl, "acd", match_default, make_array(0, 3, 1, 2, 1, 2, -2, -2)); in test_tricky_cases() 30 TEST_REGEX_SEARCH("a(b*|c)d", perl, "abbd", match_default, make_array(0, 4, 1, 3, -2, -2)); in test_tricky_cases() 32 …TEST_REGEX_SEARCH("a[ab]{20}", perl, "aaaaabaaaabaaaabaaaab", match_default, make_array(0, 21, -2,… in test_tricky_cases() 34 …ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab]", perl, "aaaaabaaaabaaaaba… in test_tricky_cases() 36 …b][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab](wee|week)(knights|night)", perl, "aaaaabaaaabaaaaba… in test_tricky_cases() 38 …TEST_REGEX_SEARCH("1234567890123456789012345678901234567890123456789012345678901234567890", perl, … in test_tricky_cases() 40 …TEST_REGEX_SEARCH("[ab][cd][ef][gh][ij][kl][mn]", perl, "xacegikmoq", match_default, make_array(1,… in test_tricky_cases() 41 …TEST_REGEX_SEARCH("[ab][cd][ef][gh][ij][kl][mn][op]", perl, "xacegikmoq", match_default, make_arra… in test_tricky_cases() [all …]
|
D | test_backrefs.cpp | 21 TEST_INVALID_REGEX("a(b)\\2c", perl); in test_backrefs() 22 TEST_INVALID_REGEX("a(b\\1)c", perl); in test_backrefs() 23 TEST_REGEX_SEARCH("a(b*)c\\1d", perl, "abbcbbd", match_default, make_array(0, 7, 1, 3, -2, -2)); in test_backrefs() 24 TEST_REGEX_SEARCH("a(b*)c\\1d", perl, "abbcbd", match_default, make_array(-2, -2)); in test_backrefs() 25 TEST_REGEX_SEARCH("a(b*)c\\1d", perl, "abbcbbbd", match_default, make_array(-2, -2)); in test_backrefs() 26 TEST_REGEX_SEARCH("^(.)\\1", perl, "abc", match_default, make_array(-2, -2)); in test_backrefs() 27 … TEST_REGEX_SEARCH("a([bc])\\1d", perl, "abcdabbd", match_default, make_array(4, 8, 5, 6, -2, -2)); in test_backrefs() 31 …TEST_REGEX_SEARCH("a(([bc])\\2)*d", perl, "abbccd", match_default, make_array(0, 6, 3, 5, 3, 4, -2… in test_backrefs() 32 TEST_REGEX_SEARCH("a(([bc])\\2)*d", perl, "abbcbd", match_default, make_array(-2, -2)); in test_backrefs() 33 …TEST_REGEX_SEARCH("a((b)*\\2)*d", perl, "abbbd", match_default, make_array(0, 5, 1, 4, 2, 3, -2, -… in test_backrefs() [all …]
|
D | test_asserts.cpp | 24 …TEST_REGEX_SEARCH("((?:(?!a|b)\\w)+)(\\w+)", perl, " xxxabaxxx ", match_default, make_array(2, 1… in test_forward_lookahead_asserts() 25 …TEST_REGEX_SEARCH("/\\*(?:(?!\\*/).)*\\*/", perl, " /**/ ", match_default, make_array(2, 6, -2, … in test_forward_lookahead_asserts() 26 …TEST_REGEX_SEARCH("/\\*(?:(?!\\*/).)*\\*/", perl, " /***/ ", match_default, make_array(2, 7, -2,… in test_forward_lookahead_asserts() 27 …TEST_REGEX_SEARCH("/\\*(?:(?!\\*/).)*\\*/", perl, " /********/ ", match_default, make_array(2, 1… in test_forward_lookahead_asserts() 28 …TEST_REGEX_SEARCH("/\\*(?:(?!\\*/).)*\\*/", perl, " /* comment */ ", match_default, make_array(2… in test_forward_lookahead_asserts() 29 …TEST_REGEX_SEARCH("<\\s*a[^>]*>((?:(?!<\\s*/\\s*a\\s*>).)*)<\\s*/\\s*a\\s*>", perl, " <a href=\"he… in test_forward_lookahead_asserts() 30 …TEST_REGEX_SEARCH("<\\s*a[^>]*>((?:(?!<\\s*/\\s*a\\s*>).)*)<\\s*/\\s*a\\s*>", perl, " <a href=\"he… in test_forward_lookahead_asserts() 31 …TEST_REGEX_SEARCH("<\\s*a[^>]*>((?:(?!<\\s*/\\s*a\\s*>).)*)(?=<\\s*/\\s*a\\s*>)", perl, " <a href=… in test_forward_lookahead_asserts() 32 …TEST_REGEX_SEARCH("<\\s*a[^>]*>((?:(?!<\\s*/\\s*a\\s*>).)*)(?=<\\s*/\\s*a\\s*>)", perl, " <a href=… in test_forward_lookahead_asserts() 33 …\\$|NUL|CON|COM\\d|LPT\\d|\\..*)(?:\\..+)?$)[^\\x00-\\x1f\\\\?*:\"|/]+$", perl, "command.com", mat… in test_forward_lookahead_asserts() [all …]
|
D | test_sets.cpp | 64 TEST_INVALID_REGEX("a[\\9]", perl); in test_sets() 93 TEST_REGEX_SEARCH("[\\d]+", perl, "a019b", match_default, make_array(1, 4, -2, -2)); in test_sets() 99 TEST_REGEX_SEARCH("[\\n]", perl, "\n", match_default, make_array(0, 1, -2, -2)); in test_sets() 100 TEST_REGEX_SEARCH("[\\b]", perl, "\b", match_default, make_array(0, 1, -2, -2)); in test_sets() 109 TEST_REGEX_SEARCH("\\w", perl, "A", match_default, make_array(0, 1, -2, -2)); in test_sets() 110 TEST_REGEX_SEARCH("\\w", perl, "Z", match_default, make_array(0, 1, -2, -2)); in test_sets() 111 TEST_REGEX_SEARCH("\\w", perl, "a", match_default, make_array(0, 1, -2, -2)); in test_sets() 112 TEST_REGEX_SEARCH("\\w", perl, "z", match_default, make_array(0, 1, -2, -2)); in test_sets() 113 TEST_REGEX_SEARCH("\\w", perl, "_", match_default, make_array(0, 1, -2, -2)); in test_sets() 114 TEST_REGEX_SEARCH("\\w", perl, "}", match_default, make_array(-2, -2)); in test_sets() [all …]
|
D | test_grep.cpp | 26 …TEST_REGEX_SEARCH("a", perl|nosubs, " a a a aa", match_default, make_array(1, 2, -2, 3, 4, -2, 5, … in test_grep() 27 …TEST_REGEX_SEARCH("a+b+", perl|nosubs, "aabaabbb ab", match_default, make_array(0, 3, -2, 3, 8, -2… in test_grep() 28 …TEST_REGEX_SEARCH("a(b*|c|e)d", perl|nosubs, "adabbdacd", match_default, make_array(0, 2, -2, 2, 6… in test_grep() 29 …TEST_REGEX_SEARCH("a", perl|nosubs, "\na\na\na\naa", match_default, make_array(1, 2, -2, 3, 4, -2,… in test_grep() 30 …TEST_REGEX_SEARCH("^", perl|nosubs, " \n\n \n\n\n", match_default, make_array(0, 0, -2, 4, 4, -… in test_grep() 31 …TEST_REGEX_SEARCH("^ab", perl|nosubs, "ab \nab ab\n", match_default, make_array(0, 2, -2, 5, 7, … in test_grep() 32 …TEST_REGEX_SEARCH("^[^\\n]*\n", perl|nosubs, " \n \n\n \n", match_default, make_array(0, 4, -2… in test_grep() 33 …TEST_REGEX_SEARCH("\\<abc", perl|nosubs, "abcabc abc\n\nabc", match_default, make_array(0, 3, -2, … in test_grep() 34 …TEST_REGEX_SEARCH("\\<", perl|nosubs, " ab a aaa ", match_default, make_array(2, 2, -2, 5, 5, -2… in test_grep() 35 …TEST_REGEX_SEARCH("\\<\\w+\\W+", perl|nosubs, " aa aa a ", match_default, make_array(1, 5, -2, 5… in test_grep() [all …]
|
D | test_non_greedy_repeats.cpp | 24 …TEST_REGEX_SEARCH("a*?", perl, "aa", match_default, make_array(0, 0, -2, 0, 1, -2, 1, 1, -2, 1, 2,… in test_non_greedy_repeats() 25 TEST_REGEX_SEARCH("^a*?$", perl, "aa", match_default, make_array(0, 2, -2, -2)); in test_non_greedy_repeats() 26 TEST_REGEX_SEARCH("^.*?$", perl, "aa", match_default, make_array(0, 2, -2, -2)); in test_non_greedy_repeats() 27 TEST_REGEX_SEARCH("^(a)*?$", perl, "aa", match_default, make_array(0, 2, 1, 2, -2, -2)); in test_non_greedy_repeats() 28 TEST_REGEX_SEARCH("^[ab]*?$", perl, "aa", match_default, make_array(0, 2, -2, -2)); in test_non_greedy_repeats() 29 …TEST_REGEX_SEARCH("a??", perl, "aa", match_default, make_array(0, 0, -2, 0, 1, -2, 1, 1, -2, 1, 2,… in test_non_greedy_repeats() 30 TEST_REGEX_SEARCH("a+?", perl, "aa", match_default, make_array(0, 1, -2, 1, 2, -2, -2)); in test_non_greedy_repeats() 31 …TEST_REGEX_SEARCH("a{1,3}?", perl, "aaa", match_default, make_array(0, 1, -2, 1, 2, -2, 2, 3, -2, … in test_non_greedy_repeats() 32 …TEST_REGEX_SEARCH("\\w+?w", perl, "...ccccccwcccccw", match_default, make_array(3, 10, -2, 10, 16,… in test_non_greedy_repeats() 33 …TEST_REGEX_SEARCH("\\W+\\w+?w", perl, "...ccccccwcccccw", match_default, make_array(0, 10, -2, -2)… in test_non_greedy_repeats() [all …]
|
D | test_alt.cpp | 22 TEST_REGEX_SEARCH("a|b", perl, "a", match_default, make_array(0, 1, -2, -2)); in test_alt() 23 TEST_REGEX_SEARCH("a|b", perl, "b", match_default, make_array(0, 1, -2, -2)); in test_alt() 24 TEST_REGEX_SEARCH("a|b|c", perl, "c", match_default, make_array(0, 1, -2, -2)); in test_alt() 25 TEST_REGEX_SEARCH("a|(b)|.", perl, "b", match_default, make_array(0, 1, 0, 1, -2, -2)); in test_alt() 26 TEST_REGEX_SEARCH("(a)|b|.", perl, "a", match_default, make_array(0, 1, 0, 1, -2, -2)); in test_alt() 27 TEST_REGEX_SEARCH("a(b|c)", perl, "ab", match_default, make_array(0, 2, 1, 2, -2, -2)); in test_alt() 28 TEST_REGEX_SEARCH("a(b|c)", perl, "ac", match_default, make_array(0, 2, 1, 2, -2, -2)); in test_alt() 29 TEST_REGEX_SEARCH("a(b|c)", perl, "ad", match_default, make_array(-2, -2)); in test_alt() 30 TEST_REGEX_SEARCH("(a|b|c)", perl, "c", match_default, make_array(0, 1, 0, 1, -2, -2)); in test_alt() 31 TEST_REGEX_SEARCH("(a|(b)|.)", perl, "b", match_default, make_array(0, 1, 0, 1, 0, 1, -2, -2)); in test_alt() [all …]
|
D | test_unicode.cpp | 42 perl, \ 144 TEST_REGEX_SEARCH_U(L"[[:Assigned:]]", perl, L"\xffff", match_default, make_array(-2, -2)); in test_unicode() 145 TEST_REGEX_SEARCH_U(L"[[:ASCII:]]", perl, L"\x80", match_default, make_array(-2, -2)); in test_unicode() 147 …TEST_REGEX_SEARCH_U(L"\\N{KHMER DIGIT SIX}", perl, L"\x17E6", match_default, make_array(0, 1, -2, … in test_unicode() 148 …TEST_REGEX_SEARCH_U(L"\\N{MODIFIER LETTER LOW ACUTE ACCENT}", perl, L"\x02CF", match_default, make… in test_unicode() 149 …TEST_REGEX_SEARCH_U(L"\\N{SUPERSCRIPT ONE}", perl, L"\x00B9", match_default, make_array(0, 1, -2, … in test_unicode() 150 …TEST_REGEX_SEARCH_U(L"[\\N{KHMER DIGIT SIX}]", perl, L"\x17E6", match_default, make_array(0, 1, -2… in test_unicode() 151 …TEST_REGEX_SEARCH_U(L"[\\N{MODIFIER LETTER LOW ACUTE ACCENT}]", perl, L"\x02CF", match_default, ma… in test_unicode() 152 …TEST_REGEX_SEARCH_U(L"[\\N{SUPERSCRIPT ONE}]", perl, L"\x00B9", match_default, make_array(0, 1, -2… in test_unicode() 153 …TEST_REGEX_SEARCH_U(L"\\N{CJK UNIFIED IDEOGRAPH-7FED}", perl, L"\x7FED", match_default, make_array… in test_unicode() [all …]
|
D | test_locale.cpp | 184 …TEST_REGEX_SEARCH_L("[[:lower:]]+", perl, "\xde\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xe… in test_en_locale() 185 …TEST_REGEX_SEARCH_L("[[:upper:]]+", perl, "\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xc… in test_en_locale() 187 …TEST_REGEX_SEARCH_L("[[:print:]]+", perl, "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xae\xa… in test_en_locale() 188 …TEST_REGEX_SEARCH_L("[[:graph:]]+", perl, "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xae\xa… in test_en_locale() 189 …TEST_REGEX_SEARCH_L("[[:word:]]+", perl, "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd… in test_en_locale() 194 …TEST_REGEX_SEARCH_L("[a-z]+", perl|::boost::regex_constants::collate, "\xdf\xe0\xe1\xe2\xe3\xe4\xe… in test_en_locale() 195 …TEST_REGEX_SEARCH_L("[a-z]+", perl|::boost::regex_constants::collate, "\xbf\xc0\xc1\xc2\xc3\xc4\xc… in test_en_locale() 199 …TEST_REGEX_SEARCH_L("[[=a=]]+", perl, "aA\xe0\xe1\xe2\xe3\xe4\xe5\xc0\xc1\xc2\xc3\xc4\xc5", match_… in test_en_locale() 202 …TEST_REGEX_SEARCH_L("[A-Z]+", perl|icase|::boost::regex_constants::collate, "\xdf\xe0\xe1\xe2\xe3\… in test_en_locale() 203 …TEST_REGEX_SEARCH_L("[a-z]+", perl|icase|::boost::regex_constants::collate, "\xbf\xc0\xc1\xc2\xc3\… in test_en_locale() [all …]
|
/third_party/boost/tools/bcp/ |
D | licence_info.cpp | 49 …"[:word:]]+Boost\\W+Software\\W+License\\W+Version\\W+1.0", boost::regex::perl | boost::regex::ica… in get_licenses() 51 boost::regex(generic_author_sig, boost::regex::perl | boost::regex::icase) in get_licenses() 64 …"[:word:]]+Boost\\W+Software\\W+License\\W+Version\\W+1.0", boost::regex::perl | boost::regex::ica… in get_licenses() 66 boost::regex(generic_author_sig, boost::regex::perl | boost::regex::icase) in get_licenses() 79 …"[:word:]]+Boost\\W+Software\\W+License\\W+Version\\W+1.0", boost::regex::perl | boost::regex::ica… in get_licenses() 81 boost::regex(generic_author_sig, boost::regex::perl | boost::regex::icase) in get_licenses() 93 …on\\W+Software\\W+Foundation\\W+All\\W+Rights\\W+Reserved", boost::regex::perl | boost::regex::ica… in get_licenses() 95 boost::regex(generic_author_sig, boost::regex::perl | boost::regex::icase) in get_licenses() 112 , boost::regex::perl | boost::regex::icase) in get_licenses() 114 boost::regex(generic_author_sig, boost::regex::perl | boost::regex::icase) in get_licenses() [all …]
|
/third_party/gstreamer/gstreamer/scripts/ |
D | update-states | 14 perl -i -p -e 's/GstElementState/GstState/g' $file 19 perl -i -p -e 's/GstStateReturn/GstStateChangeReturn/g' $file 24 perl -i -p -e 's/GST_STATE_SUCCESS/GST_STATE_CHANGE_SUCCESS/g' $file 25 perl -i -p -e 's/GST_STATE_ASYNC/GST_STATE_CHANGE_ASYNC/g' $file 26 perl -i -p -e 's/GST_STATE_FAILURE/GST_STATE_CHANGE_FAILURE/g' $file 27 perl -i -p -e 's/GST_STATE_NO_PREROLL/GST_STATE_CHANGE_NO_PREROLL/g' $file 29 perl -i -p -e 's/GST_STATE_CHANGE_NO_PREROLL \(/GST_STATE_NO_PREROLL (/g' $file 34 …perl -i -p -e 's/^(static.*)change_state \(GstElement \* element\);/$1change_state (GstElement * e… 35 …perl -i -p -e 's/change_state \(GstElement \* element\)/change_state (GstElement * element, GstSta… 36 perl -i -p -e 's/change_state \(element\)/change_state (element, transition)/g' $file [all …]
|
/third_party/openssl/ |
D | create_asm_file.sh | 40 perl crypto/aes/asm/aes-armv4.pl void crypto/aes/asm/arm32/aes-armv4.S 41 perl crypto/aes/asm/aesv8-armx.pl void crypto/aes/asm/arm32/aesv8-armx.S 42 perl crypto/aes/asm/bsaes-armv7.pl void crypto/aes/asm/arm32/bsaes-armv7.S 43 perl crypto/armv4cpuid.pl void crypto/armv4cpuid.S 44 perl crypto/bn/asm/armv4-gf2m.pl void crypto/bn/asm/arm32/armv4-gf2m.S 45 perl crypto/bn/asm/armv4-mont.pl void crypto/bn/asm/arm32/armv4-mont.S 46 perl crypto/chacha/asm/chacha-armv4.pl void crypto/chacha/asm/arm32/chacha-armv4.S 47 perl crypto/ec/asm/ecp_nistz256-armv4.pl void crypto/ec/asm/arm32/ecp_nistz256-armv4.S 48 perl crypto/modes/asm/ghash-armv4.pl void crypto/modes/asm/arm32/ghash-armv4.S 49 perl crypto/modes/asm/ghashv8-armx.pl void crypto/modes/asm/arm32/ghashv8-armx.S [all …]
|
/third_party/gettext/gettext-tools/tests/ |
D | lang-perl-2 | 22 -k__ --flag=__:1:pass-perl-format --flag=__:1:pass-perl-brace-format \ 23 -k__n:1,2 --flag=__n:1:pass-perl-format --flag=__n:1:pass-perl-brace-format \ 24 --flag=__n:2:pass-perl-format --flag=__n:2:pass-perl-brace-format \ 25 -k__x --flag=__x:1:perl-brace-format \ 76 test -d l-perl-2 || mkdir l-perl-2 96 perl -M'Locale::TextDomain' -e '' 2>/dev/null \ 105 LANGUAGE= LANG=$LOCALE_FR LC_MESSAGES= LC_CTYPE= LC_ALL= perl program2.pl > prog.out || Exit 1 110 …LANGUAGE= LANG=$LOCALE_FR_UTF8 LC_MESSAGES= LC_CTYPE= LC_ALL= perl program2.pl > prog.out || Exit 1
|
D | Makefile.am | 109 xgettext-perl-1 xgettext-perl-2 xgettext-perl-3 xgettext-perl-4 \ 110 xgettext-perl-5 xgettext-perl-6 xgettext-perl-7 xgettext-perl-8 \ 147 format-perl-1 format-perl-2 \ 148 format-perl-brace-1 format-perl-brace-2 \ 149 format-perl-mixed-1 format-perl-mixed-2 \ 173 lang-perl-1 lang-perl-2 \
|
/third_party/mindspore/scripts/ |
D | get_shape_from_ir.sh | 21 cat "$1" | perl -p -e 's/\n/NEWLINE/' \ 24 | perl -p -e 's/NEWLINE/\n/g' \ 25 | perl -p -e 's/<Array\[([\d\w]+)\]x\[[\w ]+\](\[[\d, ]*\])>/\2/g' \ 26 | perl -p -e 's/<Tuple\[([\[\]\d\w\.\*]*)\]>/Tuple/g' \ 27 | perl -p -e 's/ \%(\d+)\(.*= /\1\t/g' \ 28 | perl -p -e 's/\(.*\)( \{.*\})*:/\t\1\t/g' \
|
/third_party/openssl/util/ |
D | openssl-format-source | 119 perl -0 -np \ 124 perl -np \ 135 perl -np \ 139 perl -0 -np \ 141 | perl -np \ 144 | perl "$HERE"/su-filter.pl \
|
/third_party/ltp/m4/ |
D | ax_prog_perl_modules.m4 | 11 # Checks to see if the given perl modules are available. If true the shell 14 # calling AC_CHECK_PROG, or AC_PATH_PROG), AC_CHECK_PROG(PERL, perl, perl) 47 # Make sure we have perl 49 AC_CHECK_PROG(PERL,perl,perl) 55 AC_MSG_CHECKING(for perl module $ax_perl_module) 76 AC_MSG_WARN(could not find perl)
|
/third_party/curl/projects/ |
D | checksrc.bat | 79 perl --version <NUL 1>NUL 2>&1 116 …for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.p… 117 …for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.p… 124 …for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.p… 125 …for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.p… 130 …for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vauth\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\chec… 131 …for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vauth\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\chec… 136 …for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vquic\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\chec… 137 …for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vquic\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\chec… 142 …for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vssh\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\check… [all …]
|
/third_party/python/PCbuild/ |
D | prepare_ssl.py | 50 for perl in perls: 52 subprocess.check_output([perl, "-e", "use Win32;"]) 56 return perl 78 perl, script, src, dest = line.split() 173 perl = find_working_perl(perls) 174 if perl: 175 print("Found a working perl at '%s'" % (perl,)) 187 os.environ["PATH"] = os.path.dirname(perl) + \
|
/third_party/gettext/gettext-tools/examples/hello-perl/po/ |
D | Makefile.am | 15 -k_ --flag=_:1:pass-perl-format --flag=_:1:pass-perl-brace-format \ 16 -k__ --flag=__:1:pass-perl-format --flag=__:1:pass-perl-brace-format \ 18 -k'%__' --flag=%__:1:pass-perl-format --flag=%__:1:pass-perl-brace-format \ 19 -k__x --flag=__x:1:perl-brace-format \ 20 -k__n:1,2 --flag=__n:1:pass-perl-format --flag=__n:1:pass-perl-brace-format \ 21 --flag=__n:2:pass-perl-format --flag=__n:2:pass-perl-brace-format \ 22 -k__nx:1,2 --flag=__nx:1:perl-brace-format --flag=__nx:2:perl-brace-format \ 23 -k__xn:1,2 --flag=__xn:1:perl-brace-format --flag=__xn:2:perl-brace-format \ 24 -kN__ --flag=N__:1:pass-perl-format --flag=N__:1:pass-perl-brace-format
|
/third_party/mbedtls/scripts/ |
D | make_generated_files.bat | 4 perl scripts\generate_errors.pl || exit /b 1 5 perl scripts\generate_query_config.pl || exit /b 1 6 perl scripts\generate_features.pl || exit /b 1 8 perl scripts\generate_visualc_files.pl || exit /b 1
|