Home
last modified time | relevance | path

Searched refs:f (Results 476 – 500 of 903) sorted by relevance

1...<<11121314151617181920>>...37

/PHP-5.5/ext/standard/tests/strings/
H A Dhtmlentities20.phpt128 0007F: 7f 7f
184 0007F: 7f 7f
H A Dvfprintf_basic.phpt39 writeAndDump( $fp, "Testing %b %d %f %s %x %X", array( 9, 6, 2.5502, "foobar", 15, 65 ) );
69 string(35) "Testing 1001 6 2.550200 foobar f 41"
/PHP-5.5/ext/gd/libgd/
H A Dgd.c411 f = h - i;
413 f = 1 - f; /* if i is odd */
1559 if ((c < f->offset) || (c >= (f->offset + f->nchars))) { in gdImageChar()
1562 fline = (c - f->offset) * f->h * f->w; in gdImageChar()
1565 if (f->data[fline + cy * f->w + cx]) { in gdImageChar()
1585 if ((c < f->offset) || (c >= (f->offset + f->nchars))) { in gdImageCharUp()
1588 fline = (c - f->offset) * f->h * f->w; in gdImageCharUp()
1591 if (f->data[fline + cy * f->w + cx]) { in gdImageCharUp()
1608 x += f->w; in gdImageString()
1619 y -= f->w; in gdImageStringUp()
[all …]
/PHP-5.5/Zend/tests/
H A Dbug60138.phpt5 $tree = array(array("f"));
H A Dbug49866.phpt7 $b = "f";
H A Dbug31098.phpt29 $simpleString["wrong"] = "f";
30 echo $simpleString["0"] === "f"?"ok\n":"bug\n";
H A Dconst_dereference_002.phpt18 string(1) "f"
/PHP-5.5/ext/zip/lib/
H A Dzip_source_free.c52 (void)src->cb.f(src->ud, NULL, 0, ZIP_SOURCE_FREE); in zip_source_free()
/PHP-5.5/ext/standard/tests/array/
H A Drsort_variation9.phpt33 array('a' => 1,'b' => array('e' => 2,'f' => 3),'c' => array('g' => 4),'d' => 5),
226 ["f"]=>
246 ["f"]=>
/PHP-5.5/win32/build/
H A Dconfig.w32.phpize.in297 var path, i, f;
302 f = FSO.GetAbsolutePathName(path[i]);
303 if (FSO.FolderExists(f)) {
304 ADD_FLAG("CFLAGS", '/I "' + f + '" ');
311 f = FSO.GetAbsolutePathName(path[i]);
312 if (FSO.FolderExists(f)) {
313 if (VCVERS <= 1200 && f.indexOf(" ") >= 0) {
314 ADD_FLAG("LDFLAGS", '/libpath:"\\"' + f + '\\"" ');
316 ADD_FLAG("LDFLAGS", '/libpath:"' + f + '" ');
/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dwrite25.phar8 6���������������������test.txt������H������E�������<?php __HALT_COMPILER();�?f}oe/y�NLY�,�*…
H A Dfrontcontroller16.phar12 �P���f*�|��ݕP-7�V�J���GBMB
/PHP-5.5/ext/standard/tests/general_functions/
H A D008.phpt7 // this checks f,g,G conversion for snprintf/spprintf
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dgreplist1 This is a file of patterns for testing the -f option. Don't include any blank
/PHP-5.5/ext/soap/tests/
H A Dany.phpt11 function SOAPComplexType($s, $i, $f) {
14 $this->varFloat = $f;
/PHP-5.5/ext/soap/tests/interop/Round4/GroupI/
H A Dr4_groupI_xsd_024w.phpt11 function SOAPComplexTypeComplexType($s, $i, $f, $c) {
14 $this->varFloat = $f;
/PHP-5.5/ext/xml/
H A Dconfig.m440 …if test -f "$i/$PHP_LIBDIR/libexpat.a" || test -f "$i/$PHP_LIBDIR/libexpat.$SHLIB_SUFFIX_NAME"; th…
/PHP-5.5/ext/zip/
H A Dconfig.m419 if test -f "$PHP_ZLIB_DIR/include/zlib/zlib.h"; then
22 elif test -f "$PHP_ZLIB_DIR/include/zlib.h"; then
30 if test -f "$i/include/zlib/zlib.h"; then
33 elif test -f "$i/include/zlib.h"; then
/PHP-5.5/ext/json/tests/
H A Dpass001.phpt35 \"controls\": \"\\b\\f\\n\\r\\t\",
59 …\"\\/\\\\\\\"\\uCAFE\\uBABE\\uAB98\\uFCDE\\ubcda\\uef4A\\b\\f\\n\\r\\t`1~!@#$%^&*()_+-=[]{}|;:',./…
118 "controls": "\b\f\n\r\t",
142 "\/\\\"\uCAFE\uBABE\uAB98\uFCDE\ubcda\uef4A\b\f\n\r\t`1~!@#$%^&*()_+-=[]{}|;:',./<>?"
432f\n\r\t","slash":"\/ & \/","alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ"…
434f\n\r\t","slash":"\/ & \/","alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ"…
/PHP-5.5/ext/reflection/tests/
H A Dbug26695.phpt10 function demo(foo $f) {
/PHP-5.5/tests/lang/
H A Dtype_hints_003.phpt8 function f(P $p = 42) {
/PHP-5.5/Zend/
H A Dzend_ini.c150 const Bucket *f; in ini_key_compare() local
153 f = *((const Bucket **) a); in ini_key_compare()
156 if (f->nKeyLength == 0 && s->nKeyLength == 0) { /* both numeric */ in ini_key_compare()
157 return ZEND_NORMALIZE_BOOL(f->nKeyLength - s->nKeyLength); in ini_key_compare()
158 } else if (f->nKeyLength == 0) { /* f is numeric, s is not */ in ini_key_compare()
163 return zend_binary_strcasecmp(f->arKey, f->nKeyLength, s->arKey, s->nKeyLength); in ini_key_compare()
/PHP-5.5/ext/openssl/tests/
H A Dbug54060.phpt9 r7-89437 r892374 r894372 r894 7289r7 f frwerfh i iurf iuryw uyrfouiwy ruy
/PHP-5.5/ext/phar/tests/files/
H A Dfrontcontroller16.phar12 �P���f*�|��ݕP-7�V�J���GBMB
/PHP-5.5/ext/standard/tests/file/
H A Drealpath_cache.phpt22 %s(%f)

Completed in 38 milliseconds

1...<<11121314151617181920>>...37