Searched refs:a_input (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/libcroco/
H A Dcr-tknzr.h55 CRTknzr * cr_tknzr_new (CRInput *a_input) ;
107 enum CRStatus cr_tknzr_set_input (CRTknzr *a_this, CRInput *a_input) ;
109 enum CRStatus cr_tknzr_get_input (CRTknzr *a_this, CRInput **a_input) ;
H A Dcr-om-parser.h58 CROMParser * cr_om_parser_new (CRInput *a_input) ;
H A Dcr-parser.h65 CRParser * cr_parser_new_from_input (CRInput *a_input) ;
H A Dcr-tknzr.c161 #define BYTE(a_input, a_n, a_eof) \
162 cr_input_peek_byte2 (a_input, a_n, a_eof)
1587 cr_tknzr_new (CRInput * a_input) argument
1613 if (a_input)
1614 cr_tknzr_set_input (result, a_input);
1677 cr_tknzr_set_input (CRTknzr * a_this, CRInput * a_input) argument
1685 PRIVATE (a_this)->input = a_input;
1693 cr_tknzr_get_input (CRTknzr * a_this, CRInput ** a_input) argument
1697 *a_input = PRIVATE (a_this)->input;
H A Dcr-om-parser.c796 *@a_input: the input stream.
802 cr_om_parser_new (CRInput * a_input) argument
824 PRIVATE (result)->parser = cr_parser_new_from_input (a_input);
H A Dcr-parser.c2810 * @a_input: the parser input stream to use.
2815 cr_parser_new_from_input (CRInput * a_input) argument
2820 if (a_input) {
2821 tokenizer = cr_tknzr_new (a_input);

Completed in 32 milliseconds