Home
last modified time | relevance | path

Searched refs:top_parser (Results 1 – 10 of 10) sorted by relevance

/dports/finance/gnucash/gnucash-4.9/libgnucash/backend/xml/
H A Dio-gncxml-gen.cpp32 gnc_xml_parse_file (sixtp* top_parser, const char* filename, in gnc_xml_parse_file() argument
43 return sixtp_parse_file (top_parser, filename, in gnc_xml_parse_file()
48 gnc_xml_parse_fd (sixtp* top_parser, FILE* fd, in gnc_xml_parse_fd() argument
59 return sixtp_parse_fd (top_parser, fd, in gnc_xml_parse_fd()
H A Dio-gncxml-gen.h45 gnc_xml_parse_file (sixtp* top_parser, const char* filename,
50 gnc_xml_parse_fd (sixtp* top_parser, FILE* fd,
H A Dio-example-account.cpp328 sixtp* top_parser; in gnc_read_example_account() local
338 top_parser = sixtp_new (); in gnc_read_example_account()
342 top_parser, TRUE, in gnc_read_example_account()
364 if (!gnc_xml_parse_file (top_parser, filename, in gnc_read_example_account()
367 sixtp_destroy (top_parser); in gnc_read_example_account()
H A Dio-gncxml-v2.cpp704 sixtp* top_parser; in qof_session_load_from_xml_file_v2_full() local
714 top_parser = sixtp_new (); in qof_session_load_from_xml_file_v2_full()
722 top_parser, TRUE, in qof_session_load_from_xml_file_v2_full()
788 retval = sixtp_parse_push (top_parser, push_handler, push_user_data, in qof_session_load_from_xml_file_v2_full()
810 retval = gnc_xml_parse_fd (top_parser, file, in qof_session_load_from_xml_file_v2_full()
820 sixtp_destroy (top_parser); in qof_session_load_from_xml_file_v2_full()
828 sixtp_destroy (top_parser); in qof_session_load_from_xml_file_v2_full()
/dports/finance/gnucash/gnucash-4.9/libgnucash/backend/xml/test/
H A Dtest-file-stuff.cpp331 test_load_file (const char* filename, gxpf_callback cb, sixtp* top_parser, in test_load_file() argument
345 if (!gnc_xml_parse_file (top_parser, filename, cb, node->children, book)) in test_load_file()
361 sixtp* top_parser; in test_files_in_dir() local
364 top_parser = sixtp_new (); in test_files_in_dir()
367 if (!sixtp_add_some_sub_parsers (top_parser, TRUE, "gnc-v2", main_parser, in test_files_in_dir()
392 test_load_file (to_open, cb, top_parser, book); in test_files_in_dir()
397 sixtp_destroy (top_parser); in test_files_in_dir()
/dports/x11-wm/windowmaker/WindowMaker-0.95.9/WINGs/
H A Dmenuparser.c116 Bool WMenuParserGetLine(WMenuParser top_parser, char **title, char **command, in WMenuParserGetLine() argument
132 cur_parser = top_parser; in WMenuParserGetLine()
200 WMenuParserError(top_parser, _("multiple SHORTCUT definition not valid") ); in WMenuParserGetLine()
/dports/x11-wm/libwraster/WindowMaker-0.95.9/WINGs/
H A Dmenuparser.c116 Bool WMenuParserGetLine(WMenuParser top_parser, char **title, char **command, in WMenuParserGetLine() argument
132 cur_parser = top_parser; in WMenuParserGetLine()
200 WMenuParserError(top_parser, _("multiple SHORTCUT definition not valid") ); in WMenuParserGetLine()
/dports/security/py-zkg/package-manager-2.12.0/
H A Dzkg2198 top_parser = argparse.ArgumentParser(
2210 top_parser.add_argument('--version', action='version',
2213 group = top_parser.add_mutually_exclusive_group()
2219 top_parser.add_argument('--verbose', '-v', action='count', default=0,
2222 top_parser.add_argument('--extra-source', action='append',
2224 return top_parser
2260 top_parser = top_level_parser()
2261 command_parser = top_parser.add_subparsers(
2717 return top_parser
H A Dzkg.py2198 top_parser = argparse.ArgumentParser(
2210 top_parser.add_argument('--version', action='version',
2213 group = top_parser.add_mutually_exclusive_group()
2219 top_parser.add_argument('--verbose', '-v', action='count', default=0,
2222 top_parser.add_argument('--extra-source', action='append',
2224 return top_parser
2260 top_parser = top_level_parser()
2261 command_parser = top_parser.add_subparsers(
2717 return top_parser
/dports/devel/py-cmd2/cmd2-2.3.2/tests/
H A Dtest_argparse_completer.py1253 top_parser = Cmd2ArgumentParser(description="Top Command") variable in CustomCompleterApp
1254 top_subparsers = top_parser.add_subparsers(dest='subcommand', metavar='SUBCOMMAND')
1257 @with_argparser(top_parser)