Searched refs:chars (Results 1 - 6 of 6) sorted by relevance
| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | cclass.h | 4 const unsigned char *chars; member in struct:cclass
|
| H A D | regcomp.c | 709 /* xxx what about signed chars here... */ 744 u = cp->chars;
|
| /PHP_TRUNK/ext/filter/ |
| H A D | sanitizing_filters.c | 30 static void php_filter_encode_html(zval *value, const unsigned char *chars) argument 42 if (chars[*s]) { 47 /* XXX: this needs to be optimized to work with blocks of 'safe' chars */ 67 static void php_filter_encode_url(zval *value, const unsigned char* chars, const int char_len, int high, int low, int encode_nul) argument 71 unsigned char *s = (unsigned char *)chars; 79 /* XXX: This is not needed since these chars in the allowed list never include the high/low/null value 202 /* strip tags, implicitly also removes \0 chars */ 319 /* Strip all chars not part of section 5 of
|
| /PHP_TRUNK/ext/standard/ |
| H A D | scanf.c | 107 char *chars; member in struct:CharSet 170 cset->chars = (char *) safe_emalloc(sizeof(char), (end - format - 1), 0); 184 cset->chars[cset->nchars++] = *ch; 201 cset->chars[cset->nchars++] = start; 202 cset->chars[cset->nchars++] = *ch; 219 cset->chars[cset->nchars++] = *ch; 248 if (cset->chars[i] == ch) { 283 efree((char *)cset->chars);
|
| H A D | string.c | 789 * what indicates which chars are to be trimmed. NULL->default (' \t\n\r\v\0') 1310 /* no other chars left */ 2263 * needed to stop that many chars from the end of the string 2370 * needed to stop that many chars from the end of the string 3304 Escapes all chars mentioned in charlist with backslash. It creates octal representations if asked to backslash characters with 8th bit set or with ASCII<32 (except '\n', '\r', '\t' etc...) */ 4913 int chars[256]; local 4930 memset((void*) chars, 0, sizeof(chars)); 4933 chars[*buf]++; 4945 add_index_long(return_value, inx, chars[in [all...] |
| /PHP_TRUNK/ext/intl/converter/ |
| H A D | converter.c | 67 char chars[127]; local 68 int8_t chars_len = sizeof(chars); 78 ucnv_getSubstChars(objval->src, chars, &chars_len, &error); 81 chars[0] = 0x1A; 82 chars[1] = 0; 85 RETVAL_STRINGL(chars, chars_len, 1); 592 /* {{{ proto bool UConverter::setSubstChars(string $chars) */ 594 ZEND_ARG_INFO(0, chars) 599 char *chars; local 602 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &chars, 643 char chars[127]; local [all...] |
Completed in 16 milliseconds