Home | History | Annotate | Download | only in tests

Lines Matching defs:in

6  * in whole or in part, in any medium, physical or electronic is
9 * This work is distributed in the hope that it will be useful,
13 * In no event shall the authors or contributors be liable for any
18 * in contract, strict liability, or tort (including negligence or
19 * otherwise) arising in any way out of the use of this software, even
32 GInputStream *in;
37 in = g_buffered_input_stream_new (base);
39 g_assert_cmpint (g_buffered_input_stream_read_byte (G_BUFFERED_INPUT_STREAM (in), NULL, NULL), ==, 'a');
40 g_assert_cmpint (g_buffered_input_stream_read_byte (G_BUFFERED_INPUT_STREAM (in), NULL, NULL), ==, 'b');
41 g_assert_cmpint (g_buffered_input_stream_read_byte (G_BUFFERED_INPUT_STREAM (in), NULL, NULL), ==, 'c');
43 g_assert_cmpint (g_input_stream_skip (in, 3, NULL, NULL), ==, 3);
45 g_assert_cmpint (g_buffered_input_stream_read_byte (G_BUFFERED_INPUT_STREAM (in), NULL, NULL), ==, 'g');