Home
last modified time | relevance | path

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

12345678910>>...62

/third_party/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 …]
/third_party/openssl/
DNOTES-PERL.md1 Notes on Perl
5 - [Perl on Windows](#perl-on-windows)
6 - [Perl on VMS](#perl-on-vms)
7 - [Perl on NonStop](#perl-on-nonstop)
8 - [Required Perl modules](#required-perl-modules)
9 - [Notes on installing a Perl module](#notes-on-installing-a-perl-module])
14 For our scripts, we rely quite a bit on Perl, and increasingly on
15 some core Perl modules. These Perl modules are part of the Perl
16 source, so if you build Perl on your own, you should be set.
18 However, if you install Perl as binary packages, the outcome might
[all …]
DOAT.xml22 …<policyitem type="compatibility" name="GPL-2.0+" path="external/perl/Text-Template-1.46/.*" desc="…
27 …<policyitem type="compatibility" name="Artistic-1.0-Perl" path="external/perl/Text-Template-1.46/.…
28 …<policyitem type="compatibility" name="InvalidLicense" path="external/perl/Text-Template-1.46/lib/…
29 …<policyitem type="compatibility" name="InvalidLicense" path="NOTES.PERL" desc="release file,not ne…
30 …<policyitem type="compatibility" name="InvalidLicense" path="external/perl/Text-Template-1.56/Chan…
31 …<policyitem type="compatibility" name="GPL-1.0+" path="external/perl/Text-Template-1.56/LICENSE" d…
32 …<policyitem type="compatibility" name="InvalidLicense" path="external/perl/Text-Template-1.56/lib/…
34 …<policyitem type="compatibility" name="GPL-2.0+" path="compatible/external/perl/Text-Template-1.46…
39 …<policyitem type="compatibility" name="Artistic-1.0-Perl" path="compatible/external/perl/Text-Temp…
40 …item type="compatibility" name="InvalidLicense" path="compatible/external/perl/Text-Template-1.46/…
[all …]
DNOTES-WINDOWS.md39 ### Perl subsection
41 We recommend Strawberry Perl, available from <http://strawberryperl.com/>
42 Please read NOTES.PERL for more information, including the use of CPAN.
43 An alternative is ActiveState Perl, <https://www.activestate.com/ActivePerl>
44 for which you may need to explicitly build the Perl module Win32/Console.pm
59 1. Install Perl
63 3. Make sure both Perl and NASM are on your %PATH%
76 - `perl Configure VC-WIN32` if you want 32-bit OpenSSL or
77 - `perl Configure VC-WIN64A` if you want 64-bit OpenSSL or
78 - `perl Configure VC-WIN64-ARM` if you want Windows on Arm (win-arm64)
[all …]
/third_party/pcre2/pcre2/doc/
Dpcre2compat.33 PCRE2 - Perl-compatible regular expressions (revised API)
4 .SH "DIFFERENCES BETWEEN PCRE2 AND PERL"
7 This document describes some of the differences in the ways that PCRE2 and Perl
9 Perl version 5.34.0, but as both Perl and PCRE2 are continually changing, the
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 …]
Dpcre2pattern.33 PCRE2 - Perl-compatible regular expressions (revised API)
12 page. PCRE2 tries to match Perl syntax and semantics as closely as it can.
14 conflict with the Perl syntax) in order to provide some compatibility with
17 Perl's regular expressions are described in its own documentation, and regular
26 using a different algorithm that is not Perl-compatible. Some of the features
40 by special items at the start of a pattern. These are not Perl-compatible, but
225 matches. By default, this is any Unicode newline sequence, for Perl
342 putting them between \eQ and \eE. This is different from Perl in that $ and @
343 are handled as literals in \eQ...\eE sequences in PCRE2, whereas in Perl, $ and
344 @ cause variable interpolation. Also, Perl does "double-quotish backslash
[all …]
Dpcre2syntax.33 PCRE2 - Perl-compatible regular expressions (revised API)
166 Xsp Perl space: property Z or tab, NL, VT, FF, CR
169 Xwd Perl word: property Xan or underscore
171 Perl and POSIX space are now the same. Perl added VT to its space character set
304 for compatibility with Perl. However, if the PCRE2_EXTRA_ALLOW_LOOKAROUND_BSK
319 (?<name>...) named capture group (Perl)
320 (?'name'...) named capture group (Perl)
438 These assertions are specific to PCRE2 and are not Perl-compatible.
469 \ek<name> reference by name (Perl)
470 \ek'name' reference by name (Perl)
[all …]
/third_party/pcre2/pcre2/doc/html/
Dpcre2compat.html16 DIFFERENCES BETWEEN PCRE2 AND PERL
19 This document describes some of the differences in the ways that PCRE2 and Perl
21 Perl version 5.34.0, but as both Perl and PCRE2 are continually changing, the
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,
52 Perl may set such capture groups in other circumstances.
[all …]
/third_party/gstreamer/gstreamer/scripts/
Dupdate-states14 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
34perl -i -p -e 's/^(static.*)change_state \(GstElement \* element\);/$1change_state (GstElement * e…
35perl -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/python/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)
/third_party/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 …]
/third_party/pcre2/pcre2/
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 …]
DPrepareRelease11 # 132html A Perl script that converts a .1 or .3 man page into HTML. It
15 # CheckMan A Perl script that checks man pages for typos in the mark up.
17 # CleanTxt A Perl script that cleans up the output of "nroff -man" by
21 # Detrail A Perl script that removes trailing spaces from files.
46 perl ../CheckMan *.1 *.3
73 perl ../CleanTxt <$file.rawtxt >>pcre2.txt
86 perl ../CleanTxt <$file.rawtxt >$file.txt
94 perl <<"END" >pcre2demo.3
137 perl ../132html -toc $base <$file >html/$base.html
155 perl ../132html $toc $base <$file >html/$base.html
[all …]
/third_party/openssl/external/perl/Text-Template-1.56/
DMETA.yml2 abstract: 'Expand template text with embedded Perl'
12 perl: '5.008'
17 perl: '5.008'
20 license: perl
37 perl: '5.008'
41 bugtracker: https://github.com/mschout/perl-text-template/issues
42 homepage: https://github.com/mschout/perl-text-template
43 repository: https://github.com/mschout/perl-text-template.git
DMETA.json2 "abstract" : "Expand template text with embedded Perl",
20 "perl" : "5.008" string
38 "perl" : "5.008", string
51 "perl" : "5.008", string
70 "web" : "https://github.com/mschout/perl-text-template/issues"
72 "homepage" : "https://github.com/mschout/perl-text-template",
75 "url" : "https://github.com/mschout/perl-text-template.git",
76 "web" : "https://github.com/mschout/perl-text-template"
/third_party/openssl/.github/workflows/
Dci.yml36 run: ./config --banner=Configured --strict-warnings enable-fips && perl configdata.pm --dump
49 run: ./config --banner=Configured --strict-warnings enable-fips && perl configdata.pm --dump
67 …d enable-buildtest-c++ enable-fips --strict-warnings -D_DEFAULT_SOURCE && perl configdata.pm --dump
78 …run: CC=gcc ./config --banner=Configured enable-fips --strict-warnings && perl configdata.pm --dump
89 … run: CC=clang ./config --banner=Configured no-fips --strict-warnings && perl configdata.pm --dump
100 …ulk no-pic no-asm -DOPENSSL_NO_SECURE_MEMORY -DOPENSSL_SMALL_FOOTPRINT && perl configdata.pm --dump
111 …run: ./config --banner=Configured --strict-warnings no-deprecated enable-fips && perl configdata.p…
125 … run: ./config --banner=Configured --strict-warnings no-shared no-fips && perl configdata.pm --dump
136 …ips no-dtls no-tls1 no-tls1-method no-tls1_1 no-tls1_1-method no-async && perl configdata.pm --dump
147 …istp_64_gcc_128 enable-fips -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION && perl configdata.pm --dump
[all …]
Dwindows.yml37 - uses: shogo82148/actions-setup-perl@v1
43 perl ..\Configure --banner=Configured no-makedepend ${{ matrix.platform.config }}
44 perl configdata.pm --dump
68 - uses: shogo82148/actions-setup-perl@v1
74 perl ..\Configure --banner=Configured no-makedepend no-shared no-fips VC-WIN64A-masm
75 perl configdata.pm --dump
92 - uses: shogo82148/actions-setup-perl@v1
98perl ..\Configure --banner=Configured no-makedepend no-bulk no-deprecated no-fips no-asm -DOPENSSL…
99 perl configdata.pm --dump
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/Template/
DPreprocess.pm4 # ABSTRACT: Expand template text with embedded Perl
52 Text::Template::Preprocess - Expand template text with embedded Perl
101 { perl code }
107 { more perl code }
111 JavaScript program with executable Perl code. One strategy:
125 The development version is on github at L<https://https://github.com/mschout/perl-text-template>
126 and may be cloned from L<git://https://github.com/mschout/perl-text-template.git>
131 L<https://github.com/mschout/perl-text-template/issues>
142 C<mjd-perl-template+@plover.com>
146 C<mjd-perl-template-request@plover.com> to join.
[all …]
/third_party/openssl/Configurations/
Dwindows-makefile.tmpl188 INSTALLTOP_dev={- # $prefix is used in the OPENSSLDIR perl snippet
265 PERL={- $config{PERL} -}
279 ECHO="$(PERL)" "$(SRCDIR)\util\echo.pl"
435 @$(ECHO) " target system doesn't have $(PERL),"
444 …"SRCTOP=$(SRCDIR)" & set "BLDTOP=$(BLDDIR)" & set "PERL=$(PERL)" & set "FIPSKEY=$(FIPSKEY)" & "$(P…
451 @cmd /C "set "SRCTOP=$(SRCDIR)" & "$(PERL)" "$(SRCDIR)\test\run_tests.pl" list"
461 "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """{.,apps,test,fuzz}/$$1.*"""; } @ARGV" $(SHLIBS)
487 @ "$(PERL)" "$(SRCDIR)\util\add-depends.pl" "{- $target{makedep_scheme} -}"
503 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(MODULESDIR)"
504 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)"
[all …]
/third_party/mbedtls/scripts/
Dmake_generated_files.bat3 @rem Perl and Python 3 must be on the PATH.
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
/third_party/icu/icu4c/source/test/perf/
DREADME12 performance tests are driven by a perl-based script which calls the underlying C program and
49 … (e.g. convperf (Conversion tests)). Go to each directory and execute the perl script for each test
51 …* You only need to run the perl script from the latest ICU version. The corresponding perl script
59 Note: To run the actual performance test, you will need to setup Perl with the following modules:
63 perl script might be helpful.
64 Note: The perl script is only used in one version of ICU. When you run regression tests,
/third_party/python/Tools/scripts/
Ddutree.doc3 Newsgroups: comp.lang.perl
4 Subject: Re: The problems of Perl (Re: Question (silly?))
15 :And Perl is definitely awkward with data types. I haven't yet found a
16 :pleasant way of shoving non-trivial data types into Perl's grammar.
18 Yes, it's pretty awful at that, alright. Sometimes I write perl programs
23 :Here's a very simple problem that's tricky to express in Perl: process
/third_party/rust/crates/regex/regex-syntax/src/unicode_tables/
Dmod.rs13 #[cfg(all(feature = "unicode-perl", not(feature = "unicode-gencat")))]
17 #[cfg(all(feature = "unicode-perl", not(feature = "unicode-bool")))]
21 #[cfg(feature = "unicode-perl")]
31 feature = "unicode-perl",
41 feature = "unicode-perl",
/third_party/openssl/test/recipes/
D02-test_errstr.t1 #! /usr/bin/env perl
22 # perl, and may thereby get different error messages for the
29 # on Windows when built with msys perl. Similar problems are also observed
30 # in MSVC builds, depending on the perl implementation used.
45 # system. libcrypto's ERR should either use the same string as perl, or if
58 # The error names are perl constants, which are implemented as functions
66 # With perl, errcode zero is a bit special. Perl consistently gives
70 skip "perl error strings and ssystem error strings for errcode 0 differ", 1

12345678910>>...62