Home
last modified time | relevance | path

Searched full:perl (Results 1 – 25 of 2995) sorted by relevance

12345678910>>...120

/external/sdv/vsomeip/third_party/boost/regex/test/regress/
Dtest_escapes.cpp22 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 …]
Dtest_simple_repeats.cpp24 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 …]
Dtest_replace.cpp22 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 …]
Dbasic_tests.cpp38 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 …]
Dtest_perl_ex.cpp23 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 …]
Dtest_sets.cpp64 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 …]
Dtest_backrefs.cpp21 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 …]
Dtest_asserts.cpp24 …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 …]
Dtest_grep.cpp26 …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 …]
Dtest_tricky_cases.cpp27 …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 …]
Dtest_alt.cpp22 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 …]
Dtest_non_greedy_repeats.cpp24 …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 …]
/external/openthread/third_party/mbedtls/repo/tests/suites/
Dtest_suite_camellia.data13 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 …]
Dtest_suite_block_cipher.data196 Camellia-128-ECB Encrypt Perl EVP #1 [#1]
200 Camellia-192-ECB Encrypt Perl EVP #1 [#1]
204 Camellia-256-ECB Encrypt Perl EVP #1 [#1]
208 Camellia-128-ECB Encrypt Perl EVP #1 [#2]
212 Camellia-128-ECB Encrypt Perl EVP #2
216 Camellia-128-ECB Encrypt Perl EVP #3
220 Camellia-128-ECB Encrypt Perl EVP #4
224 Camellia-192-ECB Encrypt Perl EVP #1 [#2]
228 Camellia-192-ECB Encrypt Perl EVP #2
232 Camellia-192-ECB Encrypt Perl EVP #3
[all …]
/external/mbedtls/tests/suites/
Dtest_suite_camellia.data13 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 …]
/external/pcre/doc/
Dpcre2compat.33 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 …]
/external/pcre/doc/html/
Dpcre2compat.html16 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 …]
/external/python/cpython3/PCbuild/
Dprepare_ssl.py3 # 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 …]
Dprepare_ssl.bat47 if "%PERL%" == "" where perl > "%TEMP%\perl.loc" 2> nul && set /P PERL= <"%TEMP%\perl.loc" & del "%…
48 if "%PERL%" == "" (echo Cannot locate perl.exe on PATH or as PERL variable & exit /b 4)
/external/ltp/m4/
Dax_prog_perl_modules.m411 # Checks to see if the given perl modules are available. If true the shell
13 # ACTION-IF-FALSE are run. Note if $PERL is not set (for example by
14 # calling AC_CHECK_PROG, or AC_PATH_PROG), AC_CHECK_PROG(PERL, perl, perl)
24 # AC_MSG_WARN(Need some Perl modules)
47 # Make sure we have perl
48 if test -z "$PERL"; then
49 AC_CHECK_PROG(PERL,perl,perl)
52 if test "x$PERL" != x; then
55 AC_MSG_CHECKING(for perl module $ax_perl_module)
58 $PERL -e "use $ax_perl_module; exit" > /dev/null 2>&1
[all …]
/external/curl/projects/
Dchecksrc.bat80 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 …]
/external/google-breakpad/src/third_party/libdisasm/swig/
DMakefile16 dummy: swig swig-python swig-ruby swig-perl swig-tcl install uninstall clean
18 swig: swig-python swig-perl
27 swig-perl:
28 cd perl && make -f Makefile-swig
34 install: install-python install-perl
43 install-perl:
44 cd perl && sudo make -f Makefile-swig install
51 #uninstall-ruby uninstall-perl uninstall-tcl
59 uninstall-perl:
60 cd perl && sudo make -f Makefile-swig uninstall
[all …]
/external/antlr/runtime/Perl5/docs/
Ddesign.pod7 This document describes the design of the C<ANTLR::Runtime> Perl 5 port.
11 C<ANTLR::Runtime> is the port of the runtime part for ANTLR to Perl 5. ANTLR's
14 Perl users should be perlish if possible - at least as a secondary interface.
27 The Java package C<org.antlr.runtime> maps to the Perl 5 package
32 Each Java class maps to a Perl 5 class with the same name.
41 Here's a list of Java types and how they should map to Perl.
47 Use a Perl scalar.
51 Use a reference to a Perl array.
55 Use a reference to a Perl hash.
/external/pcre/
Dperltest.sh3 # 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 …]
/external/curl/scripts/
DMakefile.am31 PERL = @PERL@ macro
49 if test -z "$(PERL)"; then echo "No perl: can't install completion script"; else \
50 $(PERL) $(srcdir)/completion.pl --curl $(top_builddir)/src/curl$(EXEEXT) --shell zsh > $@ ; fi
59 if test -z "$(PERL)"; then echo "No perl: can't install completion script"; else \
60 $(PERL) $(srcdir)/completion.pl --curl $(top_builddir)/src/curl$(EXEEXT) --shell fish > $@ ; fi
69 if test -n "$(PERL)"; then \
75 if test -n "$(PERL)"; then \

12345678910>>...120