Searched refs:num_args_ (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/boost/format/ |
D | format_implementation.hpp | 29 : style_(0), cur_arg_(0), num_args_(0), dumped_(false), in basic_format() 39 : style_(0), cur_arg_(0), num_args_(0), dumped_(false), in basic_format() 47 : style_(0), cur_arg_(0), num_args_(0), dumped_(false), in basic_format() 61 : style_(0), cur_arg_(0), num_args_(0), dumped_(false), in basic_format() 70 cur_arg_(x.cur_arg_), num_args_(x.num_args_), dumped_(x.dumped_), in basic_format() 89 std::swap(num_args_, x.num_args_); in swap() 135 BOOST_ASSERT( bound_.size()==0 || num_args_ == static_cast<int>(bound_.size()) ); in clear() 145 for(; cur_arg_ < num_args_ && bound_[cur_arg_]; ++cur_arg_) in clear() 164 if(argN<1 || argN > num_args_ || bound_.size()==0 || !bound_[argN-1] ) { in clear_bind() 166 boost::throw_exception(io::out_of_range(argN, 1, num_args_+1 ) ); in clear_bind() [all …]
|
D | free_funcs.hpp | 47 if(f.cur_arg_ < f.num_args_) in operator <<() 50 boost::throw_exception(io::too_few_args(f.cur_arg_, f.num_args_)); in operator <<()
|
D | format_class.hpp | 97 { return num_args_; } in expected_args() 169 int num_args_; // number of expected arguments member in boost::basic_format
|
D | feed_args.hpp | 284 if(self.cur_arg_ >= self.num_args_) { in distribute() 286 boost::throw_exception(too_many_args(self.cur_arg_, self.num_args_)); in distribute() 304 while( self.cur_arg_ < self.num_args_ && self.bound_[self.cur_arg_] ) in feed_impl()
|
D | parsing.hpp | 555 num_args_ = max_argN + 1; in parse()
|