Home | History | Annotate | Download | only in jsoncpp

Lines Matching refs:parser

146     parser = OptionParser(usage=usage)
147 parser.allow_interspersed_args = False
148 parser.add_option('--with-dot', dest="with_dot", action='store_true', default=False,
150 parser.add_option('--dot', dest="dot_path", action='store', default=find_program('dot'),
152 parser.add_option('--doxygen', dest="doxygen_path", action='store', default=find_program('doxygen'),
154 parser.add_option('--with-html-help', dest="with_html_help", action='store_true', default=False,
156 parser.add_option('--no-uml-look', dest="with_uml_look", action='store_false', default=True,
158 parser.add_option('--open', dest="open", action='store_true', default=False,
160 parser.add_option('--tarball', dest="make_tarball", action='store_true', default=False,
162 parser.add_option('-s', '--silent', dest="silent", action='store_true', default=False,
164 parser.enable_interspersed_args()
165 options, args = parser.parse_args()