Home
last modified time | relevance | path

Searched refs:level (Results 26 – 50 of 171) sorted by relevance

1234567

/PHP-5.3/ext/libxml/tests/
H A D002.phpt38 switch ($error->level) {
73 ["level"]=>
/PHP-5.3/ext/intl/doc/
H A DTutorial.txt48 Performance optimizations have been made for ICU collation with the default level
50 Following is a list of the names for each level and an example usage:
73 4. Quaternary Level: When punctuation is ignored (see Ignoring Punctuations ) at level
74 13, an additional level can be used to distinguish words with and without punctuation
77 quaternary level should only be used if ignoring punctuation is required or when
80 5. Identical Level: When all other levels are equal, the identical level is used as a
82 compared at this level, just in case there is no difference at levels 14
83 . For example, Hebrew cantillation marks are only distinguished at this level. This level should be
85 extremely rare occurrence. Using this level substantially decreases the performance for
87 key length). It is also known as level 5 strength.
[all …]
/PHP-5.3/ext/standard/tests/strings/
H A D005.phpt2 highlight_string(), output buffer and error level
/PHP-5.3/tests/basic/
H A Dbug61000.phpt2 Bug #61000 (Exceeding max nesting level doesn't delete numerical vars)
H A D027.phpt34 string(115) "Unknown: Input variable nesting level exceeded 10. To increase the limit change max_in…
/PHP-5.3/ext/simplexml/tests/
H A Dbug46048.phpt2 Bug #46048 (SimpleXML top-level @attributes not part of iterator)
/PHP-5.3/ext/zlib/
H A Dzlib_win32_howto.txt10 php_build is a directory at the same level as php5.
/PHP-5.3/ext/xml/tests/
H A Dbug26528.phpt23 ["level"]=>
/PHP-5.3/ext/standard/tests/general_functions/
H A Dvar_export_error3.phpt18 Fatal error: Nesting level too deep - recursive dependency? in %s on line 9
H A Dvar_export_error2.phpt18 Fatal error: Nesting level too deep - recursive dependency? in %s on line 9
/PHP-5.3/TSRM/
H A DTSRM.h132 TSRM_API int tsrm_error(int level, const char *format, ...);
133 TSRM_API void tsrm_error_set(int level, char *debug_filename);
/PHP-5.3/ext/spl/tests/
H A Drecursiveiteratoriterator_getsubiterator_variation_003.phpt2 SPL: RecursiveIteratorIterator::getSubIterator() with explicit level parameter
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_debug.c113 if (level == -1) { in MYSQLND_METHOD()
114 level = zend_stack_count(&self->call_stack); in MYSQLND_METHOD()
211 if (level == -1) { in MYSQLND_METHOD()
1607 uint * level; in mysqlnd_build_trace_string() local
1609 level = va_arg(args, uint *); in mysqlnd_build_trace_string()
1614 if (!*level) { in mysqlnd_build_trace_string()
1617 --*level; in mysqlnd_build_trace_string()
1784 uint * level; in mysqlnd_build_trace_string() local
1786 level = va_arg(args, uint *); in mysqlnd_build_trace_string()
1791 if (!*level) { in mysqlnd_build_trace_string()
[all …]
/PHP-5.3/ext/fileinfo/libmagic/
H A Dfuncs.c410 file_check_mem(struct magic_set *ms, unsigned int level) in file_check_mem() argument
414 if (level >= ms->c.len) { in file_check_mem()
418 ms->c.li[level].got_match = 0; in file_check_mem()
420 ms->c.li[level].last_match = 0; in file_check_mem()
421 ms->c.li[level].last_cond = COND_NONE; in file_check_mem()
/PHP-5.3/ext/gd/libgd/
H A Dgdft.c614 int level; local
619 level = (bitmap.buffer[pc] * gdAlphaMax / (bitmap.num_grays - 1));
622level = ((bitmap.buffer[(col>>3)+pcr]) & (1<<(~col&0x07))) ? gdAlphaTransparent : gdAlphaOpaque;
632 level = level * (gdAlphaMax - gdTrueColorGetAlpha(fg)) / gdAlphaMax;
634 level = gdAlphaMax - level;
644 if (level < (gdAlphaMax / 2)) {
649 *tpixel = gdAlphaBlend(*tpixel, (level << 24) + (fg & 0xFFFFFF));
651 *tpixel = (level << 24) + (fg & 0xFFFFFF);
/PHP-5.3/tests/classes/
H A Dproperty_override_public_private.phpt33 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_public_protected.phpt33 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_protectedStatic_privateStatic.phpt31 Fatal error: Access level to B::$p must be protected (as in class A) or weaker in %s on line 18
H A Dproperty_override_publicStatic_privateStatic.phpt31 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_publicStatic_protectedStatic.phpt31 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_protected_private.phpt33 Fatal error: Access level to B::$p must be protected (as in class A) or weaker in %s on line 18
/PHP-5.3/Zend/tests/
H A Dmagic_methods_008.phpt19 Fatal error: Access level to a::__set() must be public (as in class b) in %s on line %d
/PHP-5.3/ext/xml/
H A Dxml.c881 parser->level++; in _xml_startElementHandler()
908 if (parser->level <= XML_MAXLEVEL) { in _xml_startElementHandler()
922 add_assoc_long(tag,"level",parser->level); in _xml_startElementHandler()
948 } else if (parser->level == (XML_MAXLEVEL + 1)) { in _xml_startElementHandler()
993 add_assoc_long(tag,"level",parser->level); in _xml_endElementHandler()
1004 efree(parser->ltags[parser->level-1]); in _xml_endElementHandler()
1007 parser->level--; in _xml_endElementHandler()
1087 if (parser->level <= XML_MAXLEVEL) { in _xml_characterDataHandler()
1097 add_assoc_long(tag,"level",parser->level); in _xml_characterDataHandler()
1100 } else if (parser->level == (XML_MAXLEVEL + 1)) { in _xml_characterDataHandler()
[all …]
/PHP-5.3/ext/zlib/tests/
H A Dgzencode_variation1.phpt12 /* Prototype : string gzencode ( string $data [, int $level [, int $encoding_mode ]] )
H A D002.phpt13 /* with explicit compression level, length */

Completed in 71 milliseconds

1234567