Searched refs:cfg (Results 1 – 11 of 11) sorted by relevance
/PHP-5.5/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-5.5/tests/lang/ |
H A D | static_variation_002.phpt | 11 function cfg() { 21 cfg();
|
/PHP-5.5/ext/opcache/Optimizer/ |
H A D | block_pass.c | 90 memset(cfg, 0, sizeof(zend_cfg)); in find_code_blocks() 525 if (!cfg->catch[i]->access) { in zend_rebuild_access_path() 526 zend_access_path(cfg->catch[i]); in zend_rebuild_access_path() 1252 if (cfg->try[i]->access) { in assemble_code_blocks() 1259 efree(cfg->try); in assemble_code_blocks() 1260 efree(cfg->catch); in assemble_code_blocks() 1271 efree(cfg->loop_start); in assemble_code_blocks() 1272 efree(cfg->loop_cont); in assemble_code_blocks() 1273 efree(cfg->loop_brk); in assemble_code_blocks() 2029 zend_cfg cfg; in zend_block_optimization() local [all …]
|
/PHP-5.5/sapi/fpm/tests/ |
H A D | 003.phpt | 12 $cfg = <<<EOT 24 $fpm = run_fpm($cfg, $tail);
|
/PHP-5.5/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));
|
H A D | pharcommand.inc | 172 foreach($phar_args as $lkey => $cfg) { 178 $args[$lkey] = $cfg; 211 static function cli_arg_typ_loader($arg, $cfg, $key) 276 static function cli_arg_typ_pharnew($arg, $cfg, $key) 278 $arg = self::cli_arg_typ_filenew($arg, $cfg, $key); 328 static function cli_arg_typ_pharurl($arg, $cfg, $key) 340 static function cli_arg_typ_phar($arg, $cfg, $key) 356 static function cli_arg_typ_entry($arg, $cfg, $key) 367 * @param string $cfg The config option. 373 $arg = self::cli_arg_typ_select($arg, $cfg, $key); [all …]
|
/PHP-5.5/ext/gd/libgd/ |
H A D | webpimg.c | 639 static void SetupParams(vpx_codec_enc_cfg_t* cfg, in SetupParams() argument 641 cfg->g_threads = 2; in SetupParams() 642 cfg->rc_min_quantizer = QP; in SetupParams() 643 cfg->rc_max_quantizer = QP; in SetupParams() 644 cfg->kf_mode = VPX_KF_FIXED; in SetupParams() 670 vpx_codec_enc_cfg_t cfg; in VPXEncode() local 687 res = vpx_codec_enc_config_default(iface, &cfg, 0); in VPXEncode() 692 SetupParams(&cfg, QP); in VPXEncode() 693 cfg.g_w = y_width; in VPXEncode() 694 cfg.g_h = y_height; in VPXEncode() [all …]
|
/PHP-5.5/ |
H A D | run-tests.php | 480 $cfg = array(); variable 483 $cfg[$type] = array(); 486 $cfg[$type][$file] = false; 573 $cfg['keep'][$file] = true; 628 $cfg['show'][$file] = true; 1168 global $cfg; 1170 if ($cfg['show'][$file]) { 1515 if (!$cfg['keep']['skip']) { 1531 if (!$cfg['keep']['skip']) { 1989 if (!$cfg['keep']['php']) { [all …]
|
/PHP-5.5/ext/mbstring/ |
H A D | config.m4 | 58 for cfg in $PHP_MBSTRING_EXTRA_CONFIG_HEADERS; do 59 cat > $ext_builddir/$cfg <<EOF
|
Completed in 31 milliseconds