Lines Matching refs:event_to
153 bool copy_event(yaml_event_t *event_to, yaml_event_t *event_from) { in copy_event() argument
158 event_to, event_from->data.stream_start.encoding); in copy_event()
161 return yaml_stream_end_event_initialize(event_to); in copy_event()
165 event_to, event_from->data.document_start.version_directive, in copy_event()
172 event_to, event_from->data.document_end.implicit); in copy_event()
175 return yaml_alias_event_initialize(event_to, event_from->data.alias.anchor); in copy_event()
179 event_to, event_from->data.scalar.anchor, event_from->data.scalar.tag, in copy_event()
186 event_to, event_from->data.sequence_start.anchor, in copy_event()
192 return yaml_sequence_end_event_initialize(event_to); in copy_event()
196 event_to, event_from->data.mapping_start.anchor, in copy_event()
202 return yaml_mapping_end_event_initialize(event_to); in copy_event()