Home
last modified time | relevance | path

Searched refs:tr (Results 1 – 25 of 29) sorted by relevance

12

/PHP-5.3/ext/phar/tests/
H A Dphpinfo_004.phpt29 <tr class="h"><th>Phar: PHP Archive support</th><th>enabled</th></tr>
30 <tr><td class="e">Phar EXT version </td><td class="v">%s </td></tr>
31 <tr><td class="e">Phar API version </td><td class="v">1.1.1 </td></tr>
32 <tr><td class="e">SVN revision </td><td class="v">%sRevision: %s $ </td></tr>
36 <tr><td class="e">gzip compression </td><td class="v">enabled </td></tr>
37 <tr><td class="e">bzip2 compression </td><td class="v">enabled </td></tr>
41 <tr class="v"><td>
53 <tr class="h"><th>Phar: PHP Archive support</th><th>enabled</th></tr>
54 <tr><td class="e">Phar EXT version </td><td class="v">%s </td></tr>
55 <tr><td class="e">Phar API version </td><td class="v">1.1.1 </td></tr>
[all …]
/PHP-5.3/ext/standard/tests/strings/
H A Dbug21453.phpt7 <tr><td>first cell before < first cell after</td></tr>
8 <tr><td>second cell before < second cell after</td></tr>
H A Dsubstr_replace.phpt701 string(2) "tr"
718 string(2) "tr"
735 string(2) "tr"
/PHP-5.3/ext/pdo_firebird/tests/
H A Dtestdb.inc17 $tr = ibase_trans($test_db);
18 ibase_query($tr,"create table test1 (i integer, c varchar(100))");
19 ibase_commit_ret($tr);
20 ibase_query($tr,"insert into test1(i, c) values(1, 'test table not created with isql')");
21 ibase_commit($tr);
/PHP-5.3/ext/exif/
H A Dtest.txt147 return "<tr>$Name<td>$Value&nbsp;</td></tr>\n";
237 <tr><td>ImageWidth</td><td><?=@exif_tagname(0x0100)?></td><td><?=error_msg()?></td></tr>
238 <tr><td>JPEGProc</td><td><?=@exif_tagname(0x0200)?></td><td><?=error_msg()?></td></tr>
239 <tr><td>SceneType</td><td><?=@exif_tagname(0xA301)?></td><td><?=error_msg()?></td></tr>
240 <tr><td>false</td><td><?=@exif_tagname(0x0000)===false?'false':'value'?></td><td><?=error_msg()?></…
243 echo "<tr><td>function exif_tagname is not supported</td></tr>\n";
340 $tab2 .= "<tr><td rowspan='$len' valign='top'>$num</td></tr>\n";
341 $tab2 .= "<tr><th colspan='2'>$file</th></tr>\n";
343 $tab2 .= "<tr><th>GetImageSize</th><td>$res_getimagesize</td></tr>\n";
346 $tab2 .= "<tr><th>exif_thumbnail</th><td>$res_exif_thumbnail</td></tr>\n";
[all …]
/PHP-5.3/ext/interbase/tests/
H A Dinterbase.inc20 $tr = ibase_trans($test_db);
21 ibase_query($tr,"create table test1 (i integer, c varchar(100))");
22 ibase_commit_ret($tr);
23 ibase_query($tr,"insert into test1(i, c) values(1, 'test table not created with isql')");
24 ibase_commit($tr);
/PHP-5.3/ext/dom/tests/
H A Dbug38474.phpt12 $xml = '<node xmlns:pre="http://foo.com/tr/pre"
13 xmlns:post="http://foo.com/tr/post"
/PHP-5.3/ext/pdo_firebird/
H A Dfirebird_driver.c106 if (isc_commit_transaction(H->isc_status, &H->tr)) { in firebird_handle_closer()
110 if (isc_rollback_transaction(H->isc_status, &H->tr)) { in firebird_handle_closer()
243 if (isc_dsql_execute2(H->isc_status, &H->tr, &stmt, PDO_FB_SQLDA_VERSION, &in_sqlda, &out_sqlda)) { in firebird_handle_doer()
268 if (dbh->auto_commit && isc_commit_retaining(H->isc_status, &H->tr)) { in firebird_handle_doer()
361 if (isc_start_transaction(H->isc_status, &H->tr, 1, &H->db, (unsigned short)(ptpb-tpb), tpb)) { in firebird_handle_begin()
374 if (isc_commit_transaction(H->isc_status, &H->tr)) { in firebird_handle_commit()
387 if (isc_rollback_transaction(H->isc_status, &H->tr)) { in firebird_handle_rollback()
462 if (isc_dsql_prepare(H->isc_status, &H->tr, s, 0, new_sql, PDO_FB_DIALECT, out_sqlda)) { in firebird_alloc_prepare_stmt()
H A Dphp_pdo_firebird_int.h75 isc_tr_handle tr; member
H A Dfirebird_statement.c105 if (isc_dsql_execute(H->isc_status, &H->tr, &S->stmt, PDO_FB_SQLDA_VERSION, S->in_sqlda)) { in firebird_stmt_execute()
139 if (stmt->dbh->auto_commit && isc_commit_retaining(H->isc_status, &H->tr)) { in firebird_stmt_execute()
234 if (isc_open_blob(H->isc_status, &H->db, &H->tr, &blobh, blob_id)) { in firebird_fetch_blob()
422 if (isc_create_blob(H->isc_status, &H->db, &H->tr, &h, blob_id)) { in firebird_bind_blob()
/PHP-5.3/ext/standard/tests/file/
H A Dbug26615.phpt10 …exec($_ENV['TEST_PHP_EXECUTABLE'].' -n -r \'for($i=1;$i<=5000;$i++) print "$i\n";\' | tr \'\n\' \'…
/PHP-5.3/ext/interbase/
H A Dinterbase.c1290 ibase_trans *tr = ib_link->tr_list->trans; in _php_ibase_def_trans() local
1292 if (tr == NULL) { in _php_ibase_def_trans()
1293 tr = (ibase_trans *) emalloc(sizeof(ibase_trans)); in _php_ibase_def_trans()
1294 tr->handle = NULL; in _php_ibase_def_trans()
1295 tr->link_cnt = 1; in _php_ibase_def_trans()
1296 tr->affected_rows = 0; in _php_ibase_def_trans()
1297 tr->db_link[0] = ib_link; in _php_ibase_def_trans()
1298 ib_link->tr_list->trans = tr; in _php_ibase_def_trans()
1300 if (tr->handle == NULL) { in _php_ibase_def_trans()
1301 if (isc_start_transaction(IB_STATUS, &tr->handle, 1, &ib_link->handle, 0, NULL)) { in _php_ibase_def_trans()
[all …]
H A Dibase_query.c882 isc_tr_handle tr; in _php_ibase_exec() local
889 tr = NULL; in _php_ibase_exec()
891 if (isc_dsql_execute_immediate(IB_STATUS, &ib_query->link->handle, &tr, 0, in _php_ibase_exec()
898 trans->handle = tr; in _php_ibase_exec()
/PHP-5.3/tests/strings/
H A D001.phpt154 $tr = strtr($str, "def", "456");
155 if ($tr == "t5st abc456gh") {
/PHP-5.3/
H A Dconfig.guess271 …echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQ…
752 FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
753 …FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\…
758 …FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\…
759 …FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' …
833 …echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo…
H A Dacinclude.m41051 …php_def_have_what=HAVE_[]`echo $1 | tr 'abcdefghijklmnopqrstuvwxyz-' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'…
2741 …is_arg_set=php_[]`echo [$]arg_name | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ-' 'abcdefghijklmnopqrstuvwxyz_…
H A Dltmain.sh99 case `echo X|tr X '\101'` in
/PHP-5.3/ext/
H A Dext_skel37 EXTNAME=`echo $extname | tr "[:lower:]" "[:upper:]"`
/PHP-5.3/Zend/
H A Dacinclude.m415 …`bison --version 2> /dev/null | grep 'GNU Bison' | cut -d ' ' -f 4 | $SED -e 's/\./ /' | tr -d a-z`
/PHP-5.3/build/
H A Dshtool450 echo "$1" | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'
455 echo "$1" | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
1644 tr '^' '\012'`
H A Dlibtool.m41710 … | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
2258 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
4603 opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp
/PHP-5.3/sapi/thttpd/
H A Dthttpd_patch1200 tr application/x-troff
/PHP-5.3/ext/pcre/pcrelib/testdata/
H A Dtestinput22867 /<tr([\w\W\s\d][^<>]{0,})><TD([\w\W\s\d][^<>]{0,})>([\d]{0,}\.)(.*)((<BR>([\w\W\s\d][^<>]{0,})|[\s]…
H A Dtestinput82326 /<tr([\w\W\s\d][^<>]{0,})><TD([\w\W\s\d][^<>]{0,})>([\d]{0,}\.)(.*)((<BR>([\w\W\s\d][^<>]{0,})|[\s]…
H A Dtestinput11896 /<tr([\w\W\s\d][^<>]{0,})><TD([\w\W\s\d][^<>]{0,})>([\d]{0,}\.)(.*)((<BR>([\w\W\s\d][^<>]{0,})|[\s]…

Completed in 107 milliseconds

12