Home
last modified time | relevance | path

Searched refs:result_t (Results 1 – 25 of 64) sorted by relevance

123

/third_party/boost/boost/spirit/home/classic/core/composite/
Ddirectives.hpp55 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
56 return impl::contiguous_parser_parse<result_t> in parse()
161 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
162 return impl::inhibit_case_parser_parse<result_t> in parse()
277 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
279 result_t l = this->left().parse(scan); in parse()
281 result_t r = this->right().parse(scan); in parse()
303 impl::to_longest_alternative<alternative<A, B> >::result_t
309 impl::to_longest_alternative<alternative<A, B> >::result_t
326 typename impl::to_longest_alternative<alternative<A, B> >::result_t
[all …]
Dactions.hpp109 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
113 result_t hit = this->subject().parse(scan); in parse()
116 typename result_t::return_t val = hit.value(); in parse()
Dpositive.hpp58 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
60 result_t hit = this->subject().parse(scan); in parse()
67 if (result_t next = this->subject().parse(scan)) in parse()
Dkleene_star.hpp58 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
60 result_t hit = scan.empty_match(); in parse()
65 if (result_t next = this->subject().parse(scan)) in parse()
/third_party/boost/boost/spirit/home/classic/core/composite/impl/
Ddirectives.ipp157 typedef T result_t;
158 static result_t const&
166 typedef typename to_longest_alternative<A>::result_t a_t;
167 typedef typename to_longest_alternative<B>::result_t b_t;
168 typedef longest_alternative<a_t, b_t> result_t;
170 static result_t
173 return result_t(
182 typedef T result_t;
183 static result_t const&
191 typedef typename to_shortest_alternative<A>::result_t a_t;
[all …]
/third_party/boost/boost/range/
Dcounting_range.hpp30 typedef iterator_range<counting_iterator_t> result_t; in counting_range() typedef
31 return result_t(counting_iterator_t(first), in counting_range()
47 typedef iterator_range<counting_iterator_t> result_t; in counting_range() typedef
49 return result_t(counting_iterator_t(boost::begin(rng)), in counting_range()
65 typedef iterator_range<counting_iterator_t> result_t; in counting_range() typedef
67 return result_t(counting_iterator_t(boost::begin(rng)), in counting_range()
/third_party/boost/boost/spirit/home/classic/utility/
Dloops.hpp59 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
60 result_t hit = scan.empty_match(); in parse()
65 if (result_t next = this->subject().parse(scan)) in parse()
125 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
126 result_t hit = scan.empty_match(); in parse()
134 result_t next = this->subject().parse(scan); in parse()
211 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
212 result_t hit = scan.empty_match(); in parse()
218 result_t next = this->subject().parse(scan); in parse()
Ddistinct.hpp42 result_t; typedef in boost::spirit::distinct_parser
59 result_t operator()(CharT const* str) const in operator ()()
140 result_t; typedef in boost::spirit::dynamic_distinct_parser
158 result_t operator()(char_t const* str) const in operator ()()
/third_party/boost/libs/algorithm/minmax/fuzzing/
Dminmax_element_variants.fuzz.cpp31 typedef std::pair<const uint8_t *, const uint8_t *> result_t; in LLVMFuzzerTestOneInput() typedef
37 result_t resultff = boost::first_min_first_max_element(data, dend); in LLVMFuzzerTestOneInput()
38 result_t resultfl = boost::first_min_last_max_element (data, dend); in LLVMFuzzerTestOneInput()
39 result_t resultlf = boost::last_min_first_max_element (data, dend); in LLVMFuzzerTestOneInput()
40 result_t resultll = boost::last_min_last_max_element (data, dend); in LLVMFuzzerTestOneInput()
90 result_t resultff = boost::first_min_first_max_element(data, dend, greater); in LLVMFuzzerTestOneInput()
91 result_t resultfl = boost::first_min_last_max_element (data, dend, greater); in LLVMFuzzerTestOneInput()
92 result_t resultlf = boost::last_min_first_max_element (data, dend, greater); in LLVMFuzzerTestOneInput()
93 result_t resultll = boost::last_min_last_max_element (data, dend, greater); in LLVMFuzzerTestOneInput()
Dminmax_element.fuzz.cpp27 typedef std::pair<const uint8_t *, const uint8_t *> result_t; in LLVMFuzzerTestOneInput() typedef
32 result_t result = boost::minmax_element(data, data + sz); in LLVMFuzzerTestOneInput()
57 result_t result = boost::minmax_element(data, data + sz, greater); in LLVMFuzzerTestOneInput()
/third_party/boost/boost/spirit/home/classic/error_handling/
Dexceptions.hpp142 typedef typename parser_result<ParserT, ScannerT>::type result_t; in parse() typedef
144 result_t hit = this->subject().parse(scan); in parse()
220 enum result_t { fail, retry, accept, rethrow }; enum
223 result_t result_ = fail, in error_status()
228 result_t result;
285 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
286 return impl::fallback_parser_parse<result_t>(*this, scan); in parse()
/third_party/boost/libs/range/test/algorithm_test/
Dunique.cpp49 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type result_t; in operator ()() typedef
53 result_t result = boost::unique<return_type>(cont); in operator ()()
78 Container,result_type>::type result_t; in operator ()() typedef
82 result_t result = boost::unique(cont); in operator ()()
125 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type result_t; in operator ()() typedef
129 result_t result = boost::unique<return_type>(cont, policy.pred()); in operator ()()
152 Container,result_type>::type result_t; in operator ()() typedef
156 result_t result = boost::unique(cont, policy.pred()); in operator ()()
Dmin_element.cpp46 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type result_t; in operator ()() typedef
47 result_t result = boost::min_element<return_type>(cont); in operator ()()
85 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type result_t; in operator ()() typedef
86 result_t result = boost::min_element<return_type>(cont, policy.pred()); in operator ()()
Dmax_element.cpp47 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type result_t; in operator ()() typedef
48 result_t result = boost::max_element<return_type>(cont); in operator ()()
87 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type result_t; in operator ()() typedef
88 result_t result = boost::max_element<return_type>(cont, policy.pred()); in operator ()()
Dupper_bound.cpp45 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,result_type>::type result_t; in operator ()() typedef
46 result_t result = boost::upper_bound<result_type>(cont, 5); in operator ()()
80 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,result_type>::type result_t; in operator ()() typedef
82 result_t result = boost::upper_bound<result_type>(cont, 5, policy.pred()); in operator ()()
/third_party/boost/libs/geometry/test/formulas/
Dinverse.cpp64 bg::formula::result_inverse<double> result_v, result_t, result_a; in test_all() local
73 result_t = th_t::apply(lon1r, lat1r, lon2r, lat2r, spheroid); in test_all()
74 result_t.azimuth *= r2d; in test_all()
75 result_t.reverse_azimuth *= r2d; in test_all()
76 check_inverse("thomas", results, result_t, results.thomas, results.reference, 0.00001); in test_all()
/third_party/boost/boost/spirit/home/classic/dynamic/
Dselect.hpp122 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
126 TupleT::length, result_t, TupleT, BehaviourT>::do_(t, scan); in parse()
128 return impl::select_match_gen<result_t, BehaviourT>::do_(scan); in parse()
208 typedef select_parser<tuple_t, BehaviourT, T> result_t; \
210 return result_t(tuple_t( \
/third_party/boost/boost/spirit/home/classic/core/primitives/
Dnumerics.hpp50 typedef typename parser_result<impl_t, ScannerT>::type result_t; in parse() typedef
51 return impl::contiguous_parser_parse<result_t>(impl_t(), scan, scan); in parse()
81 typedef typename parser_result<impl_t, ScannerT>::type result_t; in parse() typedef
82 return impl::contiguous_parser_parse<result_t>(impl_t(), scan, scan); in parse()
244 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
245 return impl::real_parser_impl<result_t, T, RealPoliciesT>::parse(scan); in parse()
/third_party/boost/libs/safe_numerics/example/
Dexample92.cpp140 using result_t = uint8_t; typedef
141 const result_t success = 1;
142 const result_t fail = 0;
145 result_t test(int32 m){ in test()
177 result_t result = success; in main()
Dexample93.cpp247 using result_t = uint8_t; typedef
248 const result_t success = 1;
249 const result_t fail = 0;
252 result_t test(position_t new_position){ in test()
283 result_t result = success; in main()
/third_party/boost/boost/lexical_cast/detail/
Dconverter_lexical.hpp199 typedef boost::has_left_shift< std::basic_ostream< char >, T > result_t; typedef
202 BOOST_STATIC_ASSERT_MSG((result_t::value),
207 result_t::value, char, wchar_t
210 …BOOST_STATIC_ASSERT_MSG((result_t::value || boost::has_left_shift< std::basic_ostream< type >, T >…
232 typedef boost::has_right_shift<std::basic_istream<char>, T > result_t; typedef
235 BOOST_STATIC_ASSERT_MSG((result_t::value),
240 result_t::value, char, wchar_t
243 …BOOST_STATIC_ASSERT_MSG((result_t::value || boost::has_right_shift<std::basic_istream<wchar_t>, T …
/third_party/boost/boost/spirit/home/classic/attribute/
Dparametric.hpp91 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
92 return impl::string_parser_parse<result_t>(first(), last(), scan); in parse()
125 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
126 return impl::contiguous_parser_parse<result_t> in parse()
/third_party/boost/libs/gil/test/core/pixel/
Dpixels_are_compatible.cpp25 using result_t = typename gil::pixels_are_compatible<Pixel, CompatiblePixel>::type; in operator ()() typedef
26 static_assert(result_t::value, "pixels should be compatible"); in operator ()()
30 std::is_same<result_t, std::true_type>::value, in operator ()()
34 !std::is_same<result_t, std::false_type>::value, in operator ()()
/third_party/boost/boost/iterator/
Dfunction_input_iterator.hpp145 typedef function_input_iterator<Function, Input> result_t; in make_function_input_iterator() typedef
146 return result_t(f, state); in make_function_input_iterator()
152 typedef function_input_iterator<Function*, Input> result_t; in make_function_input_iterator() typedef
153 return result_t(f, state); in make_function_input_iterator()
/third_party/boost/boost/spirit/home/classic/core/non_terminal/
Dsubrule.hpp263 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse_main() typedef
264 result_t result_; in parse_main()
265 impl::parse_subrule<result_t, ScannerT, ID>:: in parse_main()
274 typedef typename parser_result<self_t, ScannerT>::type result_t; in parse() typedef
277 scan, *this, scanner_t, context_t, result_t); in parse()

123