/PHP-7.0/ext/pspell/tests/ |
H A D | 004.phpt | 11 $cfg = pspell_config_create('en', 'british', '', 'iso8859-1'); 12 var_dump(pspell_config_mode($cfg, PSPELL_BAD_SPELLERS)); 14 var_dump(pspell_config_runtogether($cfg, false)); 15 $p = pspell_new_config($cfg); 21 var_dump(pspell_config_runtogether($cfg, true)); 22 $p = pspell_new_config($cfg); 25 var_dump(pspell_config_runtogether($cfg, NULL))
|
H A D | 003.phpt | 11 $cfg = pspell_config_create('en', 'british', '', 'iso8859-1'); 14 $p = pspell_new_config($cfg); 21 var_dump(pspell_config_ignore($cfg, 2)); 22 $p = pspell_new_config($cfg); 26 var_dump(pspell_config_ignore($cfg, PHP_INT_MAX));
|
H A D | 005.phpt | 19 $cfg = pspell_config_create('en'); 20 var_dump(pspell_config_personal($cfg, "$wordlist.tmp")); 21 $p = pspell_new_config($cfg);
|
/PHP-7.0/sapi/fpm/tests/ |
H A D | include.inc | 32 $cfg = dirname(__FILE__).'/test-fpm-config.tmp'; 33 file_put_contents($cfg, $config); 41 …llit () { kill $child; }; trap killit TERM; '.get_fpm_path().' -F -O -y '.$cfg.' '.$extra_args.' 2… 43 function($fpm) use($cfg) { 44 @unlink($cfg); 62 $cfg = dirname(__FILE__).'/test-fpm-config.tmp'; 63 file_put_contents($cfg, $config); 64 exec(get_fpm_path() . ' -t -y ' . $cfg . ' 2>&1', $output, $code);
|
H A D | 008.phpt | 7 $cfg = <<<EOT 17 if (test_fpm_conf($cfg, $msg) == false) { 31 $cfg = <<<EOT 58 $fpm = run_fpm($cfg, $tail);
|
H A D | skipapparmor.inc | 4 $cfg = <<<EOT 17 $fpm = run_fpm($cfg, $out, '-t');
|
H A D | 021-uds-acl.phpt | 7 $cfg = <<<EOT 21 if (test_fpm_conf($cfg, $msg) == false) { die("skip " . $msg); } 46 $cfg = <<<EOT 63 $fpm = run_fpm($cfg, $tail);
|
H A D | 016.phpt | 7 $cfg = <<<EOT 17 if (test_fpm_conf($cfg, $msg) == false) { 31 $cfg = <<<EOT 56 $fpm = run_fpm($cfg, $tail);
|
H A D | 013.phpt | 13 $cfg = <<<EOT 27 $fpm = run_fpm($cfg, $tail);
|
H A D | 002.phpt | 13 $cfg = <<<EOT 25 $fpm = run_fpm($cfg, $tail);
|
H A D | 014.phpt | 13 $cfg = <<<EOT 27 $fpm = run_fpm($cfg, $tail);
|
H A D | 003.phpt | 16 $cfg = <<<EOT 28 $fpm = run_fpm($cfg, $tail);
|
H A D | 011.phpt | 13 $cfg = <<<EOT 27 $fpm = run_fpm($cfg, $tail);
|
H A D | 009.phpt | 13 $cfg = <<<EOT 27 $fpm = run_fpm($cfg, $tail);
|
H A D | 004.phpt | 16 $cfg = <<<EOT 28 $fpm = run_fpm($cfg, $tail);
|
H A D | 005.phpt | 16 $cfg = <<<EOT 29 $fpm = run_fpm($cfg, $tail);
|
H A D | 006.phpt | 16 $cfg = <<<EOT 29 $fpm = run_fpm($cfg, $tail);
|
H A D | 017.phpt | 14 $cfg = <<<EOT 34 $fpm = run_fpm($cfg, $tail);
|
H A D | apparmor.phpt | 20 $cfg = <<<EOT 44 …d to query apparmor confinement|failed to change to new confinement|exited with code 70)/', $cfg));
|
H A D | 022-cve-2016-5385.phpt | 14 $cfg = <<<EOT 39 $fpm = run_fpm($cfg, $tail);
|
H A D | 007.phpt | 17 $cfg = <<<EOT 32 $fpm = run_fpm($cfg, $tail);
|
H A D | 020.phpt | 16 $cfg = <<<EOT 36 $fpm = run_fpm($cfg, $tail);
|
/PHP-7.0/ext/opcache/Optimizer/ |
H A D | block_pass.c | 120 memset(cfg, 0, sizeof(zend_cfg)); in find_code_blocks() 509 zend_code_block *blocks = cfg->blocks; in zend_rebuild_access_path() 541 if (!cfg->catch[i]->access) { in zend_rebuild_access_path() 642 zend_op **Tsource = cfg->Tsource; in zend_optimize_block() 1231 if (cfg->try[i]->access) { in assemble_code_blocks() 1452 zend_op **Tsource = cfg->Tsource; in zend_jmp_optimization() 1624 same_t = cfg->same_t; in zend_jmp_optimization() 1989 zend_cfg cfg; in optimize_cfg() local 2025 cfg.Tsource = NULL; in optimize_cfg() 2026 cfg.same_t = NULL; in optimize_cfg() [all …]
|
/PHP-7.0/tests/lang/ |
H A D | static_variation_002.phpt | 11 function cfg() { 21 cfg();
|
/PHP-7.0/ext/phar/phar/ |
H A D | clicommand.inc | 146 static function cli_arg_typ_bool($arg, $cfg, $key) 151 static function cli_arg_typ_int($arg, $cfg, $key) 160 static function cli_arg_typ_regex($arg, $cfg, $key) 173 static function cli_arg_typ_select($arg, $cfg, $key) 175 if (!in_array($arg, array_keys($cfg['select']))) { 176 …self::error("Parameter value '$arg' not one of '" . join("', '", array_keys($cfg['select'])) . "'.… 181 static function cli_arg_typ_dir($arg, $cfg, $key) 202 static function cli_arg_typ_filenew($arg, $cfg, $key) 213 static function cli_arg_typ_filecont($arg, $cfg, $key) 215 return file_get_contents(self::cli_arg_typ_file($arg, $cfg, $key));
|