Searched defs:skip (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_3/ |
| H A D | server-tests.php | 838 $skip = array('.', '..', 'CVS'); variable 841 if (in_array($name, $skip)) continue; 1182 // executable, skip 1189 // ini settings are compatible with the test, or skip 1214 if (eregi("^skip", $output)){ 1216 $reason = (ereg("^skip[[:space:]]*(.+)\$", $output)) ? ereg_replace("^skip[[:space:]]*(.+)\$", "\\1", $output) : FALSE;
|
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 3690 /* set skip map for Boyer-Moor search */ 3693 UChar skip[], int** int_skip) 3699 for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++) skip[i] = len; 3702 skip[s[i]] = len - 1 - i; 3692 set_bm_skip(UChar* s, UChar* end, OnigEncoding enc, UChar skip[], int** int_skip) argument
|
| H A D | regexec.c | 2521 fprintf(stderr, "NULL_CHECK_END: skip id:%d, s:%d\n", 2525 /* empty loop founded, skip next instruction */ 2556 fprintf(stderr, "NULL_CHECK_END_MEMST: skip id:%d, s:%d\n", 2582 fprintf(stderr, "NULL_CHECK_END_MEMST_PUSH: skip id:%d, s:%d\n", 3068 int skip, tlen1; local 3092 skip = reg->map[*se]; 3096 } while ((s - t) < skip && s < end); 3108 skip = reg->int_map[*se]; 3112 } while ((s - t) < skip && s < end); 3158 set_bm_backward_skip(UChar* s, UChar* end, OnigEncoding enc, int** skip) argument [all...] |
| /PHP_5_3/ext/mbstring/ucgendat/ |
| H A D | ucgendat.c | 822 ac_uint4 i, lineno, skip, code, ccl_code; local 826 lineno = skip = 0; 840 if (skip) { 841 skip--; 875 skip = 1; 888 skip = 1; 901 skip = 1; 909 skip = 5; 916 skip = 1; 929 skip [all...] |
| /PHP_5_3/ext/oci8/ |
| H A D | oci8_interface.c | 1390 /* {{{ proto int oci_fetch_all(resource stmt, array &output[, int skip[, int maxrows[, int flags]]]) 1400 long rows = 0, flags = 0, skip = 0, maxrows = -1; local 1402 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rz/|lll", &z_statement, &array, &skip, &maxrows, &flags) == FAILURE) { 1411 while (skip--) {
|
| /PHP_5_3/ext/pdo/ |
| H A D | pdo_stmt.c | 1885 int pdo_stmt_setup_fetch_mode(INTERNAL_FUNCTION_PARAMETERS, pdo_stmt_t *stmt, int skip) argument 1888 int flags, argc = ZEND_NUM_ARGS() - skip; 1917 if (Z_TYPE_PP(args[skip]) != IS_LONG) { 1921 mode = Z_LVAL_PP(args[skip]); 1955 } else if (Z_TYPE_PP(args[skip+1]) != IS_LONG) { 1958 stmt->fetch.column = Z_LVAL_PP(args[skip+1]); 1977 } else if (Z_TYPE_PP(args[skip+1]) != IS_STRING) { 1980 retval = zend_lookup_class(Z_STRVAL_PP(args[skip+1]), 1981 Z_STRLEN_PP(args[skip+1]), &cep TSRMLS_CC); 1997 if (Z_TYPE_PP(args[skip [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend_builtin_functions.c | 1948 zend_execute_data *ptr, *skip; local 1965 /* skip debug_backtrace() */ 1974 skip = ptr; 1975 /* skip internal handler */ 1976 if (!skip->op_array && 1977 skip->prev_execute_data && 1978 skip->prev_execute_data->opline && 1979 skip->prev_execute_data->opline->opcode != ZEND_DO_FCALL && 1980 skip->prev_execute_data->opline->opcode != ZEND_DO_FCALL_BY_NAME && 1981 skip 2107 zend_execute_data *ptr, *skip; local [all...] |
Completed in 35 milliseconds