Home
last modified time | relevance | path

Searched refs:flag (Results 176 – 200 of 223) sorted by relevance

123456789

/php-src/Zend/tests/attributes/
H A D006_filter.phpt110 …ctionFunctionAbstract::getAttributes(): Argument #2 ($flags) must be a valid attribute filter flag"
/php-src/ext/dom/tests/modern/html/parser/
H A DElement_innerHTML.phpt22 // Create a non-interned string that gets the UTF-8 validity flag added
/php-src/ext/zip/
H A Dphp_zip.stub.php697 public function setArchiveFlag(int $flag, int $value): bool {}
699 public function getArchiveFlag(int $flag, int $flags = 0): int {}
H A Dphp_zip.c2126 zend_long flag, value; local
2128 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ll", &flag, &value) == FAILURE) {
2134 if (zip_set_archive_flag(intern, flag, (int)value)) {
2145 zend_long flag, flags = 0; local
2147 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l", &flag, &flags) == FAILURE) {
2153 RETURN_LONG(zip_get_archive_flag(intern, flag, flags));
/php-src/ext/intl/tests/
H A Dcollator_sort.phpt80 // Sort in en_US locale with SORT_STRING flag
H A Dcollator_sort_variant2.phpt80 // Sort in en_US locale with SORT_STRING flag
/php-src/ext/standard/tests/file/
H A Dfeof_basic.phpt21 //last time to set the eof flag but it will fail to read.
/php-src/ext/spl/tests/
H A Diterator_044.phpt2 SPL: CachingIterator and offsetGet/Exists using flag FULL_CACHE
/php-src/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_encoding.h250 unsigned int flag; member
/php-src/sapi/litespeed/
H A Dlsapilib.h420 void LSAPI_Log(int flag, const char * fmt, ...)
H A Dlsapilib.c242 void LSAPI_Log(int flag, const char * fmt, ...) in LSAPI_Log() argument
246 if ((flag & LSAPI_LOG_TIMESTAMP_BITS) in LSAPI_Log()
253 if (flag & LSAPI_LOG_TIMESTAMP_FULL) in LSAPI_Log()
259 else if (flag & LSAPI_LOG_TIMESTAMP_HMS) in LSAPI_Log()
266 int level = flag & LSAPI_LOG_LEVEL_BITS; in LSAPI_Log()
272 if (flag & LSAPI_LOG_PID) in LSAPI_Log()
2589 int flag = 1; in LSAPI_CreateListenSock2() local
2615 (char *)( &flag ), sizeof(flag)) == 0) in LSAPI_CreateListenSock2()
/php-src/ext/standard/tests/strings/
H A Dhtmlentities21.phpt22 function test($flag, $charset) {
28 $a = htmlentities($test, $flag | ENT_DISALLOWED, $charset);
29 $b = htmlspecialchars($test, $flag | ENT_DISALLOWED, $charset);
/php-src/ext/mysqli/tests/
H A Dmysqli_real_connect_pconn.phpt108 …// how do we test if gets forbidden because of a missing right or the flag, this test is partly bo…
H A Dmysqli_real_connect.phpt106 …// how do we test if gets forbidden because of a missing right or the flag, this test is partly bo…
/php-src/ext/skeleton/
H A Dconfig.m4.in76 dnl Add include flag where library package headers are located on the system.
/php-src/build/
H A Dlibtool.m4421 # Discard the --no-reexec flag, and continue.
2029 # implement the --enable-shared flag
2060 # set the default shared flag to --disable-shared
2069 # implement the --enable-static flag
2109 # implement the --enable-fast-install flag
2150 # implement the --with-pic flag
2353 # find reload flag for linker
4295 # Compiler flag to prevent dynamic linking.
4298 # Compiler flag to turn off builtin functions.
4301 # Compiler flag to allow reflexive dlopens.
[all …]
/php-src/docs/source/introduction/ides/
H A Dvisual-studio-code.rst93 ``--enable-debug`` configure flag. Copy the following into your projects ``.vscode/launch.json``
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_native.phpt110 // always strings, like STRINGIFY flag
/php-src/ext/mbstring/tests/
H A Dmb_convert_kana.phpt128 // Try non-existent flag
253 mb_convert_kana(): Argument #2 ($mode) contains invalid flag: 'Z'
/php-src/main/
H A Doutput.c1513 zend_long flag = 1; in PHP_FUNCTION() local
1515 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &flag) == FAILURE) { in PHP_FUNCTION()
1519 php_output_set_implicit_flush((int) flag); in PHP_FUNCTION()
/php-src/ext/mbstring/
H A Dmbstring.c445 return !(encoding->flag & MBFL_ENCTYPE_GL_UNSAFE); in php_mb_zend_encoding_lexer_compatibility_checker()
1664 unsigned int char_len = enc->flag & (MBFL_ENCTYPE_SBCS | MBFL_ENCTYPE_WCS2 | MBFL_ENCTYPE_WCS4); in PHP_FUNCTION()
1823 …unsigned int char_len = encoding->flag & (MBFL_ENCTYPE_SBCS | MBFL_ENCTYPE_WCS2 | MBFL_ENCTYPE_WCS… in mb_get_strlen()
2130 unsigned int flag = enc->flag & (MBFL_ENCTYPE_SBCS | MBFL_ENCTYPE_WCS2 | MBFL_ENCTYPE_WCS4); in mb_get_substr() local
2131 if (flag) { in mb_get_substr()
2133 from *= flag; in mb_get_substr()
2134 len *= flag; in mb_get_substr()
2420 …unsigned int char_len = string.encoding->flag & (MBFL_ENCTYPE_SBCS | MBFL_ENCTYPE_WCS2 | MBFL_ENCT… in PHP_FUNCTION()
5973 } else if (enc->flag & MBFL_ENCTYPE_WCS2) { in php_mb_mbchar_bytes()
5975 } else if (enc->flag & MBFL_ENCTYPE_WCS4) { in php_mb_mbchar_bytes()
/php-src/ext/fileinfo/libmagic/
H A Dfile.h205 uint8_t flag; member
/php-src/win32/build/
H A Dconfutils.js1779 function REMOVE_TARGET(dllname, flag) argument
1785 if (configure_subst.Exists(flag)) {
1786 var targets = configure_subst.Item(flag);
1789 configure_subst.Remove(flag);
1793 configure_subst.Add(flag, targets);
/php-src/Zend/
H A Dzend_hash.h121 …ZEND_FASTCALL zend_hash_add_or_update(HashTable *ht, zend_string *key, zval *pData, uint32_t flag);
127 …end_hash_str_add_or_update(HashTable *ht, const char *key, size_t len, zval *pData, uint32_t flag);
133 …ND_FASTCALL zend_hash_index_add_or_update(HashTable *ht, zend_ulong h, zval *pData, uint32_t flag);
302 …PI zval* ZEND_FASTCALL zend_hash_minmax(const HashTable *ht, compare_func_t compar, uint32_t flag);
/php-src/ext/soap/
H A Dphp_encoding.c2036 int i = 0, flag = 0; in calc_dimension_12() local
2046 if (flag == 0) { in calc_dimension_12()
2048 flag = 1; in calc_dimension_12()
2053 flag = 0; in calc_dimension_12()
2063 int i = -1, flag = 0; in get_position_12() local
2076 if (flag == 0) { in get_position_12()
2078 flag = 1; in get_position_12()
2084 flag = 0; in get_position_12()

Completed in 109 milliseconds

123456789