| /PHP_5_5/ext/pcre/pcrelib/ |
| H A D | pcredemo.c | 50 char *pattern; local 80 /* After the options, we require exactly two arguments, which are the pattern, 89 pattern = argv[i]; 95 * Now we are going to compile the regular expression pattern, and handle * 100 pattern, /* the pattern */ 117 * pattern match against the subject string. This does just ONE match. If * 122 re, /* the compiled pattern */ 123 NULL, /* no extra data - we didn't study the pattern */ 143 pcre_free(re); /* Release memory used for the compiled pattern */ [all...] |
| H A D | pcreposix.c | 74 REG_EESCAPE, /* \ at end of pattern */ 75 REG_EESCAPE, /* \c at end of pattern */ 174 "pattern error", /* BADPAT */ 249 pattern the pattern to compile 257 regcomp(regex_t *preg, const char *pattern, int cflags) argument 273 preg->re_pcre = pcre_compile2(pattern, options, &errorcode, &errorptr,
|
| /PHP_5_5/ext/pcre/ |
| H A D | upgrade-pcre.php | 5 $pattern = 'pcre-*.tar.*'; variable 6 $newpcre = glob($pattern); 9 echo "more than one '$pattern' file. aborting\n"; 15 die("need one '$pattern' file. aborting.\n");
|
| /PHP_5_5/win32/ |
| H A D | fnmatch.c | 46 * Compares a filename or pathname to a pattern. 59 PHPAPI int fnmatch(const char *pattern, const char *string, int flags) argument 65 switch (c = *pattern++) { 82 c = *pattern; 85 c = *++pattern; 92 /* Optimize for pattern with * at end or before /. */ 108 if (!fnmatch(pattern, string, flags & ~FNM_PERIOD)) 120 if ((pattern = 121 rangematch(pattern, *string, flags)) == NULL) 127 if ((c = *pattern 153 rangematch(const char *pattern, char test, int flags) argument [all...] |
| /PHP_5_5/ext/intl/dateformat/ |
| H A D | dateformat_format_object.cpp | 67 bool pattern = false; local 132 pattern = true; 177 if (pattern) {
|
| /PHP_5_5/ext/intl/formatter/ |
| H A D | formatter_main.c | 31 char* pattern = NULL; local 40 &locale, &locale_len, &style, &pattern, &pattern_len ) == FAILURE ) 52 /* Convert pattern (if specified) to UTF-16. */ 53 if(pattern && pattern_len) { 54 intl_convert_utf8_to_utf16(&spattern, &spattern_len, pattern, pattern_len, &INTL_DATA_ERROR_CODE(nfo)); 55 INTL_CTOR_CHECK_STATUS(nfo, "numfmt_create: error converting pattern to UTF-16"); 73 /* {{{ proto NumberFormatter NumberFormatter::create( string $locale, int style[, string $pattern ] ) 75 /* {{{ proto NumberFormatter numfmt_create( string $locale, int style[, string $pattern ] ) 85 /* {{{ proto void NumberFormatter::__construct( string $locale, int style[, string $pattern ] )
|
| /PHP_5_5/ext/intl/msgformat/ |
| H A D | msgformat.c | 32 char* pattern; local 43 &locale, &locale_len, &pattern, &pattern_len ) == FAILURE ) 54 /* Convert pattern (if specified) to UTF-16. */ 55 if(pattern && pattern_len) { 56 intl_convert_utf8_to_utf16(&spattern, &spattern_len, pattern, pattern_len, &INTL_DATA_ERROR_CODE(mfo)); 57 INTL_CTOR_CHECK_STATUS(mfo, "msgfmt_create: error converting pattern to UTF-16"); 69 INTL_CTOR_CHECK_STATUS(mfo, "msgfmt_create: error converting pattern to quote-friendly format"); 77 (mfo)->mf_data.orig_format = estrndup(pattern, pattern_len); 91 /* {{{ proto MessageFormatter MesssageFormatter::create( string $locale, string $pattern ) 93 /* {{{ proto MessageFormatter msgfmt_create( string $locale, string $pattern ) [all...] |
| H A D | msgformat_format.c | 94 /* {{{ proto mixed MessageFormatter::formatMessage( string $locale, string $pattern, array $args ) 96 /* {{{ proto mixed msgfmt_format_message( string $locale, string $pattern, array $args ) 104 char *pattern = NULL; local 113 &slocale, &slocale_len, &pattern, &pattern_len, &args ) == FAILURE ) 123 if(pattern && pattern_len) { 124 intl_convert_utf8_to_utf16(&spattern, &spattern_len, pattern, pattern_len, &INTL_DATA_ERROR_CODE(mfo)); 128 "msgfmt_format_message: error converting pattern to UTF-16", 0 TSRMLS_CC ); 143 "msgfmt_format_message: error converting pattern to quote-friendly format", 0 TSRMLS_CC );
|
| H A D | msgformat_parse.c | 85 /* {{{ proto array MessageFormatter::formatMessage( string $locale, string $pattern, string $source ) 87 /* {{{ proto array numfmt_parse_message( string $locale, string $pattern, string $source ) 94 char *pattern = NULL; local 105 &slocale, &slocale_len, &pattern, &pattern_len, &source, &src_len ) == FAILURE ) 115 if(pattern && pattern_len) { 116 intl_convert_utf8_to_utf16(&spattern, &spattern_len, pattern, pattern_len, &INTL_DATA_ERROR_CODE(mfo)); 120 "msgfmt_parse_message: error converting pattern to UTF-16", 0 TSRMLS_CC ); 135 "msgfmt_parse_message: error converting pattern to quote-friendly format", 0 TSRMLS_CC );
|
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regext.c | 163 onig_new_deluxe(regex_t** reg, const UChar* pattern, const UChar* pattern_end, argument 172 r = conv_encoding(ci->pattern_enc, ci->target_enc, pattern, pattern_end, 177 cpat = (UChar* )pattern; 199 if (cpat != pattern) xfree(cpat); 206 onig_recompile_deluxe(regex_t* reg, const UChar* pattern, const UChar* pattern_end, argument 212 r = onig_new_deluxe(&new_reg, pattern, pattern_end, ci, einfo);
|
| H A D | reggnu.c | 82 re_compile_pattern(const char* pattern, int size, regex_t* reg, char* ebuf) argument 87 r = onig_compile(reg, (UChar* )pattern, (UChar* )(pattern + size), &einfo); 98 re_recompile_pattern(const char* pattern, int size, regex_t* reg, char* ebuf) argument 109 r = onig_recompile(reg, (UChar* )pattern, (UChar* )(pattern + size),
|
| H A D | regparse.h | 287 UChar* pattern; member in struct:__anon274 342 extern int onig_parse_make_tree P_((Node** root, const UChar* pattern, const UChar* end, regex_t* reg, ScanEnv* env));
|
| H A D | regposix.c | 134 regcomp(regex_t* reg, const char* pattern, int posix_options) argument 153 ENC_STRING_LEN(OnigEncDefaultCharEncoding, pattern, len); 154 r = onig_new(PONIG_C(reg), (UChar* )pattern, (UChar* )(pattern + len),
|
| H A D | testc.c | 34 static void xx(char* pattern, char* str, int from, int to, int mem, int not) argument 43 r = regcomp(®, pattern, REG_EXTENDED | REG_NEWLINE); 61 fprintf(stdout, "OK(N): /%s/ '%s'\n", pattern, str); 65 fprintf(stdout, "FAIL: /%s/ '%s'\n", pattern, str); 71 fprintf(stdout, "FAIL(N): /%s/ '%s'\n", pattern, str); 76 fprintf(stdout, "OK: /%s/ '%s'\n", pattern, str); 80 fprintf(stdout, "FAIL: /%s/ '%s' %d-%d : %d-%d\n", pattern, str, 92 r = onig_new(®, (UChar* )pattern, (UChar* )(pattern + SLEN(pattern)), 144 x2(char* pattern, char* str, int from, int to) argument 149 x3(char* pattern, char* str, int from, int to, int mem) argument 154 n(char* pattern, char* str) argument [all...] |
| H A D | testu.c | 58 static void xx(char* pattern, char* str, int from, int to, int mem, int not) argument 68 uconv(pattern, cpat, ulen(pattern)); 71 r = regcomp(®, pattern, REG_EXTENDED | REG_NEWLINE); 121 uconv(pattern, cpat, ulen(pattern)); 125 r = onig_new(®, (UChar* )pattern, (UChar* )(pattern + ulen(pattern)), 135 r = onig_new_deluxe(®, (UChar* )pattern, 190 x2(char* pattern, char* str, int from, int to) argument 195 x3(char* pattern, char* str, int from, int to, int mem) argument 200 n(char* pattern, char* str) argument [all...] |
| /PHP_5_5/ext/mbstring/oniguruma/win32/ |
| H A D | testc.c | 34 static void xx(char* pattern, char* str, int from, int to, int mem, int not) argument 43 r = regcomp(®, pattern, REG_EXTENDED | REG_NEWLINE); 61 fprintf(stdout, "OK(N): /%s/ '%s'\n", pattern, str); 65 fprintf(stdout, "FAIL: /%s/ '%s'\n", pattern, str); 71 fprintf(stdout, "FAIL(N): /%s/ '%s'\n", pattern, str); 76 fprintf(stdout, "OK: /%s/ '%s'\n", pattern, str); 80 fprintf(stdout, "FAIL: /%s/ '%s' %d-%d : %d-%d\n", pattern, str, 92 r = onig_new(®, (UChar* )pattern, (UChar* )(pattern + SLEN(pattern)), 144 x2(char* pattern, char* str, int from, int to) argument 149 x3(char* pattern, char* str, int from, int to, int mem) argument 154 n(char* pattern, char* str) argument [all...] |
| /PHP_5_5/ext/ereg/ |
| H A D | ereg.c | 31 ZEND_ARG_INFO(0, pattern) 37 ZEND_ARG_INFO(0, pattern) 43 ZEND_ARG_INFO(0, pattern) 139 static int _php_regcomp(regex_t *preg, const char *pattern, int cflags TSRMLS_DC) argument 142 int patlen = strlen(pattern); 156 if(zend_hash_find(&EREG(ht_rc), (char *) pattern, patlen+1, (void **) &rc) == SUCCESS 161 * is, we flush it and compile the pattern from scratch. 172 r = regcomp(preg, pattern, cflags); 185 zend_hash_update(&EREG(ht_rc), (char *) pattern, patlen+1, 191 r = regcomp(preg, pattern, cflag 403 php_ereg_replace(const char *pattern, const char *replace, const char *string, int icase, int extended TSRMLS_DC) argument 554 char *pattern, *arg_string; local [all...] |
| /PHP_5_5/ext/soap/ |
| H A D | php_sdl.h | 149 sdlRestrictionCharPtr pattern; member in struct:_sdlRestrictions
|
| /PHP_5_5/ext/standard/ |
| H A D | browscap.c | 85 static void convert_browscap_pattern(zval *pattern, int persistent) /* {{{ */ argument 90 php_strtolower(Z_STRVAL_P(pattern), Z_STRLEN_P(pattern)); 92 t = (char *) safe_pemalloc(Z_STRLEN_P(pattern), 2, 5, persistent); 97 for (i=0; i<Z_STRLEN_P(pattern); i++, j++) { 98 switch (Z_STRVAL_P(pattern)[i]) { 127 t[j] = Z_STRVAL_P(pattern)[i]; 136 Z_STRVAL_P(pattern) = t; 137 Z_STRLEN_P(pattern) = j; 439 /* Pick which browser pattern replace [all...] |
| H A D | dir.c | 421 /* {{{ proto array glob(string pattern [, int flags]) 422 Find pathnames matching a pattern */ 431 char *pattern = NULL; local 439 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|l", &pattern, &pattern_len, &flags) == FAILURE) { 454 if (!IS_ABSOLUTE_PATH(pattern, pattern_len)) { 460 if (IS_SLASH(*pattern)) { 466 snprintf(work_pattern, MAXPATHLEN, "%s%c%s", cwd, DEFAULT_SLASH, pattern); 467 pattern = work_pattern; 474 if (0 != (ret = glob(pattern, flags & GLOB_FLAGMASK, NULL, &globbuf))) { 497 if (0 != VCWD_STAT(pattern, [all...] |
| H A D | file.c | 2418 /* {{{ proto bool fnmatch(string pattern, string filename [, int flags]) 2419 Match filename against pattern */ 2422 char *pattern, *filename; local 2426 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "pp|l", &pattern, &pattern_len, &filename, &filename_len, &flags) == FAILURE) { 2439 RETURN_BOOL( ! fnmatch( pattern, filename, flags ));
|
| /PHP_5_5/main/streams/ |
| H A D | glob_wrapper.c | 46 char *pattern; member in struct:__anon287 76 if (pglob && pglob->pattern) { 81 return estrndup(pglob->pattern, pglob->pattern_len); 83 return pglob->pattern; 174 if (pglob->pattern) { 175 efree(pglob->pattern); 250 pglob->pattern = estrndup(pos, pglob->pattern_len);
|
| /PHP_5_5/ext/mbstring/ |
| H A D | php_mbregex.c | 448 static php_mb_regex_t *php_mbregex_compile_pattern(const char *pattern, int patlen, OnigOptionType options, OnigEncoding enc, OnigSyntaxType *syntax TSRMLS_DC) argument 456 found = zend_hash_find(&MBREX(ht_rc), (char *)pattern, patlen+1, (void **) &rc); 458 if ((err_code = onig_new(&retval, (OnigUChar *)pattern, (OnigUChar *)(pattern + patlen), options, enc, syntax, &err_info)) != ONIG_NORMAL) { 464 zend_hash_update(&MBREX(ht_rc), (char *) pattern, patlen + 1, (void *) &retval, sizeof(retval), NULL); 723 php_error_docref(NULL TSRMLS_CC, E_WARNING, "empty pattern"); 770 /* {{{ proto int mb_ereg(string pattern, string string [, array registers]) 778 /* {{{ proto int mb_eregi(string pattern, string string [, array registers]) 869 /* create regex pattern buffer */ 1025 /* {{{ proto string mb_ereg_replace(string pattern, strin [all...] |
| /PHP_5_5/ext/curl/ |
| H A D | interface.c | 1343 static int curl_fnmatch(void *ctx, const char *pattern, const char *string) argument 1365 ZVAL_STRING(zpattern, pattern, 1);
|
| /PHP_5_5/ext/fileinfo/libmagic/ |
| H A D | softmagic.c | 1818 convert_libmagic_pattern(zval *pattern, int options) argument 1823 t = (char *) safe_emalloc(Z_STRLEN_P(pattern), 2, 5); 1827 for (i=0; i<Z_STRLEN_P(pattern); i++, j++) { 1828 switch (Z_STRVAL_P(pattern)[i]) { 1834 t[j] = Z_STRVAL_P(pattern)[i]; 1848 Z_STRVAL_P(pattern) = t; 1849 Z_STRLEN_P(pattern) = j; 2012 zval *pattern; local 2017 MAKE_STD_ZVAL(pattern); 2018 ZVAL_STRINGL(pattern, (cha [all...] |