Searched refs:a_eof (Results 1 - 5 of 5) sorted by relevance
/inkscape/src/libcroco/ |
H A D | cr-input.h | 101 gboolean *a_eof) ; 140 cr_input_get_end_of_file (CRInput const *a_this, gboolean *a_eof) ; 143 cr_input_set_end_of_file (CRInput *a_this, gboolean a_eof) ;
|
H A D | cr-input.c | 839 *@a_eof: out parameter. Is set to true is we reach end of 849 cr_input_peek_byte2 (CRInput const * a_this, gulong a_offset, gboolean * a_eof) argument 856 if (a_eof) 857 *a_eof = FALSE; 862 && a_eof) 863 *a_eof = TRUE; 1082 *@a_eof: the new end of file flag. 1089 cr_input_set_end_of_file (CRInput * a_this, gboolean a_eof) argument 1093 PRIVATE (a_this)->end_of_input = a_eof; 1101 *@a_eof 1109 cr_input_get_end_of_file(CRInput const * a_this, gboolean * a_eof) argument [all...] |
H A D | cr-tknzr.h | 78 gboolean *a_eof) ;
|
H A D | cr-tknzr.c | 161 #define BYTE(a_input, a_n, a_eof) \ 162 cr_input_peek_byte2 (a_input, a_n, a_eof) 1805 *@param a_eof out parameter. If not NULL, is set to TRUE if we reached end of 1811 cr_tknzr_peek_byte2 (CRTknzr * a_this, gulong a_offset, gboolean * a_eof) argument 1816 return cr_input_peek_byte2 (PRIVATE (a_this)->input, a_offset, a_eof);
|
H A D | cr-parser.c | 261 #define BYTE(a_parser, a_offset, a_eof) \ 262 cr_tknzr_peek_byte2 (PRIVATE (a_this)->tknzr, a_offset, a_eof)
|
Completed in 32 milliseconds