Home
last modified time | relevance | path

Searched refs:create_parser (Results 1 – 22 of 22) sorted by relevance

/third_party/boost/boost/spirit/home/qi/stream/detail/
Dmatch_manip_auto.hpp26 typedef typename result_of::create_parser<Expr>::type expr_type;
33 return type(create_parser<Expr>(), unused, const_cast<Expr&>(expr)); in call()
42 typedef typename result_of::create_parser<Expr>::type expr_type;
56 return type(create_parser<Expr>(), skipper, post_skip in call()
/third_party/boost/boost/spirit/home/qi/auto/
Dcreate_parser.hpp19 struct create_parser struct
28 typename result_of::create_parser<T>::type
29 create_parser() in create_parser() function
Dmeta_create.hpp256 struct create_parser : qi::meta_create<T> {}; struct
262 : create_parser<typename spirit::detail::remove_const_ref<T>::type> {};
Dauto.hpp62 return compile<qi::domain>(create_parser<Attribute>(), modifiers_) in parse()
/third_party/boost/boost/spirit/home/qi/detail/
Dparse_auto.hpp34 return qi::parse(first, last, create_parser<Expr>(), expr); in call()
40 return qi::parse(first, last, create_parser<Expr>() in call()
58 return qi::phrase_parse(first, last, create_parser<Expr>() in call()
66 return qi::phrase_parse(first, last, create_parser<Expr>() in call()
/third_party/python/Lib/test/
Dtest_sax.py15 from xml.sax.expatreader import create_parser
884 parser = create_parser()
895 parser = create_parser()
911 parser = create_parser()
922 parser = create_parser()
933 parser = create_parser()
971 parser = create_parser()
990 parser = create_parser()
1004 parser = create_parser()
1025 parser = create_parser()
[all …]
/third_party/python/Lib/xml/sax/
D__init__.py100 return drv_module.create_parser()
105 return drv_module.create_parser()
Dexpatreader.py436 def create_parser(*args, **kwargs): function
443 p = create_parser()
/third_party/boost/libs/spirit/test/qi/
Dauto.cpp35 return qi::phrase_parse(in, last, qi::create_parser<T>(), qi::space, t); in test_create_parser()
55 qi::rule<Char const*, Attribute()> r = qi::create_parser<Attribute>(); in test_rule()
65 qi::rule<Char const*, Attribute(), Skipper> r = qi::create_parser<Attribute>(); in test_rule()
/third_party/json/benchmarks/thirdparty/benchmark/tools/
Dcompare.py35 def create_parser(): function
139 parser = create_parser()
219 self.parser = create_parser()
/third_party/boost/boost/convert/
Dspirit.hpp30 typedef typename boost::spirit::traits::create_parser<out_type>::type parser; in str_to()
/third_party/benchmark/tools/
Dcompare.py37 def create_parser(): function
183 parser = create_parser()
271 self.parser = create_parser()
/third_party/boost/libs/spirit/doc/qi/
Dparse_api.qbk302 [section:create_parser API for Automatic Parser Creation]
323 [[`boost::spirit::qi::create_parser`]]
333 create_parser();
349 The meta function evaluates to `mpl::true_` if `create_parser` would return
/third_party/boost/libs/spirit/doc/x3/
Dspirit_x3.qbk173 …_create_parser__ [/ link spirit_x3.reference.parse_api.create_parser] `create_parser`]
/third_party/boost/libs/spirit/doc/
Dspirit2.qbk289 …ize_create_parser__ [link spirit.advanced.customize.auto.create_parser `traits::create_parser`]]
457 … __create_parser__ [link spirit.qi.reference.parse_api.create_parser `create_parser`]]
Dindex.idx20 create_parser "" ".*qi.reference.parse_api.*" qi_index
/third_party/libxml2/python/
Ddrv_libxml2.py377 def create_parser(): function
/third_party/boost/libs/spirit/doc/html/
Dspirit2_HTML.manifest77 spirit/qi/reference/parse_api/create_parser.html
289 spirit/advanced/customize/auto/create_parser.html
/third_party/python/Doc/library/
Dxml.sax.rst44 name modules that have a function named :func:`create_parser`. Modules listed
Dxml.sax.reader.rst15 a Python module, which must provide a function :func:`create_parser`. This
/third_party/boost/libs/spirit/doc/advanced/
Dcustomization_points.qbk2698 [section:create_parser Define a Custom Attribute Mapping for a Parser]
2700 [heading create_parser]
2702 The template `create_parser` is a type used as an customization point. It is
2725 struct create_parser
2751 [[`create_parser<T>::type`] [Defines the type of the parser
2753 [[`create_parser<T>::call()`] [Returns a parser expression (usually
2765 by providing your own specialization of the `create_parser` customization
2770 The customization point `create_parser` needs to be implemented for a specific
2777 For an example of how to use the customization point `create_parser`
/third_party/boost/libs/spirit/example/qi/
Dreference.cpp266 struct create_parser<complex> struct