Home
last modified time | relevance | path

Searched refs:pat (Results 1 – 18 of 18) sorted by relevance

/PHP-7.1/ext/mbstring/tests/
H A Dmb_ereg.phpt16 function test_ereg( $test_enc, $pat, $str, $in_enc = 'EUC-JP' ) {
18 $pat = mb_convert_encoding( $pat, $test_enc, $in_enc );
20 …printf( "(%d)%s\n", mb_ereg( $pat, $str, $reg ), ( is_array( $reg )? bin2hex(mb_convert_encoding( …
24 $pat = b'([��-��]+) ([ ��-��]+)([��-��]+) ([��-��]+)$';
25 test_ereg( $enc, $pat, b'���� ������ ������ ����' );
26 test_ereg( $enc, $pat, b'�������� ������ ���� ���' );
/PHP-7.1/ext/pcre/pcrelib/testdata/
H A Dgrepinputx8 To pat or not to pat, that is the question.
H A Dgrepoutput54 8:To pat or not to pat, that is the question.
100 ./testdata/grepinputx:To pat or not to pat, that is the question.
360 ./testdata/grepinputx-8-To pat or not to pat, that is the question.
552 8:To pat or not to pat, that is the question.
/PHP-7.1/win32/
H A Dglob.c767 match(name, pat, patend) in match() argument
768 register Char *name, *pat, *patend; in match()
773 while (pat < patend) {
774 c = *pat++;
777 if (pat == patend)
780 if (match(name, pat, patend))
794 ++pat;
795 while (((c = *pat++) & M_MASK) != M_END)
796 if ((*pat & M_MASK) == M_RNG) {
797 if (c <= k && k <= pat[1])
[all …]
/PHP-7.1/ext/mbstring/oniguruma/
H A Dregerror.c318 UChar* pat, UChar* pat_end, const UChar *fmt, ...) in onig_snprintf_with_pattern() argument
320 onig_snprintf_with_pattern(buf, bufsize, enc, pat, pat_end, fmt, va_alist) in onig_snprintf_with_pattern()
324 UChar* pat;
339 need = (pat_end - pat) * 4 + 4;
345 p = pat;
H A Donigposix.h154 ONIG_EXTERN int regcomp P_((regex_t* reg, const char* pat, int options));
H A Dregexec.c507 stk->u.state.pcode = (pat);\
516 stk->u.state.pcode = (pat);\
524 stk->u.state.pcode = (pat);\
548 stk->u.state.pcode = (pat);\
556 stk->u.state.pcode = (pat);\
561 #define STACK_PUSH_ALT(pat,s,sprev) STACK_PUSH(STK_ALT,pat,s,sprev) argument
563 #define STACK_PUSH_POS_NOT(pat,s,sprev) STACK_PUSH(STK_POS_NOT,pat,s,sprev) argument
568 #define STACK_PUSH_REPEAT(id, pat) do {\ argument
572 stk->u.repeat.pcode = (pat);\
663 #define STACK_PUSH_CALL_FRAME(pat) do {\ argument
[all …]
H A Dregint.h789 extern void onig_snprintf_with_pattern PV_((UChar buf[], int bufsize, OnigEncoding enc, UChar* pat
/PHP-7.1/ext/phar/tests/
H A Dbug74991.phpt13 …n be truncated to 4096 (MAXPATHLEN) into 'phar://..sample.phar/some:xx..xx:pat' so it will fail to…
/PHP-7.1/ext/fileinfo/libmagic/
H A Dfuncs.c430 file_replace(struct magic_set *ms, const char *pat, const char *rep) in file_replace() argument
442 convert_libmagic_pattern(&patt, (char*)pat, strlen(pat), opts); in file_replace()
/PHP-7.1/ext/imap/
H A Dphp_imap.c1888 zend_string *ref, *pat; in PHP_FUNCTION() local
1892 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rSS", &streamind, &ref, &pat) == FAILURE) { in PHP_FUNCTION()
1904 mail_list(imap_le_struct->imap_stream, ZSTR_VAL(ref), ZSTR_VAL(pat)); in PHP_FUNCTION()
1927 zend_string *ref, *pat; in PHP_FUNCTION() local
1932 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rSS", &streamind, &ref, &pat) == FAILURE) { in PHP_FUNCTION()
1944 mail_list(imap_le_struct->imap_stream, ZSTR_VAL(ref), ZSTR_VAL(pat)); in PHP_FUNCTION()
1977 zend_string *ref, *pat, *content; in PHP_FUNCTION() local
2205 zend_string *ref, *pat; in PHP_FUNCTION() local
2221 mail_lsub(imap_le_struct->imap_stream, ZSTR_VAL(ref), ZSTR_VAL(pat)); in PHP_FUNCTION()
2243 zend_string *ref, *pat; in PHP_FUNCTION() local
[all …]
/PHP-7.1/ext/mbstring/oniguruma/doc/
H A DRE377 + (?(condition)yes-pat|no-pat)
/PHP-7.1/ext/fileinfo/
H A Dlibmagic.patch1561 - const char *pat;
2242 file_replace(struct magic_set *ms, const char *pat, const char *rep)
2247 - rc = file_regcomp(&rx, pat, REG_EXTENDED);
2271 + convert_libmagic_pattern(&patt, (char*)pat, strlen(pat), opts);
2284 -file_regcomp(file_regex_t *rx, const char *pat, int flags)
2292 - rx->pat = pat;
2296 - return rx->rc = regcomp(&rx->rx, pat, flags);
2332 - file_magerror(ms, "regex error %d for `%s', (%s)", rc, rx->pat,
/PHP-7.1/win32/build/
H A Dconfutils.js2639 var pat = parts[p];
2640 var full_name = base + "\\" + pat;
2664 …re = new RegExp("^" + pat.replace(/\./g, '\\.').replace(/\*/g, '.*').replace(/\?/g, '.') + "$", "i…
/PHP-7.1/ext/pcre/pcrelib/doc/
H A Dpcre.txt328 tions from just one library. For example, if you want to study a pat-
1505 3. Because no substrings are captured, back references within the pat-
1972 matches only CR, LF, or CRLF. The default can be overridden when a pat-
2518 matching. The function pcre_study() takes a pointer to a compiled pat-
2552 for patterns to be analyzed, and for one-off matches and simple pat-
2671 and also by pcre_exec() and pcre_dfa_exec(). Thus, for any single pat-
2691 The pcre_fullinfo() function returns information about a compiled pat-
3357 This means that a special item such as (*COMMIT) at the start of a pat-
3360 these "start-up" optimizations can cause them to be skipped if the pat-
3382 first match attempt from there. The (*COMMIT) item means that the pat-
[all …]
/PHP-7.1/
H A Dltmain.sh5046 char * strendzap(char *str, const char *pat);
/PHP-7.1/ext/fileinfo/tests/
H A Dmagic9750 # XCF: file(1) magic for the patterns used in the GIMP (.pat), developed
H A Dmagic私はガラスを食べられます9750 # XCF: file(1) magic for the patterns used in the GIMP (.pat), developed

Completed in 182 milliseconds