Home
last modified time | relevance | path

Searched refs:subject (Results 101 – 125 of 135) sorted by relevance

123456

/PHP-5.5/ext/standard/tests/mail/
H A Dmail_include.inc102 $envelope["subject"] = "Test msg $i";
/PHP-5.5/ext/pcre/pcrelib/
H A DHACKING20 subject string. In the terminology of Jeffrey Friedl's book, it was a "DFA
23 the one matching the longest subset of the subject string was chosen. This did
36 maximizing (or, optionally, minimizing in Perl) the amount of the subject that
121 simultaneously for all possible matches that start at one point in the subject
175 OP_SOM, start of match (subject + offset): \G
330 mode, subject characters with values greater than 255 can be handled correctly.
479 pointer in the subject string. In ASCII mode, the count is a number of units,
H A DChangeLog56 \a and \e in test subject lines.
1125 subject.
1128 characters at the end of the subject.
1408 subject string.
3085 for patterns like [\PPP\x8a]{1,}\x80 with the subject "A\x80".
3719 "(?s)(.{1,5})"8 did this with the subject "ab".
4366 starting at the last subject character, bytes beyond the end of the subject
4733 amount of subject to be scanned is less than 1000 bytes.
5413 of the subject.
5495 must be retried after every newline in the subject.
[all …]
H A DNEWS462 significantly reduced for certain subject strings.
543 subject string matched part of the regex. This could be useful for testing
707 subject string. This is important if there are lookbehinds. The new man
712 pcre_exec(pattern, extra, subject, length, options, ovec, ovecsize)
714 pcre_exec(pattern, extra, subject, length, 0, options, ovec, ovecsize)
H A Dpcre_jit_compile.c6377 callout_block->subject = (PCRE_SPTR)begin; in do_callout()
6379 callout_block->subject = (PCRE_SPTR16)begin; in do_callout()
6381 callout_block->subject = (PCRE_SPTR32)begin; in do_callout()
10411 PRIV(jit_exec)(const PUBL(extra) *extra_data, const pcre_uchar *subject, in PRIV()
10433 arguments.str = subject + start_offset; in PRIV()
10434 arguments.begin = subject; in PRIV()
10435 arguments.end = subject + length; in PRIV()
10486 PCRE_SPTR subject, int length, int start_offset, int options, in pcre_jit_exec() argument
10491 PCRE_SPTR16 subject, int length, int start_offset, int options, in pcre_jit_exec()
10496 PCRE_SPTR32 subject, int length, int start_offset, int options, in pcre_jit_exec()
[all …]
/PHP-5.5/ext/imap/
H A Dphp_imap.c430 ZEND_ARG_INFO(0, subject)
2110 if (en->subject && subjectlength) { in PHP_FUNCTION()
3423 if (env->subject) { in PHP_FUNCTION()
3424 add_property_string(myoverview, "subject", env->subject, 1); in PHP_FUNCTION()
3521 env->subject = cpystr(Z_STRVAL_PP(pvalue)); in PHP_FUNCTION()
4024 fprintf(sendmail, "Subject: %s\n", subject); in _php_imap_mail()
4048 char *to=NULL, *message=NULL, *headers=NULL, *subject=NULL, *cc=NULL, *bcc=NULL, *rpath=NULL; in PHP_FUNCTION() local
4051 …if (zend_parse_parameters(argc TSRMLS_CC, "sss|ssss", &to, &to_len, &subject, &subject_len, &messa… in PHP_FUNCTION()
4075 if (_php_imap_mail(to, subject, message, headers, cc, bcc, rpath TSRMLS_CC)) { in PHP_FUNCTION()
4457 if (en->subject) add_property_string(myzvalue, "subject", en->subject, 1); in _php_make_header_object()
[all …]
/PHP-5.5/ext/spl/
H A Dspl_iterators.c1970 char *subject, *result; in SPL_METHOD() local
1994 subject = Z_STRVAL(subject_copy); in SPL_METHOD()
1997 subject = Z_STRVAL_P(subject_ptr); in SPL_METHOD()
2005 …count = pcre_exec(intern->u.regex.pce->re, intern->u.regex.pce->extra, subject, subject_len, 0, 0,… in SPL_METHOD()
2012 subject = estrndup(subject, subject_len); in SPL_METHOD()
2017 php_pcre_match_impl(intern->u.regex.pce, subject, subject_len, &zcount, in SPL_METHOD()
2024 subject = estrndup(subject, subject_len); in SPL_METHOD()
2029 …php_pcre_split_impl(intern->u.regex.pce, subject, subject_len, intern->current.data, -1, intern->u… in SPL_METHOD()
2042 …result = php_pcre_replace_impl(intern->u.regex.pce, subject, subject_len, replacement, 0, &result_… in SPL_METHOD()
2065 efree(subject); in SPL_METHOD()
/PHP-5.5/ext/imap/tests/
H A Dimap_include.inc148 $envelope["subject"] = "Test msg $i";
/PHP-5.5/ext/intl/transliterator/
H A Dtransliterator_class.c366 ZEND_ARG_INFO( 0, subject )
/PHP-5.5/ext/iconv/tests/
H A Diconv_mime_decode_variation3.phpt24 // run on both linux and windows, the subject will have to be ascii only.
H A Diconv_mime_decode_headers_variation3.phpt23 // run on both linux and windows, the subject will have to be ascii only.
/PHP-5.5/ext/openssl/tests/
H A Dsni_001.phpt40 return $cert_ary['subject']['CN'];
/PHP-5.5/ext/zlib/tests/
H A Ddata.inc41 the same weapons, subject to the same diseases, heal'd by
/PHP-5.5/win32/build/
H A Dphpize.js.in7 | This source file is subject to version 3.01 of the PHP license, |
/PHP-5.5/ext/mbstring/
H A Dmbstring.c426 ZEND_ARG_INFO(0, subject)
4027 char *subject = NULL; in PHP_FUNCTION() local
4070 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sss|ss", &to, &to_len, &subject, &subject_le… in PHP_FUNCTION()
4076 MAIL_ASCIIZ_CHECK_MBSTRING(subject, subject_len); in PHP_FUNCTION()
4180 if (subject != NULL && subject_len >= 0) { in PHP_FUNCTION()
4182 orig_str.val = (unsigned char *)subject; in PHP_FUNCTION()
4191 subject_buf = subject = (char *)pstr->val; in PHP_FUNCTION()
4278 if (!err && php_mail(to_r, subject, message, headers, extra_cmd TSRMLS_CC)) { in PHP_FUNCTION()
/PHP-5.5/ext/pgsql/
H A DREADME233 Again, experimental functions are subject to be changed without
/PHP-5.5/ext/date/lib/
H A Dparse_iso_intervals.re7 | This source file is subject to version 3.01 of the PHP license, |
/PHP-5.5/ext/intl/
H A Dphp_intl.c434 ZEND_ARG_INFO( 0, subject )
/PHP-5.5/ext/pdo/
H A Dpdo_sql_parser.re7 | This source file is subject to version 3.01 of the PHP license, |
/PHP-5.5/ext/standard/
H A Durl_scanner_ex.re7 | This source file is subject to version 3.01 of the PHP license, |
H A Dvar_unserializer.re7 | This source file is subject to version 3.01 of the PHP license, |
/PHP-5.5/
H A DREADME.REDIST.BINS115 furnished to do so, subject to the following conditions:
241 freely, subject to the following restrictions:
/PHP-5.5/ext/openssl/
H A DREADME77 about the certificate, it's intended purposes, subject, issuer, validity
H A Dopenssl.c2713 X509_NAME * subject; in PHP_FUNCTION() local
2726 subject = X509_REQ_get_subject_name(csr); in PHP_FUNCTION()
2729 add_assoc_name_entry(return_value, NULL, subject, use_shortnames TSRMLS_CC); in PHP_FUNCTION()
/PHP-5.5/ext/standard/html_tables/mappings/
H A DROMAN.TXT52 # These mapping tables and character lists are subject to change.

Completed in 129 milliseconds

123456