Searched refs:tr (Results 1 - 12 of 12) sorted by relevance
| /PHP_TRUNK/build/ |
| H A D | shtool | 450 echo "$1" | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' 455 echo "$1" | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 1644 tr '^' '\012'`
|
| /PHP_TRUNK/ext/ |
| H A D | ext_skel | 37 EXTNAME=`echo $extname | tr "[:lower:]" "[:upper:]"`
|
| /PHP_TRUNK/ext/pdo_firebird/tests/ |
| H A D | testdb.inc | 17 $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_TRUNK/ |
| H A D | ltmain.sh | 99 case `echo X|tr X '\101'` in 101 # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr 102 SP2NL='tr \040 \012' 103 NL2SP='tr \015\012 \040\040' 106 SP2NL='tr \100 \n' 107 NL2SP='tr \r\n \100\100'
|
| H A D | config.guess | 274 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` 777 FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` 778 FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` 783 FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` 784 FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` 866 echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
|
| /PHP_TRUNK/ext/interbase/tests/ |
| H A D | interbase.inc | 20 $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_TRUNK/ext/interbase/ |
| H A D | ibase_query.c | 882 isc_tr_handle tr; local 889 tr = NULL; 891 if (isc_dsql_execute_immediate(IB_STATUS, &ib_query->link->handle, &tr, 0, 898 trans->handle = tr;
|
| H A D | interbase.c | 1290 ibase_trans *tr = ib_link->tr_list->trans; local 1292 if (tr == NULL) { 1293 tr = (ibase_trans *) emalloc(sizeof(ibase_trans)); 1294 tr->handle = NULL; 1295 tr->link_cnt = 1; 1296 tr->affected_rows = 0; 1297 tr->db_link[0] = ib_link; 1298 ib_link->tr_list->trans = tr; 1300 if (tr->handle == NULL) { 1301 if (isc_start_transaction(IB_STATUS, &tr [all...] |
| /PHP_TRUNK/ext/pdo_firebird/ |
| H A D | firebird_driver.c | 106 if (isc_commit_transaction(H->isc_status, &H->tr)) { 110 if (isc_rollback_transaction(H->isc_status, &H->tr)) { 243 if (isc_dsql_execute2(H->isc_status, &H->tr, &stmt, PDO_FB_SQLDA_VERSION, &in_sqlda, &out_sqlda)) { 268 if (dbh->auto_commit && isc_commit_retaining(H->isc_status, &H->tr)) { 361 if (isc_start_transaction(H->isc_status, &H->tr, 1, &H->db, (unsigned short)(ptpb-tpb), tpb)) { 374 if (isc_commit_transaction(H->isc_status, &H->tr)) { 387 if (isc_rollback_transaction(H->isc_status, &H->tr)) { 462 if (isc_dsql_prepare(H->isc_status, &H->tr, s, 0, new_sql, PDO_FB_DIALECT, out_sqlda)) {
|
| H A D | firebird_statement.c | 105 if (isc_dsql_execute(H->isc_status, &H->tr, &S->stmt, PDO_FB_SQLDA_VERSION, S->in_sqlda)) { 139 if (stmt->dbh->auto_commit && isc_commit_retaining(H->isc_status, &H->tr)) { 234 if (isc_open_blob(H->isc_status, &H->db, &H->tr, &blobh, blob_id)) { 422 if (isc_create_blob(H->isc_status, &H->db, &H->tr, &h, blob_id)) {
|
| H A D | php_pdo_firebird_int.h | 75 isc_tr_handle tr; member in struct:__anon150
|
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gd_crop.c | 296 const int tr = gdImageGetPixel(im, gdImageSX(im) - 1, 0); local 300 if (tr == bl && tr == br) { 301 *color = tr; 306 } else if (tl == tr && tl == br) { 309 } else if (tl == tr && tl == bl) { 312 } else if (tl == tr || tl == bl || tl == br) { 315 } else if (tr == bl) { 316 *color = tr; 324 r = (int)(0.5f + (gdImageRed(im, tl) + gdImageRed(im, tr) [all...] |
Completed in 44 milliseconds