/aosp_15_r20/external/sdv/vsomeip/third_party/boost/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_perl_ex.cpp | 23 TEST_REGEX_SEARCH("(?>^abc)", perl, "abc", match_default, make_array(0, 3, -2, -2)); in test_independent_subs() 24 TEST_REGEX_SEARCH("(?>^abc)", perl, "def\nabc", match_default, make_array(4, 7, -2, -2)); in test_independent_subs() 25 TEST_REGEX_SEARCH("(?>^abc)", perl, "defabc", match_default, make_array(-2, -2)); in test_independent_subs() 26 …TEST_REGEX_SEARCH("(?>.*/)foo", perl, "/this/is/a/very/long/line/in/deed/with/very/many/slashes/in… in test_independent_subs() 27 …TEST_REGEX_SEARCH("(?>.*/)foo", perl, "/this/is/a/very/long/line/in/deed/with/very/many/slashes/in… in test_independent_subs() 28 …TEST_REGEX_SEARCH("(?>(\\.\\d\\d[1-9]?))\\d+", perl, "1.230003938", match_default, make_array(1, 1… in test_independent_subs() 29 …TEST_REGEX_SEARCH("(?>(\\.\\d\\d[1-9]?))\\d+", perl, "1.875000282", match_default, make_array(1, 1… in test_independent_subs() 30 TEST_REGEX_SEARCH("(?>(\\.\\d\\d[1-9]?))\\d+", perl, "1.235", match_default, make_array(-2, -2)); in test_independent_subs() 31 …TEST_REGEX_SEARCH("^((?>\\w+)|(?>\\s+))*$", perl, "now is the time for all good men to come to the… in test_independent_subs() 32 …TEST_REGEX_SEARCH("^((?>\\w+)|(?>\\s+))*$", perl, "this is not a line with only words and spaces!"… in test_independent_subs() [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 | 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() 97 // perl or awk regular expressions: 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() [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_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_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_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 …]
|
/aosp_15_r20/device/google/cuttlefish_vmm/x86_64-linux-gnu/ |
D | builder-packages.txt | 100 libalgorithm-c3-perl 0.10-1 101 libalgorithm-diff-perl 1.19.03-2 102 libalgorithm-diff-xs-perl 0.04-5+b1 103 libalgorithm-merge-perl 0.08-3 115 libauthen-sasl-perl 2.1600-1 119 libb-hooks-endofscope-perl 0.24-1 120 libb-hooks-op-check-perl 0.22-1+b1 143 libclass-c3-perl 0.34-1 144 libclass-c3-xs-perl 0.14-1+b3 145 libclass-data-inheritable-perl 0.08-3 [all …]
|
/aosp_15_r20/device/google/cuttlefish_vmm/aarch64-linux-gnu/ |
D | builder-packages.txt | 86 libalgorithm-c3-perl 0.10-1 87 libalgorithm-diff-perl 1.19.03-2 88 libalgorithm-diff-xs-perl 0.04-5+b1 89 libalgorithm-merge-perl 0.08-3 99 libauthen-sasl-perl 2.1600-1 103 libb-hooks-endofscope-perl 0.24-1 104 libb-hooks-op-check-perl 0.22-1+b1 124 libclass-c3-perl 0.34-1 125 libclass-c3-xs-perl 0.14-1+b3 126 libclass-data-inheritable-perl 0.08-3 [all …]
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/tests/suites/ |
H A D | test_suite_camellia.data | 13 Camellia-128-ECB Encrypt Perl EVP #1 [#1] 16 Camellia-192-ECB Encrypt Perl EVP #1 [#1] 19 Camellia-256-ECB Encrypt Perl EVP #1 [#1] 22 Camellia-128-ECB Encrypt Perl EVP #1 [#2] 25 Camellia-128-ECB Encrypt Perl EVP #2 28 Camellia-128-ECB Encrypt Perl EVP #3 31 Camellia-128-ECB Encrypt Perl EVP #4 34 Camellia-192-ECB Encrypt Perl EVP #1 [#2] 37 Camellia-192-ECB Encrypt Perl EVP #2 40 Camellia-192-ECB Encrypt Perl EVP #3 [all …]
|
/aosp_15_r20/external/mbedtls/tests/suites/ |
H A D | test_suite_camellia.data | 13 Camellia-128-ECB Encrypt Perl EVP #1 [#1] 16 Camellia-192-ECB Encrypt Perl EVP #1 [#1] 19 Camellia-256-ECB Encrypt Perl EVP #1 [#1] 22 Camellia-128-ECB Encrypt Perl EVP #1 [#2] 25 Camellia-128-ECB Encrypt Perl EVP #2 28 Camellia-128-ECB Encrypt Perl EVP #3 31 Camellia-128-ECB Encrypt Perl EVP #4 34 Camellia-192-ECB Encrypt Perl EVP #1 [#2] 37 Camellia-192-ECB Encrypt Perl EVP #2 40 Camellia-192-ECB Encrypt Perl EVP #3 [all …]
|
/aosp_15_r20/external/pcre/doc/ |
H A D | pcre2compat.3 | 3 PCRE2 - Perl-compatible regular expressions (revised API) 4 .SH "DIFFERENCES BETWEEN PCRE2 AND PERL" 8 and Perl handle regular expressions. The differences described here are with 9 respect to Perl version 5.38.0, but as both Perl and PCRE2 are continually 12 1. When PCRE2_DOTALL (equivalent to Perl's /s qualifier) is not set, the 13 behaviour of the '.' metacharacter differs from Perl. In PCRE2, '.' matches the 17 EBCDIC. In Perl, '.' appears never to match LF, even when 0x0A is not a newline 20 2. PCRE2 has only a subset of Perl's Unicode support. Details of what it does 27 3. Like Perl, PCRE2 allows repeat quantifiers on parenthesized assertions, but 31 assertion just once). Perl allows some repeat quantifiers on other assertions, [all …]
|
/aosp_15_r20/external/pcre/doc/html/ |
H A D | pcre2compat.html | 16 DIFFERENCES BETWEEN PCRE2 AND PERL 20 and Perl handle regular expressions. The differences described here are with 21 respect to Perl version 5.38.0, but as both Perl and PCRE2 are continually 25 1. When PCRE2_DOTALL (equivalent to Perl's /s qualifier) is not set, the 26 behaviour of the '.' metacharacter differs from Perl. In PCRE2, '.' matches the 30 EBCDIC. In Perl, '.' appears never to match LF, even when 0x0A is not a newline 34 2. PCRE2 has only a subset of Perl's Unicode support. Details of what it does 40 3. Like Perl, PCRE2 allows repeat quantifiers on parenthesized assertions, but 44 assertion just once). Perl allows some repeat quantifiers on other assertions, 51 Perl treats the quantifier characters as literal. [all …]
|
/aosp_15_r20/external/python/cpython2/PC/VC6/ |
D | build_ssl.py | 2 # Uses Perl to setup the OpenSSL environment correctly 18 # Developers don't need an installation of Perl anymore to build Python. A svn 38 # Find a suitable Perl installation for OpenSSL. 39 # cygwin perl does *not* work. ActivePerl does. 40 # Being a Perl dummy, the simplest way I can check is if the "Win32" package 43 for perl in perls: 44 fh = os.popen('"%s" -e "use Win32;"' % perl) 49 return perl 50 print "Can not find a suitable PERL:" 52 print " the following perl interpreters were found:" [all …]
|
/aosp_15_r20/external/python/cpython2/PC/VS8.0/ |
D | build_ssl.py | 2 # Uses Perl to setup the OpenSSL environment correctly 18 # Developers don't need an installation of Perl anymore to build Python. A svn 21 # In Order to create the files in the case of an update you still need Perl. 43 # Find a suitable Perl installation for OpenSSL. 44 # cygwin perl does *not* work. ActivePerl does. 45 # Being a Perl dummy, the simplest way I can check is if the "Win32" package 48 for perl in perls: 49 fh = os.popen('"%s" -e "use Win32;"' % perl) 54 return perl 55 print("Can not find a suitable PERL:") [all …]
|
/aosp_15_r20/external/python/cpython2/PCbuild/ |
D | prepare_ssl.py | 6 # Uses Perl to create nmake makefiles and otherwise prepare the way 48 # Find a suitable Perl installation for OpenSSL. 49 # cygwin perl does *not* work. ActivePerl does. 50 # Being a Perl dummy, the simplest way I can check is if the "Win32" package 53 for perl in perls: 55 subprocess.check_output([perl, "-e", "use Win32;"]) 59 return perl 62 print("The following perl interpreters were found:") 67 print("NO perl interpreters were found on this machine at all!") 92 os.system('nmake /f {} PERL=perl TMP_D={} asms'.format(asm_makefile, tmp_d)) [all …]
|
/aosp_15_r20/external/python/cpython2/PC/VS7.1/ |
D | build_ssl.py | 2 # Uses Perl to setup the OpenSSL environment correctly 33 # Find a suitable Perl installation for OpenSSL. 34 # cygwin perl does *not* work. ActivePerl does. 35 # Being a Perl dummy, the simplest way I can check is if the "Win32" package 38 for perl in perls: 39 fh = os.popen(perl + ' -e "use Win32;"') 44 return perl 45 print "Can not find a suitable PERL:" 47 print " the following perl interpreters were found:" 52 print " NO perl interpreters were found on this machine at all!" [all …]
|
/aosp_15_r20/external/python/cpython3/PCbuild/ |
D | prepare_ssl.py | 3 # Uses Perl to create nmake makefiles and otherwise prepare the way 45 # Find a suitable Perl installation for OpenSSL. 46 # cygwin perl does *not* work. ActivePerl does. 47 # Being a Perl dummy, the simplest way I can check is if the "Win32" package 50 for perl in perls: 52 subprocess.check_output([perl, "-e", "use Win32;"]) 56 return perl 59 print("The following perl interpreters were found:") 64 print("NO perl interpreters were found on this machine at all!") 74 copy_if_different = r'$(PERL) $(SRC_D)\util\copy-if-different.pl' [all …]
|
/aosp_15_r20/external/curl/projects/ |
H A D | checksrc.bat | 80 rem Check we have Perl in our path 81 perl --version <NUL 1>NUL 2>&1 84 if exist "%SystemDrive%\Perl" ( 85 set "PATH=%SystemDrive%\Perl\bin;%PATH%" 118 …for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checks… 119 …for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checks… 126 …for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checks… 127 …for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checks… 132 …for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vauth\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\… 133 …for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vauth\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\… [all …]
|
/aosp_15_r20/external/pcre/ |
H A D | perltest.sh | 3 # Script for testing regular expressions with perl to check that PCRE2 handles 4 # them the same. For testing with different versions of Perl, if the first 5 # argument is -perl then the second is taken as the Perl command to use, and 6 # both are then removed. If the next argument is "-w", Perl is called with 9 # The Perl code has to have "use utf8" and "require Encode" at the start when 15 # Perl script to Perl through a pipe. If the next argument is "-utf8", a 18 # The remaining arguments, if any, are passed to Perl. They are an input file 20 # STDOUT. If Perl receives no arguments, it opens /dev/tty as input, and writes 24 perl=perl 28 if [ $# -gt 1 -a "$1" = "-perl" ] ; then [all …]
|