Home
last modified time | relevance | path

Searched refs:opt (Results 1 – 25 of 37) sorted by relevance

12

/PHP-7.4/azure/macos/
H A Djob.yml12 export PATH="/usr/local/opt/bison/bin:$PATH"
28 --with-pgsql=/usr/local/opt/libpq \
29 --with-pdo-pgsql=/usr/local/opt/libpq \
42 --with-tidy=/usr/local/opt/tidyp \
49 --with-readline=/usr/local/opt/readline \
52 --with-gettext=/usr/local/opt/gettext \
54 --with-bz2=/usr/local/opt/bzip2 \
56 --with-gmp=/usr/local/opt/gmp \
57 --with-iconv=/usr/local/opt/libiconv \
61 --with-pspell=/usr/local/opt/aspell \
[all …]
/PHP-7.4/ext/session/
H A Dmod_files.sh39 select opt in "$@"; do
41 if [[ $opt = "Delete directory contents" ]]; then
44 elif [[ $opt = "Choose another directory" ]]; then
47 elif [[ $opt = "Quit" ]]; then
/PHP-7.4/ext/curl/tests/
H A Dbug46711.phpt13 $opt = array(
20 foreach( $opt as $option => $value ) {
24 var_dump($opt); // with this bug, $opt[58] becomes NULL
/PHP-7.4/ext/sodium/
H A Dsodium_pwhash.c44 zval *opt; in get_options() local
51 if ((opt = zend_hash_str_find(options, "memory_cost", strlen("memory_cost")))) { in get_options()
52 zend_long smemlimit = zval_get_long(opt); in get_options()
60 if ((opt = zend_hash_str_find(options, "time_cost", strlen("time_cost")))) { in get_options()
61 *opslimit = zval_get_long(opt); in get_options()
67 …if ((opt = zend_hash_str_find(options, "threads", strlen("threads"))) && (zval_get_long(opt) != 1)… in get_options()
/PHP-7.4/ext/mbstring/tests/
H A Dmb_ereg_search_xxx.phpt16 function test_search( $test_enc, $str, $look_for, $opt, $in_enc = 'EUC-JP' ) {
20 mb_ereg_search_init( $str, $look_for, $opt );
27 function do_tests( $enc, $opt ) {
28 test_search( $enc, "�ϡ� ����\n", ' (��?�ϡ�?)[[:space:]]', $opt );
29 test_search( $enc, 'abcde abdeabcf anvfabc odu abcd ', '(ab[a-z]+)', $opt );
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug34643.phpt12 public function get_it($opt="zzz") {
13 return $opt;
44 [0] => string get_it(string $opt)
H A Dbug38067.phpt16 function __construct($wsdl, $opt) {
17 parent::__construct($wsdl, $opt);
18 $this->server = new SoapServer($wsdl, $opt);
H A Dbug38005.phpt14 function __construct($wsdl, $opt) {
15 parent::__construct($wsdl, $opt);
16 $this->server = new SoapServer($wsdl, $opt);
/PHP-7.4/ext/opcache/tests/
H A Dbug66338.phpt32 $opt = -1; # This test works if $opt = 0
33 …-d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.optimization_level=$opt -d opcache.file_upd…
/PHP-7.4/ext/tidy/tests/
H A D007.phpt17 var_dump($a->getopt('bogus-opt'));
25 Warning: tidy::getOpt(): Unknown Tidy Configuration Option 'bogus-opt' in %s007.php on line 10
/PHP-7.4/ext/
H A Dext_skel.php182 switch($opt = strtolower(substr($val, 2)))
208 } else if ($opt == 'dir' && empty($argv[$i + 1])) {
212 … $options[$opt] = ($opt == 'dir' ? realpath($argv[$i + 1]) . DIRECTORY_SEPARATOR : $argv[$i + 1]);
/PHP-7.4/ext/pgsql/
H A Dphp_pgsql.h213 …convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, zend_ulong opt);
214 PHP_PGSQL_API int php_pgsql_insert(PGconn *pg_link, const char *table, zval *values, zend_ulong opt
215 …te(PGconn *pg_link, const char *table, zval *values, zval *ids, zend_ulong opt , zend_string **sql…
216 PHP_PGSQL_API int php_pgsql_delete(PGconn *pg_link, const char *table, zval *ids, zend_ulong opt, z…
217 …PGconn *pg_link, const char *table, zval *ids, zval *ret_array, zend_ulong opt, long fetch_option,…
H A Dpgsql.c5859 assert(!(opt & ~PGSQL_CONV_OPTS));
6547 if (opt & PGSQL_DML_ASYNC) {
6642 if (opt & PGSQL_DML_ESCAPE) {
6659 if (opt & PGSQL_DML_ESCAPE) {
6700 else if (opt & PGSQL_DML_STRING) {
6811 if (opt & PGSQL_DML_ESCAPE) {
6826 if (opt & PGSQL_DML_ESCAPE) {
6911 if ((opt & PGSQL_DML_EXEC) && do_exec(&querystr, PGRES_COMMAND_OK, pg_link, opt) == 0) {
6913 } else if (opt & PGSQL_DML_STRING) {
7004 if ((opt & PGSQL_DML_EXEC) && do_exec(&querystr, PGRES_COMMAND_OK, pg_link, opt) == 0) {
[all …]
/PHP-7.4/ext/tidy/
H A Dtidy.c543 TidyOption opt = tidyGetOptionByName(doc, optname); in _php_tidy_set_tidy_opt() local
547 if (!opt) { in _php_tidy_set_tidy_opt()
552 if (tidyOptIsReadOnly(opt)) { in _php_tidy_set_tidy_opt()
557 switch(tidyOptGetType(opt)) { in _php_tidy_set_tidy_opt()
569 if (tidyOptSetInt(doc, tidyOptGetId(opt), lval)) { in _php_tidy_set_tidy_opt()
967 *type = tidyOptGetType(opt); in php_tidy_get_opt_val()
1418 TidyOption opt; in PHP_FUNCTION() local
1436 if (!opt) { in PHP_FUNCTION()
1469 opt_name = (char *)tidyOptGetName(opt); in PHP_FUNCTION()
1578 TidyOption opt; in PHP_FUNCTION() local
[all …]
/PHP-7.4/ext/reflection/tests/
H A Dparameters_002.phpt7 NonExistingClass $na, stdClass &$opt = NULL, $def = "FooBar")
14 NonExistingClass $na, stdClass $opt = NULL, $def = "FooBar")
125 getName: string(3) "opt"
191 getName: string(3) "opt"
/PHP-7.4/ext/pdo_firebird/tests/
H A Dcommon.phpt24 $config['ENV']['PDOTEST_DSN'] = 'firebird:dbname=/opt/firebird/test.gdb';
/PHP-7.4/Zend/tests/
H A Ddebug_backtrace_options.phpt6 function backtrace_print($opt = null)
8 if(is_null($opt)) {
11 print_r(debug_backtrace($opt));
/PHP-7.4/ext/standard/
H A Dbasic_functions.h157 PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers);
158 PHPAPI int _php_error_log_ex(int opt_err, char *message, size_t message_len, char *opt, char *heade…
/PHP-7.4/ext/pdo_firebird/
H A Dconfig.m45 [/opt/firebird]])])
/PHP-7.4/ext/phar/phar/
H A Dclicommand.inc262 foreach($conf['select'] as $opt => $what) {
263 $ls = max($ls, strlen($opt));
267 foreach($conf['select'] as $opt => $what) {
268 … $inf .= $this->cli_wordwrap($sp2 . " " . sprintf("%-${ls}s ", $opt) . $what, $l3, $sp3) . "\n";
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd.h211 #define mysqlnd_options(conn, opt, value) ((conn)->data)->m->set_client_option((conn)->data, (opt),… argument
212 #define mysqlnd_options4(conn, opt, k, v) ((conn)->data)->m->set_client_option_2d((conn)->data, (op… argument
/PHP-7.4/ext/filter/
H A Dfilter.c738 zval *option, *opt, *def; in PHP_FUNCTION() local
746 …(opt = zend_hash_str_find_deref(Z_ARRVAL_P(filter_args), "options", sizeof("options") - 1)) != NUL… in PHP_FUNCTION()
747 Z_TYPE_P(opt) == IS_ARRAY && in PHP_FUNCTION()
748 (def = zend_hash_str_find_deref(Z_ARRVAL_P(opt), "default", sizeof("default") - 1)) != NULL) { in PHP_FUNCTION()
/PHP-7.4/ext/mbstring/
H A Dphp_mbregex.c1708 OnigOptionType opt; in PHP_FUNCTION() local
1719 opt = 0; in PHP_FUNCTION()
1721 _php_mb_regex_init_options(string, string_len, &opt, &syntax, NULL); in PHP_FUNCTION()
1722 _php_mb_regex_set_options(opt, syntax, NULL, NULL); in PHP_FUNCTION()
1724 opt = MBREX(regex_default_options); in PHP_FUNCTION()
1727 _php_mb_regex_get_option_string(buf, sizeof(buf), opt, syntax); in PHP_FUNCTION()
H A Dmbstring.c3755 int opt; in PHP_FUNCTION() local
3769 opt = 0; in PHP_FUNCTION()
3774 opt |= 0x1; in PHP_FUNCTION()
3777 opt |= 0x10; in PHP_FUNCTION()
3780 opt |= 0x2; in PHP_FUNCTION()
3783 opt |= 0x20; in PHP_FUNCTION()
3786 opt |= 0x4; in PHP_FUNCTION()
3789 opt |= 0x40; in PHP_FUNCTION()
3792 opt |= 0x8; in PHP_FUNCTION()
3795 opt |= 0x80; in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/xml/
H A Dxml.c1619 zend_long opt; in PHP_FUNCTION() local
1621 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlz", &pind, &opt, &val) == FAILURE) { in PHP_FUNCTION()
1629 switch (opt) { in PHP_FUNCTION()
1672 zend_long opt; in PHP_FUNCTION() local
1674 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rl", &pind, &opt) == FAILURE) { in PHP_FUNCTION()
1682 switch (opt) { in PHP_FUNCTION()

Completed in 150 milliseconds

12