| /PHP_TRUNK/ext/pdo/tests/ |
| H A D | pdo_test.inc | 60 static function skip() { 64 die("skip " . $e->getMessage());
|
| /PHP_TRUNK/ext/spl/internal/ |
| H A D | limititerator.inc | 22 * a skip loop otehrwise.
|
| H A D | recursivearrayiterator.inc | 19 * the same functionality as FilterIterator. This allows you to skip parents
|
| H A D | recursivefilteriterator.inc | 19 * the same functionality as FilterIterator. This allows you to skip parents
|
| /PHP_TRUNK/ext/standard/tests/file/windows_acls/ |
| H A D | common.inc | 14 die('skip windows only test'); 17 die('skip windows 2003 or newer only test'); 111 returns false. If the $perm_entry contains 'N' skip this step.
|
| /PHP_TRUNK/ext/standard/tests/mail/ |
| H A D | mail_skipif.inc | 2 extension_loaded('imap') or die('skip imap extension not available in this build'); 6 // the code below didn't skip test even though there was no mail server 11 socket_connect($socket, "localhost", 143) or die ("skip can't socket to mail server"); 23 die("skip could not connect to mailbox $mailbox");
|
| /PHP_TRUNK/ |
| 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_TRUNK/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_TRUNK/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_TRUNK/ext/dba/ |
| H A D | dba_cdb.c | 160 while(skip--) {
|
| H A D | php_dba.h | 98 char *dba_fetch_##x(dba_info *info, char *key, int keylen, int skip, int *newlen TSRMLS_DC)
|
| H A D | dba_inifile.c | 74 ini_val = inifile_fetch(dba, &ini_key, skip TSRMLS_CC);
|
| H A D | dba.c | 81 ZEND_ARG_INFO(0, skip) 254 long skip = 0; \ 262 if (zend_parse_parameters(ac TSRMLS_CC, "zlr", &key, &skip, &id) == FAILURE) { \ 768 pmode++; /* done already - skip here */ 987 /* {{{ proto string dba_fetch(string key, [int skip ,] resource handle) 997 if (skip < 0) { 998 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Handler %s accepts only skip values greater than or equal to zero, using skip=0", info->hnd->name); 999 skip = 0; 1008 if (skip < [all...] |
| /PHP_TRUNK/ext/dba/libinifile/ |
| H A D | inifile.c | 245 val_type inifile_fetch(inifile *dba, const key_type *key, int skip TSRMLS_DC) { 250 if (skip == -1 && dba->next.key.group && dba->next.key.name && !inifile_key_cmp(&dba->next.key, key TSRMLS_CC)) { 259 if (skip == -1) { 260 skip = 0; 264 if (!skip) { 272 skip--;
|
| H A D | inifile.h | 48 val_type inifile_fetch(inifile *dba, const key_type *key, int skip TSRMLS_DC);
|
| /PHP_TRUNK/ext/oci8/ |
| H A D | oci8.c | 361 ZEND_ARG_INFO(0, skip)
|
| 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_TRUNK/ext/spl/ |
| H A D | php_spl.c | 565 goto skip; 613 skip:
|
| /PHP_TRUNK/ext/session/ |
| H A D | session.c | 917 goto skip; 929 skip:
|
| /PHP_TRUNK/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_TRUNK/ext/gd/libgd/ |
| H A D | gd.c | 1927 goto skip; 1945 skip: for (x++; x<=x2 && (gdImageGetPixel(im, x, y)!=oc); x++); 1997 goto skip; 2017 skip: for(x++; x<=x2 && (pts[y][x] || gdImageGetPixel(im,x, y)!=oc); x++);
|
| /PHP_TRUNK/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...] |