Lines Matching full:emitted
66 unsigned char *emitted; in main() local
109 emitted = ucl_object_emit (obj, UCL_EMIT_CONFIG); in main()
113 printf ("ucl: emitted config in %.4f seconds\n", seconds); in main()
115 free (emitted); in main()
118 emitted = ucl_object_emit (obj, UCL_EMIT_JSON); in main()
122 printf ("ucl: emitted json in %.4f seconds\n", seconds); in main()
124 free (emitted); in main()
127 emitted = ucl_object_emit (obj, UCL_EMIT_JSON_COMPACT); in main()
131 printf ("ucl: emitted compact json in %.4f seconds\n", seconds); in main()
133 free (emitted); in main()
136 emitted = ucl_object_emit (obj, UCL_EMIT_YAML); in main()
140 printf ("ucl: emitted yaml in %.4f seconds\n", seconds); in main()
142 free (emitted); in main()