/PHP-5.3/ext/intl/resourcebundle/ |
H A D | resourcebundle_class.c | 45 if (rb->me) { in ResourceBundle_object_destroy() 46 ures_close( rb->me ); in ResourceBundle_object_destroy() 48 if (rb->child) { in ResourceBundle_object_destroy() 49 ures_close( rb->child ); in ResourceBundle_object_destroy() 68 rb->me = NULL; in ResourceBundle_object_create() 69 rb->child = NULL; in ResourceBundle_object_create() 106 rb->me = ures_open(bundlename, locale, &INTL_DATA_ERROR_CODE(rb)); in resourcebundle_ctor() 108 rb->me = ures_openDirect(bundlename, locale, &INTL_DATA_ERROR_CODE(rb)); in resourcebundle_ctor() 169 rb->child = ures_getByIndex( rb->me, meindex, rb->child, &INTL_DATA_ERROR_CODE(rb) ); in resourcebundle_array_fetch() 173 rb->child = ures_getByKey(rb->me, mekey, rb->child, &INTL_DATA_ERROR_CODE(rb) ); in resourcebundle_array_fetch() [all …]
|
H A D | resourcebundle_class.h | 35 #define RESOURCEBUNDLE_METHOD_INIT_VARS INTL_METHOD_INIT_VARS(ResourceBundle, rb) 36 #define RESOURCEBUNDLE_METHOD_FETCH_OBJECT_NO_CHECK INTL_METHOD_FETCH_OBJECT(ResourceBundle, rb) 38 INTL_METHOD_FETCH_OBJECT(ResourceBundle, rb); \ 39 if (RESOURCEBUNDLE_OBJECT(rb) == NULL) { \ 40 intl_errors_set(&rb->error, U_ILLEGAL_ARGUMENT_ERROR, \ 46 #define RESOURCEBUNDLE_OBJECT(rb) (rb)->me argument
|
H A D | resourcebundle_iterator.c | 35 ResourceBundle_object *rb = iterator->subject; in resourcebundle_iterator_read() local 37 rb->child = ures_getByIndex( rb->me, iterator->i, rb->child, &icuerror ); in resourcebundle_iterator_read() 42 iterator->currentkey = estrdup( ures_getKey( rb->child ) ); in resourcebundle_iterator_read() 45 resourcebundle_extract_value( iterator->current, rb TSRMLS_CC ); in resourcebundle_iterator_read() 158 …ResourceBundle_object *rb = (ResourceBundle_object *) zend_object_store_get_object( object TSRML… in resourcebundle_get_iterator() local 169 iterator->subject = rb; in resourcebundle_get_iterator() 174 iterator->is_table = (ures_getType( rb->me ) == URES_TABLE); in resourcebundle_get_iterator() 175 iterator->length = ures_getSize( rb->me ); in resourcebundle_get_iterator()
|
/PHP-5.3/ext/standard/tests/file/ |
H A D | 007_variation17.phpt | 2 Test fopen and fclose() functions - usage variations - "rb" mode 17 /* Test fopen() and fclose(): Opening the file in "rb" mode, 29 echo "*** Test fopen() & fclose() functions: with 'rb' mode ***\n"; 30 $file_handle = fopen($file, "rb"); //opening the file in "rb" mode 44 *** Test fopen() & fclose() functions: with 'rb' mode ***
|
H A D | fwrite_variation1-win32.phpt | 2 Test fwrite() function : usage variations - r, rb & rt modes 26 Test fwrite with file opened in mode : r,rb,rt 30 $file_modes = array("r","rb","rt"); 97 -- Opening file in rb -- 135 -- Opening file in rb -- 173 -- Opening file in rb -- 211 -- Opening file in rb --
|
H A D | fwrite_variation1.phpt | 2 Test fwrite() function : usage variations - r, rb & rt modes 26 Test fwrite with file opened in mode : r,rb,rt 30 $file_modes = array("r","rb","rt"); 95 -- Opening file in rb -- 133 -- Opening file in rb -- 171 -- Opening file in rb -- 209 -- Opening file in rb --
|
H A D | fputcsv_variation14.phpt | 34 $file_modes = array ("r", "rb", "rt"); 97 -- file opened in rb -- 127 -- file opened in rb -- 157 -- file opened in rb -- 187 -- file opened in rb -- 217 -- file opened in rb -- 247 -- file opened in rb -- 277 -- file opened in rb -- 307 -- file opened in rb -- 337 -- file opened in rb --
|
H A D | fflush_variation4.phpt | 15 $file_modes = array("r", "rb", "rt"); 47 -- Iteration 2 with file opened in rb mode --
|
H A D | bug30362.phpt | 6 $resource = fopen(dirname(__FILE__).'/bug30362.txt', 'rb');
|
/PHP-5.3/ext/phar/tests/ |
H A D | phar_stub.phpt | 22 $fp = fopen($fname, 'rb'); 31 $fp = fopen($fname, 'rb'); 40 $fp = fopen($fname2, 'rb'); 46 $fp = fopen($fname, 'rb'); 55 $fp = fopen($fname2, 'rb'); 61 $fp = fopen($fname, 'rb'); 70 $fp = fopen($fname, 'rb');
|
H A D | fopen_edgecases2.phpt | 18 $a = fopen($fname, 'rb'); 25 $a = fopen("foob", "rb", false, $context);
|
H A D | fopen_edgecases2U.phpt | 18 $a = fopen($fname, 'rb'); 25 $a = fopen("foob", "rb", false, $context);
|
/PHP-5.3/ext/iconv/tests/ |
H A D | iconv_stream_filter_delimiter.phpt | 9 $fp = fopen(dirname(__FILE__).'/iconv_stream_filter.txt', 'rb'); 15 $fp = fopen(dirname(__FILE__).'/iconv_stream_filter.txt', 'rb'); 22 $fp = fopen(dirname(__FILE__).'/iconv_stream_filter.txt', 'rb'); 29 $fp = fopen(dirname(__FILE__).'/iconv_stream_filter.txt', 'rb');
|
H A D | iconv_stream_filter.phpt | 9 $fp = fopen(dirname(__FILE__).'/iconv_stream_filter.txt', 'rb'); 15 $fp = fopen(dirname(__FILE__).'/iconv_stream_filter.txt', 'rb'); 22 $fp = fopen(dirname(__FILE__).'/iconv_stream_filter.txt', 'rb');
|
/PHP-5.3/ext/zip/tests/ |
H A D | stream_meta_data.phpt | 27 $fp = fopen('zip://' . dirname(__FILE__) . '/test_with_comment.zip#foo', 'rb'); 41 string(2) "rb" 61 string(2) "rb"
|
/PHP-5.3/ext/standard/tests/streams/ |
H A D | stream_get_meta_data_process_basic.phpt | 8 $mode = 'rb'; 24 string(2) "rb"
|
H A D | bug47997.phpt | 8 $in = fopen('data://text/plain,', 'rb+');
|
/PHP-5.3/ext/zlib/tests/ |
H A D | compress_zlib_wrapper.phpt | 12 $fp = fopen("compress.zlib://{$pfx}ext/xsl/tests/xslt.xsl.gz", "rb"); 16 $fp = fopen("compress.zlib://". dirname(__FILE__). "/../../../ext/xsl/tests/xslt.xsl.gz", "rb");
|
H A D | gzreadgzwrite.phpt | 17 $fp = gzopen($filename, "rb");
|
/PHP-5.3/ext/standard/tests/http/ |
H A D | bug43510.phpt | 18 foreach(array('r', 'rb') as $mode) { 30 string(2) "rb"
|
/PHP-5.3/ext/pcre/pcrelib/testdata/ |
H A D | testinput9 | 542 a\rb 550 a\n\rb 555 a\rb 560 a\n\rb 565 a\rb 570 a\n\rb 577 a\n\rb 626 a\rb 634 a\rb 644 a\rb [all …]
|
H A D | testinput5 | 163 a\rb 171 a\n\rb 176 a\rb 181 a\n\rb 186 a\rb 191 a\n\rb 198 a\n\rb 250 a\rb 258 a\rb 268 a\rb [all …]
|
/PHP-5.3/ext/phar/tests/zip/ |
H A D | phar_stub.phpt | 36 $fp = fopen($fname3, 'rb'); 49 $fp = fopen($fname3, 'rb');
|
/PHP-5.3/ext/phar/tests/tar/ |
H A D | phar_stub.phpt | 36 $fp = fopen($fname3, 'rb'); 49 $fp = fopen($fname3, 'rb');
|
/PHP-5.3/ext/standard/tests/general_functions/ |
H A D | bug44667.phpt | 11 0 => array('pipe', 'rb'),
|