Home
last modified time | relevance | path

Searched refs:CondT (Results 1 – 15 of 15) sorted by relevance

/third_party/boost/boost/spirit/home/classic/phoenix/
Dstatements.hpp93 template <typename CondT, typename ThenT, typename ElseT>
96 typedef if_then_else_composite<CondT, ThenT, ElseT> self_t;
105 CondT const& cond_, in if_then_else_composite()
119 CondT cond; ThenT then; ElseT else_; // actors
123 template <typename CondT, typename ThenT>
126 else_gen(CondT const& cond_, ThenT const& then_) in else_gen()
130 actor<if_then_else_composite<CondT, ThenT,
134 typedef if_then_else_composite<CondT, ThenT, in operator []()
141 CondT cond; ThenT then;
145 template <typename CondT, typename ThenT>
[all …]
/third_party/boost/boost/log/expressions/formatters/
Dif.hpp43 template< typename LeftT, typename CondT, typename ThenT >
75 CondT m_cond;
81 …if_output_terminal(LeftT const& left, CondT const& cond, ThenT const& then_) : m_left(left), m_con… in if_output_terminal()
110 template< typename LeftT, typename CondT, typename ThenT, typename ElseT >
142 CondT m_cond;
150 …if_else_output_terminal(LeftT const& left, CondT const& cond, ThenT const& then_, ElseT const& els… in if_else_output_terminal()
184 template< typename CondT, typename ThenT, typename ElseT >
187 CondT m_cond;
191 …if_then_else_gen(CondT const& cond, ThenT const& then_, ElseT const& else_) : m_cond(cond), m_then… in if_then_else_gen()
199 template< typename LeftExprT, typename CondT, typename ThenT, typename ElseT >\
[all …]
/third_party/boost/boost/spirit/home/classic/dynamic/
Dif.hpp27 template <typename ParsableTrueT, typename ParsableFalseT, typename CondT>
29 : public condition_evaluator<typename as_parser<CondT>::type>
34 parser< if_else_parser<ParsableTrueT, ParsableFalseT, CondT> >
37 typedef if_else_parser<ParsableTrueT, ParsableFalseT, CondT> self_t;
43 typedef as_parser<CondT> cond_as_parser_t;
53 CondT const& cond_ in if_else_parser()
106 template <typename ParsableTrueT, typename CondT>
109 if_else_parser_gen(ParsableTrueT const& p_true_, CondT const& cond_) in if_else_parser_gen()
118 CondT
122 return if_else_parser<ParsableTrueT, ParsableFalseT, CondT> in operator []()
[all …]
Dwhile.hpp27 template <typename ParsableT, typename CondT, bool is_do_parser>
29 : public condition_evaluator< typename as_parser<CondT>::type >
33 parser<while_parser<ParsableT, CondT, is_do_parser> >
36 typedef while_parser<ParsableT, CondT, is_do_parser> self_t;
40 typedef as_parser<CondT> cond_as_parser_t;
49 while_parser(ParsableT const &body, CondT const &cond) in while_parser()
99 template <typename CondT>
104 while_parser_gen(CondT const& cond_) : cond(cond_) {} in while_parser_gen()
109 while_parser<ParsableT, CondT, false>
112 return while_parser<ParsableT, CondT, false>(subject, cond); in operator []()
[all …]
Dswitch.hpp89 template <typename CaseT, typename CondT = impl::get_next_token_cond>
91 : public unary<CaseT, parser<switch_parser<CaseT, CondT> > >
93 typedef switch_parser<CaseT, CondT> self_t;
98 : base_t(case_), cond(CondT()) in switch_parser()
101 switch_parser(CaseT const &case_, CondT const &cond_) in switch_parser()
116 impl::make_cond_functor<CondT>::do_(cond)); in parse()
119 CondT cond;
123 template <typename CondT>
126 switch_cond_parser(CondT const &cond_) in switch_cond_parser()
131 switch_parser<ParserT, CondT>
[all …]
Dfor.hpp62 typename InitF, typename CondT, typename StepF,
68 , private condition_evaluator<typename as_parser<CondT>::type>
72 parser< for_parser<InitF, CondT, StepF, ParsableT> >
75 typedef for_parser<InitF, CondT, StepF, ParsableT> self_t;
76 typedef as_parser<CondT> cond_as_parser_t;
89 InitF const &i, CondT const &c, StepF const &s, in for_parser()
144 template <typename InitF, typename CondT, typename StepF>
147 for_parser_gen(InitF const &i, CondT const &c, StepF const &s) in for_parser_gen()
154 for_parser<InitF, CondT, StepF, ParsableT>
157 return for_parser<InitF, CondT, StepF, ParsableT> in operator []()
[all …]
Dtypeof.hpp23 template <class ParsableT, typename CondT> struct if_parser;
24 template <class ParsableTrueT, class ParsableFalseT, typename CondT>
29 template<typename InitF, typename CondT, typename StepF, class ParsableT>
34 template<typename ParsableT, typename CondT, bool is_do_parser>
44 template <typename CaseT, typename CondT> struct switch_parser;
/third_party/boost/boost/lambda/
Dloops.hpp280 template <typename CondT, typename DoT>
283 typedef while_composite<CondT, DoT> self_t;
288 while_composite(CondT const& cond_, DoT const& do__) in while_composite()
298 CondT cond;
303 template <typename CondT>
306 while_gen(CondT const& cond_) in while_gen()
311 typename as_lambda_functor<CondT>::type,
316 typename as_lambda_functor<CondT>::type, in operator []()
325 CondT cond;
329 template <typename CondT>
[all …]
Dif.hpp352 template <typename CondT, typename ThenT, typename ElseT>
355 typedef if_then_else_composite<CondT, ThenT, ElseT> self_t;
361 CondT const& cond_, in if_then_else_composite()
375 CondT cond; ThenT then; ElseT else_; // lambda_functors
379 template <typename CondT, typename ThenT>
382 else_gen(CondT const& cond_, ThenT const& then_) in else_gen()
386 lambda_functor<if_then_else_composite<CondT, ThenT,
390 typedef if_then_else_composite<CondT, ThenT, in operator []()
397 CondT cond; ThenT then;
401 template <typename CondT, typename ThenT>
[all …]
/third_party/boost/boost/spirit/home/classic/core/composite/
Depsilon.hpp42 template <typename CondT, bool positive_ = true>
43 struct condition_parser : parser<condition_parser<CondT, positive_> >
45 typedef condition_parser<CondT, positive_> self_t;
48 condition_parser(CondT const& cond_) : cond(cond_) {} in condition_parser()
60 condition_parser<CondT, !positive_>
62 { return condition_parser<CondT, !positive_>(cond); } in negate()
66 CondT cond;
74 template <typename CondT>
75 inline condition_parser<CondT, false>
76 operator~(condition_parser<CondT, true> const& p) in operator ~() argument
[all …]
/third_party/boost/libs/spirit/classic/phoenix/example/fundamental/
Dsample6.cpp21 template <typename CondT, typename TrueT, typename FalseT>
24 typedef if_else_composite<CondT, TrueT, FalseT> self_t;
36 CondT const& cond_, TrueT const& true__, FalseT const& false__) in if_else_composite()
46 CondT cond; TrueT true_; FalseT false_; // actors
50 template <typename CondT, typename TrueT, typename FalseT>
52 typename as_actor<CondT>::type,
55 if_else_(CondT const& cond, TrueT const& true_, FalseT const& false_) in if_else_()
58 typename as_actor<CondT>::type, in if_else_()
64 as_actor<CondT>::convert(cond), in if_else_()
/third_party/node/src/
Dnode_mutex.h128 typename Traits::CondT cond_;
132 using CondT = uv_cond_t; member
135 static inline int cond_init(CondT* cond) { in cond_init()
143 static inline void cond_broadcast(CondT* cond) { in cond_broadcast()
147 static inline void cond_destroy(CondT* cond) { in cond_destroy()
151 static inline void cond_signal(CondT* cond) { in cond_signal()
155 static inline void cond_wait(CondT* cond, MutexT* mutex) { in cond_wait()
/third_party/boost/boost/wave/grammars/
Dcpp_expression_grammar.hpp156 template <typename CondT, typename Arg1T, typename Arg2T>
162 template <typename CondT, typename Arg1T, typename Arg2T>
164 operator()(CondT const &cond, Arg1T &val1, Arg2T const &val2) const in operator ()()
/third_party/boost/boost/spirit/home/classic/dynamic/impl/
Dswitch.ipp312 template <typename ScannerT, typename CondT>
314 parse(ScannerT const& scan, CondT const &cond) const;
442 template <typename ScannerT, typename CondT>
447 parse(ScannerT const& scan, CondT const &cond) const
/third_party/boost/boost/spirit/home/classic/core/
Dtypeof.hpp100 template<typename CondT, bool positive> struct condition_parser;