/third_party/boost/boost/spirit/home/qi/stream/detail/ |
D | match_manip_auto.hpp | 26 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/ |
D | create_parser.hpp | 19 struct create_parser struct 28 typename result_of::create_parser<T>::type 29 create_parser() in create_parser() function
|
D | meta_create.hpp | 256 struct create_parser : qi::meta_create<T> {}; struct 262 : create_parser<typename spirit::detail::remove_const_ref<T>::type> {};
|
D | auto.hpp | 62 return compile<qi::domain>(create_parser<Attribute>(), modifiers_) in parse()
|
/third_party/boost/boost/spirit/home/qi/detail/ |
D | parse_auto.hpp | 34 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/ |
D | test_sax.py | 15 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__.py | 100 return drv_module.create_parser() 105 return drv_module.create_parser()
|
D | expatreader.py | 436 def create_parser(*args, **kwargs): function 443 p = create_parser()
|
/third_party/boost/libs/spirit/test/qi/ |
D | auto.cpp | 35 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/ |
D | compare.py | 35 def create_parser(): function 139 parser = create_parser() 219 self.parser = create_parser()
|
/third_party/boost/boost/convert/ |
D | spirit.hpp | 30 typedef typename boost::spirit::traits::create_parser<out_type>::type parser; in str_to()
|
/third_party/benchmark/tools/ |
D | compare.py | 37 def create_parser(): function 183 parser = create_parser() 271 self.parser = create_parser()
|
/third_party/boost/libs/spirit/doc/qi/ |
D | parse_api.qbk | 302 [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/ |
D | spirit_x3.qbk | 173 …_create_parser__ [/ link spirit_x3.reference.parse_api.create_parser] `create_parser`]
|
/third_party/boost/libs/spirit/doc/ |
D | spirit2.qbk | 289 …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`]]
|
D | index.idx | 20 create_parser "" ".*qi.reference.parse_api.*" qi_index
|
/third_party/libxml2/python/ |
D | drv_libxml2.py | 377 def create_parser(): function
|
/third_party/boost/libs/spirit/doc/html/ |
D | spirit2_HTML.manifest | 77 spirit/qi/reference/parse_api/create_parser.html 289 spirit/advanced/customize/auto/create_parser.html
|
/third_party/python/Doc/library/ |
D | xml.sax.rst | 44 name modules that have a function named :func:`create_parser`. Modules listed
|
D | xml.sax.reader.rst | 15 a Python module, which must provide a function :func:`create_parser`. This
|
/third_party/boost/libs/spirit/doc/advanced/ |
D | customization_points.qbk | 2698 [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/ |
D | reference.cpp | 266 struct create_parser<complex> struct
|