Searched defs:skip (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_5/ |
| 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 (preg_match("/^skip/i", $output)){ 1216 $reason = (preg_match("/^skip\s*(.+)\$/", $output)) ? preg_replace("/^skip\s*(.+)\$/", "\\1", $output) : FALSE;
|
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 3901 /* set skip map for Boyer-Moor search */ 3904 UChar skip[], int** int_skip) 3910 for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++) skip[i] = len; 3913 skip[s[i]] = len - 1 - i; 3903 set_bm_skip(UChar* s, UChar* end, OnigEncoding enc ARG_UNUSED, UChar skip[], int** int_skip) argument
|
| H A D | regexec.c | 2340 fprintf(stderr, "NULL_CHECK_END: skip id:%d, s:%d\n", 2344 /* empty loop founded, skip next instruction */ 2375 fprintf(stderr, "NULL_CHECK_END_MEMST: skip id:%d, s:%d\n", 2401 fprintf(stderr, "NULL_CHECK_END_MEMST_PUSH: skip id:%d, s:%d\n", 2881 int skip, tlen1; local 2904 skip = reg->map[*se]; 2908 } while ((s - t) < skip && s < end); 2919 skip = reg->int_map[*se]; 2923 } while ((s - t) < skip && s < end); 2970 int** skip) 2969 set_bm_backward_skip(UChar* s, UChar* end, OnigEncoding enc ARG_UNUSED, int** skip) argument [all...] |
| /PHP_5_5/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_5/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_5/ext/pdo/ |
| H A D | pdo_stmt.c | 1876 int pdo_stmt_setup_fetch_mode(INTERNAL_FUNCTION_PARAMETERS, pdo_stmt_t *stmt, int skip) argument 1879 int flags, argc = ZEND_NUM_ARGS() - skip; 1908 if (Z_TYPE_PP(args[skip]) != IS_LONG) { 1912 mode = Z_LVAL_PP(args[skip]); 1946 } else if (Z_TYPE_PP(args[skip+1]) != IS_LONG) { 1949 stmt->fetch.column = Z_LVAL_PP(args[skip+1]); 1968 } else if (Z_TYPE_PP(args[skip+1]) != IS_STRING) { 1971 retval = zend_lookup_class(Z_STRVAL_PP(args[skip+1]), 1972 Z_STRLEN_PP(args[skip+1]), &cep TSRMLS_CC); 1988 if (Z_TYPE_PP(args[skip [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_builtin_functions.c | 2059 zend_execute_data *ptr, *skip; local 2077 /* skip debug_backtrace() */ 2087 skip = ptr; 2088 /* skip internal handler */ 2089 if (!skip->op_array && 2090 skip->prev_execute_data && 2091 skip->prev_execute_data->opline && 2092 skip->prev_execute_data->opline->opcode != ZEND_DO_FCALL && 2093 skip->prev_execute_data->opline->opcode != ZEND_DO_FCALL_BY_NAME && 2094 skip 2227 zend_execute_data *ptr, *skip; local [all...] |
Completed in 29 milliseconds