Lines Matching defs:x

150 static inline yxml_ret_t yxml_datacontent(yxml_t *x, unsigned ch) {  in yxml_datacontent()
157 static inline yxml_ret_t yxml_datapi1(yxml_t *x, unsigned ch) { in yxml_datapi1()
164 static inline yxml_ret_t yxml_datapi2(yxml_t *x, unsigned ch) { in yxml_datapi2()
172 static inline yxml_ret_t yxml_datacd1(yxml_t *x, unsigned ch) { in yxml_datacd1()
180 static inline yxml_ret_t yxml_datacd2(yxml_t *x, unsigned ch) { in yxml_datacd2()
189 static inline yxml_ret_t yxml_dataattr(yxml_t *x, unsigned ch) { in yxml_dataattr()
197 static yxml_ret_t yxml_pushstack(yxml_t *x, char **res, unsigned ch) { in yxml_pushstack()
209 static yxml_ret_t yxml_pushstackc(yxml_t *x, unsigned ch) { in yxml_pushstackc()
219 static void yxml_popstack(yxml_t *x) { in yxml_popstack()
226 static inline yxml_ret_t yxml_elemstart (yxml_t *x, unsigned ch) { return yxml_pushstack(x, &x->el… in yxml_elemstart()
227 static inline yxml_ret_t yxml_elemname (yxml_t *x, unsigned ch) { return yxml_pushstackc(x, ch); } in yxml_elemname()
228 static inline yxml_ret_t yxml_elemnameend(yxml_t *x, unsigned ch) { (void) x; (void) ch; return YXM… in yxml_elemnameend()
233 static yxml_ret_t yxml_selfclose(yxml_t *x, unsigned ch) { in yxml_selfclose()
248 static inline yxml_ret_t yxml_elemclose(yxml_t *x, unsigned ch) { in yxml_elemclose()
256 static inline yxml_ret_t yxml_elemcloseend(yxml_t *x, unsigned ch) { in yxml_elemcloseend()
263 static inline yxml_ret_t yxml_attrstart (yxml_t *x, unsigned ch) { return yxml_pushstack(x, &x->at… in yxml_attrstart()
264 static inline yxml_ret_t yxml_attrname (yxml_t *x, unsigned ch) { return yxml_pushstackc(x, ch); } in yxml_attrname()
265 static inline yxml_ret_t yxml_attrnameend(yxml_t *x, unsigned ch) { (void) x; (void) ch; return YXM… in yxml_attrnameend()
266 static inline yxml_ret_t yxml_attrvalend (yxml_t *x, unsigned ch) { (void) ch; yxml_popstack(x); re… in yxml_attrvalend()
269 static inline yxml_ret_t yxml_pistart (yxml_t *x, unsigned ch) { return yxml_pushstack(x, &x->pi, … in yxml_pistart()
270 static inline yxml_ret_t yxml_piname (yxml_t *x, unsigned ch) { return yxml_pushstackc(x, ch); } in yxml_piname()
271 static inline yxml_ret_t yxml_piabort (yxml_t *x, unsigned ch) { (void) x; (void) ch; yxml_popstac… in yxml_piabort()
272 static inline yxml_ret_t yxml_pinameend(yxml_t *x, unsigned ch) { (void) ch; in yxml_pinameend()
275 static inline yxml_ret_t yxml_pivalend (yxml_t *x, unsigned ch) { (void) ch; yxml_popstack(x); x->p… in yxml_pivalend()
278 static inline yxml_ret_t yxml_refstart(yxml_t *x, unsigned ch) { in yxml_refstart()
286 static yxml_ret_t yxml_ref(yxml_t *x, unsigned ch) { in yxml_ref()
295 static yxml_ret_t yxml_refend(yxml_t *x, yxml_ret_t ret) { in yxml_refend()
332 static inline yxml_ret_t yxml_refcontent(yxml_t *x, unsigned ch) { (void) ch; return yxml_refend(x,… in yxml_refcontent()
333 static inline yxml_ret_t yxml_refattrval(yxml_t *x, unsigned ch) { (void) ch; return yxml_refend(x,… in yxml_refattrval()
336 void yxml_init(yxml_t *x, void *stack, size_t stacksize) { in yxml_init()
347 yxml_ret_t yxml_parse(yxml_t *x, int _ch) { in yxml_parse()
1067 yxml_ret_t yxml_eof(yxml_t *x) { in yxml_eof()