Home
last modified time | relevance | path

Searched refs:flag (Results 76 – 100 of 216) sorted by relevance

123456789

/php-src/ext/gd/libgd/
H A Dgd_gif_in.c97 static int GetCode (gdIOCtx *fd, CODE_STATIC_DATA *scd, int code_size, int flag, int *ZeroDataBlock…
376 GetCode_(gdIOCtx *fd, CODE_STATIC_DATA *scd, int code_size, int flag, int *ZeroDataBlockP) in GetCode_() argument
381 if (flag) { in GetCode_()
421 GetCode(gdIOCtx *fd, CODE_STATIC_DATA *scd, int code_size, int flag, int *ZeroDataBlockP) in GetCode() argument
425 rv = GetCode_(fd, scd, code_size,flag, ZeroDataBlockP); in GetCode()
426 if (VERBOSE) printf("[GetCode(,%d,%d) returning %d]\n",code_size,flag,rv); in GetCode()
432 LWZReadByte_(gdIOCtx *fd, LZW_STATIC_DATA *sd, char flag, int input_code_size, int *ZeroDataBlockP) in LWZReadByte_() argument
436 if (flag) { in LWZReadByte_()
546 LWZReadByte(gdIOCtx *fd, LZW_STATIC_DATA *sd, char flag, int input_code_size, int *ZeroDataBlockP) in LWZReadByte() argument
550 rv = LWZReadByte_(fd, sd, flag, input_code_size, ZeroDataBlockP); in LWZReadByte()
[all …]
/php-src/ext/standard/tests/array/
H A Darsort_variation3.phpt7 * 1. flag value as default
29 // set of possible flag values
44 // loop through $flag_value array and setting all possible flag values
45 foreach($flag_value as $key => $flag){
48 var_dump(arsort($temp_array, $flag) );
H A Dasort_variation3.phpt7 * 1. flag value as default
29 // set of possible flag values
44 // loop through $flag_value array and setting all possible flag values
45 foreach($flag_value as $key => $flag){
48 var_dump(asort($temp_array, $flag) );
H A Darsort_variation8.phpt6 …* testing arsort() by providing arrays contains sub arrays for $array argument with flowing flag v…
7 * flag value as default
38 // testing arsort() function by supplying different arrays, flag value is default
44 // testing arsort() function by supplying different arrays, flag value = SORT_REGULAR
H A Dasort_variation8.phpt6 …* testing asort() by providing arrays contains sub arrays for $array argument with flowing flag va…
7 * flag value as default
38 // testing asort() function by supplying different arrays, flag value is default
44 // testing asort() function by supplying different arrays, flag value = SORT_REGULAR
H A Darray_multisort_error.phpt28 array_multisort(): Argument #3 must be an array or a sort flag that has not already been specified
31 array_multisort(): Argument #3 must be an array or a sort flag that has not already been specified
H A Darsort_variation5.phpt6 …* testing arsort() by providing different string arrays for $array argument with following flag va…
7 * flag value as default
42 // loop through $flags array and setting all possible flag values
43 foreach($flags as $key => $flag){
46 var_dump(arsort($temp_array, $flag) ); // expecting : bool(true)
H A Dasort_variation5.phpt6 …* testing asort() by providing different string arrays for $array argument with following flag val…
7 * flag value as default
42 // loop through $flags array and setting all possible flag values
43 foreach($flags as $key => $flag){
46 var_dump(asort($temp_array, $flag) ); // expecting : bool(true)
H A Dbug69299.phpt2 Bug #69299 (Regression in array_filter's $flag argument in PHP 7)
/php-src/ext/standard/
H A Dinfo.c791 if (flag & PHP_INFO_GENERAL) { in php_print_info()
960 if (flag & PHP_INFO_MODULES) { in php_print_info()
1007 if (flag & PHP_INFO_VARIABLES) { in php_print_info()
1037 if (flag & PHP_INFO_CREDITS) { in php_print_info()
1042 if (flag & PHP_INFO_LICENSE) { in php_print_info()
1104 if (flag) { in php_info_print_box_start()
1258 zend_long flag = PHP_INFO_ALL; in PHP_FUNCTION() local
1262 Z_PARAM_LONG(flag) in PHP_FUNCTION()
1267 php_print_info((int)flag); in PHP_FUNCTION()
1306 Z_PARAM_LONG(flag) in PHP_FUNCTION()
[all …]
H A Dcredits.h36 PHPAPI void php_print_credits(int flag);
/php-src/ext/json/tests/
H A Djson_encode_exceptions.phpt2 Test json_encode() function : JSON_THROW_ON_ERROR flag
14 // JSON_THROW_ON_ERROR flag
H A Djson_validate_002.phpt39 Error: 0 json_validate(): Argument #3 ($flags) must be a valid flag (allowed flags: JSON_INVALID_UT…
42 Error: 0 json_validate(): Argument #3 ($flags) must be a valid flag (allowed flags: JSON_INVALID_UT…
H A Djson_encode_numeric.phpt2 Test json_encode() function with numeric flag
/php-src/ext/pcre/tests/
H A D003.phpt6 foreach (array(PREG_PATTERN_ORDER, PREG_SET_ORDER) as $flag) {
13 '2006-05-13 e outra data: "12-Aug-37"', $m, $flag));
H A Dbug80866.phpt2 Bug #80866 preg_split ignores limit flag when pattern with \K has 0-width fullstring match
/php-src/ext/dom/tests/modern/xml/
H A DXMLDocument_fromString_03.phpt18 foreach ($flags as $flag) {
19 …var_dump(Dom\XMLDocument::createFromString('<?xml version="1.0"?><container/>', $flag) instanceof …
/php-src/ext/spl/tests/
H A Ddit_002.phpt28 foreach($flags as $flag => $isstring) {
29 $obj->setFlags($flag);
/php-src/ext/fileinfo/tests/
H A Dfinfo_extension_flag.phpt2 Test FILEINFO_EXTENSION flag
/php-src/ext/mbstring/
H A Dmb_gpc.h38 int _php_mb_enable_encoding_translation(int flag);
/php-src/Zend/tests/
H A Dbug33282.phpt2 Bug #33282 (Re-assignment by reference does not clear the is_ref flag)
/php-src/ext/tokenizer/tests/
H A Dtoken_get_all_TOKEN_PARSE_000.phpt2 Parse errors during token_get_all() with TOKEN_PARSE flag
H A Dbug80462.phpt2 Bug #80462: Nullsafe operator tokenize with TOKEN_PARSE flag fails
/php-src/ext/ldap/tests/
H A Dbug72021.phpt2 Bug #72021 (ldap_escape() with DN flag is not RFC compliant)
/php-src/ext/curl/tests/
H A Dcurl_ftp_pasv.phpt26 /* Without enabling SKIP_PASV_IP flag, the following output will be seen..
32 /* After enabling SKIP_PASV_IP flag, the following output will be seen..

Completed in 30 milliseconds

123456789