/PHP-5.3/ext/mbstring/oniguruma/ |
H A D | st.c | 73 #define EQUAL(table,x,y) ((x)==(y) || (*table->type->compare)((x),(y)) == 0) argument 75 #define do_hash(key,table) (unsigned int)(*(table)->type->hash)((key)) argument 76 #define do_hash_bin(key,table) (do_hash(key, table)%(table)->num_bins) argument 216 st_free_table(table) in st_free_table() argument 217 st_table *table; in st_free_table() 231 free(table); 257 st_table *table; in st_lookup() 280 rehash(table);\ 318 st_table *table; in st_add_direct() 330 rehash(table) in rehash() argument [all …]
|
/PHP-5.3/ext/standard/tests/strings/ |
H A D | get_html_translation_table_basic3.phpt | 14 // $table as HTML_SEPCIALCHARS and different quote style 15 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --\n"; 16 $table = HTML_SPECIALCHARS; 18 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") ); 20 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --\n"; 22 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") ); 24 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_NOQUOTES --\n"; 26 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") ); 32 -- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT -- 43 -- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES -- [all …]
|
H A D | get_html_translation_table_basic4.phpt | 5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse… 6 * Description: Returns the internal translation table used by htmlspecialchars and htmlentities 13 echo "-- with table = HTML_ENTITIES --\n"; 14 $table = HTML_ENTITIES; 15 var_dump( get_html_translation_table($table, ENT_COMPAT, "WINDOWS-1252") ); 17 echo "-- with table = HTML_SPECIALCHARS --\n"; 18 $table = HTML_SPECIALCHARS; 19 var_dump( get_html_translation_table($table, ENT_COMPAT, "WINDOWS-1252") ); 25 -- with table = HTML_ENTITIES -- 278 -- with table = HTML_SPECIALCHARS --
|
H A D | get_html_translation_table_error.phpt | 5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse… 6 * Description: Returns the internal translation table used by htmlspecialchars and htmlentities 14 $table = HTML_ENTITIES; 18 var_dump( get_html_translation_table($table, $quote_style, "UTF-8", $extra_arg) );
|
H A D | get_html_translation_table_basic1.phpt | 5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse… 6 * Description: Returns the internal translation table used by htmlspecialchars and htmlentities 10 /* Test get_html_translation_table() when table is specified as HTML_ENTITIES */ 15 echo "-- with table = HTML_ENTITIES --\n"; 16 $table = HTML_ENTITIES; 17 var_dump( get_html_translation_table($table, ENT_COMPAT, "UTF-8") ); 19 echo "-- with table = HTML_SPECIALCHARS --\n"; 20 $table = HTML_SPECIALCHARS; 21 var_dump( get_html_translation_table($table, ENT_COMPAT, "UTF-8") ); 27 -- with table = HTML_ENTITIES -- [all …]
|
/PHP-5.3/ext/oci8/tests/ |
H A D | statement_type.phpt | 11 "SELECT * FROM table", 12 "DELETE FROM table WHERE id = 1", 13 "INSERT INTO table VALUES(1)", 14 "UPDATE table SET id = 1", 15 "DROP TABLE table", 17 "CREATE TABLE table (id NUMBER)", 18 "ALTER TABLE table ADD (col1 NUMBER)",
|
H A D | statement_type_old.phpt | 18 "SELECT * FROM table", 19 "DELETE FROM table WHERE id = 1", 20 "INSERT INTO table VALUES(1)", 21 "UPDATE table SET id = 1", 22 "DROP TABLE table", 24 "CREATE TABLE table (id NUMBER)", 25 "ALTER TABLE table ADD (col1 NUMBER)",
|
H A D | dupcolnames.phpt | 13 "drop table dupcolnames_tab1", 14 "drop table dupcolnames_tab2", 16 "create table dupcolnames_tab1 (c1 number, dupnamecol varchar2(20))", 17 "create table dupcolnames_tab2 (c2 number, dupnamecol varchar2(20))", 53 "drop table dupcolnames_tab1", 54 "drop table dupcolnames_tab2",
|
H A D | define.phpt | 13 "drop table define_tab", 14 "create table define_tab (string varchar(10))", 38 "drop table define_tab"
|
H A D | define_old.phpt | 13 "drop table define_old_tab", 14 "create table define_old_tab (string varchar(10))", 38 "drop table define_old_tab"
|
H A D | bug26133.phpt | 13 "drop table bug26133_tab", 14 "create table bug26133_tab (id number, value number)", 35 "drop table bug26133_tab"
|
H A D | drcp_scope5.phpt | 14 // function2, allowing the table to be dropped cleanly at the end. 16 // The test opens a connection within function1 and updates a table 18 // 2, and the table queried. When function1 ends, the connection from 20 // function2. Also the table can't be dropped because an uncommitted 23 // Create the table
|
H A D | default_prefetch.phpt | 15 "drop table default_prefetch_tab", 16 "create table default_prefetch_tab (id number, value number)", 43 "drop table default_prefetch_tab"
|
H A D | default_prefetch0.phpt | 15 "drop table default_prefetch_tab", 16 "create table default_prefetch_tab (id number, value number)", 43 "drop table default_prefetch_tab"
|
/PHP-5.3/ext/pdo_sqlite/tests/ |
H A D | bug_42589.phpt | 2 PDO SQLite Feature Request #42589 (getColumnMeta() should also return table name) 18 var_dump(!empty($meta1['table']) && $meta1['table'] == 'test'); 19 var_dump(!empty($meta2['table']) && $meta2['table'] == 'test');
|
/PHP-5.3/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_init_command.phpt | 20 $table = sprintf("test_%s", md5(mt_rand(0, PHP_INT_MAX))); 22 $db->exec(sprintf('DROP TABLE IF EXISTS %s', $table)); 24 $create = sprintf('CREATE TABLE %s(id INT)', $table); 31 $db->exec(sprintf('INSERT INTO %s(id) VALUES (1)', $table)); 32 $stmt = $db->query(sprintf('SELECT id FROM %s', $table)); 35 $db->exec(sprintf('DROP TABLE IF EXISTS %s', $table));
|
/PHP-5.3/ext/sqlite3/tests/ |
H A D | sqlite3_20_error.phpt | 10 echo "SELECTING from invalid table\n"; 21 SELECTING from invalid table 23 Warning: SQLite3::query(): Unable to prepare statement: 1, no such table: non_existent_table in %s … 25 Error Msg: no such table: non_existent_table
|
/PHP-5.3/ext/pgsql/tests/ |
H A D | config.inc | 2 // These vars are used to connect db and create test table. 6 $table_name = "php_pgsql_test"; // test table that should be exist 9 $table_def = "CREATE TABLE php_pgsql_test (num int, str text, bin bytea);"; // Test table
|
/PHP-5.3/ext/mysql/tests/ |
H A D | mysql_list_tables.phpt | 27 require_once('table.inc'); 53 printf("[008] Got different table lists for default link and specified link\n"); 60 foreach ($tlist as $k => $table) 61 $list1[] = $table; 64 foreach ($tlist as $k => $table) 65 $list2[] = $table;
|
/PHP-5.3/ext/sybase_ct/tests/ |
H A D | bug26407.phpt | 16 // Create temporary table 17 $table= 'phpt_bug26407'; 18 var_dump(sybase_query('create table #'.$table.' ( the_big_answer int )', $db)); 34 update #'.$table.' set the_big_answer=42
|
H A D | test_long.phpt | 20 // Create table and insert some values 21 var_dump(sybase_query('create table test_long (value numeric(20, 0))')); 32 // Drop table 33 var_dump(sybase_query('drop table test_long'));
|
/PHP-5.3/ext/interbase/tests/ |
H A D | bug45373.phpt | 16 $r = ibase_execute($q, 1, 'test table not created with isql'); 20 $r = ibase_execute($q, 1, 'test table not created with isql', 1); 33 string(32) "test table not created with isql" 41 string(32) "test table not created with isql"
|
/PHP-5.3/ext/phar/tests/ |
H A D | phpinfo_004.phpt | 28 <table border="0" cellpadding="3" width="600"> 39 </table><br /> 40 <table border="0" cellpadding="3" width="600"> 43 </table><br /> 44 <table border="0" cellpadding="3" width="600"> 49 </table><br /> 52 <table border="0" cellpadding="3" width="600"> 63 </table><br /> 64 <table border="0" cellpadding="3" width="600"> 67 </table><br /> [all …]
|
/PHP-5.3/ext/pgsql/ |
H A D | mysql_users.php | 61 function pg_list_fields($db, $table) argument 75 c.relname = '".$table."'
|
/PHP-5.3/ext/gd/libgd/ |
H A D | gd_gif_in.c | 86 int table[2][(1<< MAX_LWZ_BITS)]; member 438 sd->table[0][i] = 0; in LWZReadByte_() 439 sd->table[1][i] = i; in LWZReadByte_() 442 sd->table[0][i] = sd->table[1][0] = 0; in LWZReadByte_() 462 sd->table[0][i] = 0; in LWZReadByte_() 463 sd->table[1][i] = i; in LWZReadByte_() 466 sd->table[0][i] = sd->table[1][i] = 0; in LWZReadByte_() 505 *sd->sp++ = sd->table[1][code]; in LWZReadByte_() 506 if (code == sd->table[0][code]) { in LWZReadByte_() 509 code = sd->table[0][code]; in LWZReadByte_() [all …]
|