Home
last modified time | relevance | path

Searched refs:STRING_INIT (Results 1 – 2 of 2) sorted by relevance

/petsc/src/sys/yaml/src/
H A Dscanner.c2111 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_directive_name()
2322 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_anchor()
2501 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_tag_handle()
2569 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_tag_uri()
2747 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_block_scalar()
2748 if (!STRING_INIT(parser, leading_break, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_block_scalar()
2749 if (!STRING_INIT(parser, trailing_breaks, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_block_scalar()
3026 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_flow_scalar()
3027 if (!STRING_INIT(parser, leading_break, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_flow_scalar()
3028 if (!STRING_INIT(parser, trailing_breaks, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_flow_scalar()
[all …]
H A Dyaml_private.h132 #define STRING_INIT(context,string,size) \ macro