Home
last modified time | relevance | path

Searched refs:rb (Results 1 – 25 of 145) sorted by relevance

123456

/PHP-5.5/ext/intl/resourcebundle/
H A Dresourcebundle_class.c45 if (rb->me) { in ResourceBundle_object_destroy()
46 ures_close( rb->me ); in ResourceBundle_object_destroy()
48 if (rb->child) { in ResourceBundle_object_destroy()
69 rb->me = NULL; in ResourceBundle_object_create()
70 rb->child = NULL; in ResourceBundle_object_create()
109 rb->me = ures_open(bundlename, locale, &INTL_DATA_ERROR_CODE(rb)); in resourcebundle_ctor()
111 rb->me = ures_openDirect(bundlename, locale, &INTL_DATA_ERROR_CODE(rb)); in resourcebundle_ctor()
124 rb->me, ULOC_ACTUAL_LOCALE, &INTL_DATA_ERROR_CODE(rb))); in resourcebundle_ctor()
176 rb->child = ures_getByIndex( rb->me, meindex, rb->child, &INTL_DATA_ERROR_CODE(rb) ); in resourcebundle_array_fetch()
179 rb->child = ures_getByKey(rb->me, mekey, rb->child, &INTL_DATA_ERROR_CODE(rb) ); in resourcebundle_array_fetch()
[all …]
H A Dresourcebundle_class.h35 #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 Dresourcebundle_iterator.c35 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()
155 …ResourceBundle_object *rb = (ResourceBundle_object *) zend_object_store_get_object( object TSRML… in resourcebundle_get_iterator() local
166 iterator->subject = rb; in resourcebundle_get_iterator()
171 iterator->is_table = (ures_getType( rb->me ) == URES_TABLE); in resourcebundle_get_iterator()
172 iterator->length = ures_getSize( rb->me ); in resourcebundle_get_iterator()
/PHP-5.5/ext/standard/tests/file/
H A D007_variation17.phpt2 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 Dfwrite_variation1-win32.phpt2 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 Dfwrite_variation1.phpt2 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 Dfputcsv_variation14.phpt34 $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 Dfflush_variation4.phpt15 $file_modes = array("r", "rb", "rt");
47 -- Iteration 2 with file opened in rb mode --
H A Dbug30362.phpt6 $resource = fopen(dirname(__FILE__).'/bug30362.txt', 'rb');
H A Dfclose_variation1.phpt5 $s = fopen(__FILE__, "rb");
/PHP-5.5/ext/phar/tests/
H A Dphar_stub.phpt22 $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 Dfopen_edgecases2.phpt18 $a = fopen($fname, 'rb');
25 $a = fopen("foob", "rb", false, $context);
H A Dfopen_edgecases2U.phpt18 $a = fopen($fname, 'rb');
25 $a = fopen("foob", "rb", false, $context);
/PHP-5.5/ext/iconv/tests/
H A Diconv_stream_filter_delimiter.phpt9 $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 Diconv_stream_filter.phpt9 $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.5/ext/zip/tests/
H A Dstream_meta_data.phpt27 $fp = fopen('zip://' . dirname(__FILE__) . '/test_with_comment.zip#foo', 'rb');
47 string(2) "rb"
67 string(2) "rb"
/PHP-5.5/ext/standard/tests/streams/
H A Dstream_get_meta_data_process_basic.phpt8 $mode = 'rb';
30 string(2) "rb"
H A Dbug47997.phpt8 $in = fopen('data://text/plain,', 'rb+');
/PHP-5.5/ext/zlib/tests/
H A Dcompress_zlib_wrapper.phpt12 $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");
/PHP-5.5/ext/standard/tests/http/
H A Dbug43510.phpt18 foreach(array('r', 'rb') as $mode) {
30 string(2) "rb"
/PHP-5.5/ext/reflection/tests/
H A Dbug64936.phpt30 $rb = new ReflectionClass('B');
31 var_dump(strip_doc_comment($rb->getDocComment()));
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput9544 a\rb
552 a\n\rb
557 a\rb
562 a\n\rb
567 a\rb
572 a\n\rb
579 a\n\rb
628 a\rb
636 a\rb
646 a\rb
[all …]
H A Dtestinput5179 a\rb
187 a\n\rb
192 a\rb
197 a\n\rb
202 a\rb
207 a\n\rb
214 a\n\rb
266 a\rb
274 a\rb
284 a\rb
[all …]
/PHP-5.5/ext/phar/tests/tar/
H A Dphar_stub.phpt36 $fp = fopen($fname3, 'rb');
49 $fp = fopen($fname3, 'rb');
/PHP-5.5/ext/phar/tests/zip/
H A Dphar_stub.phpt36 $fp = fopen($fname3, 'rb');
49 $fp = fopen($fname3, 'rb');

Completed in 26 milliseconds

123456