Searched refs:cur_arg_ (Results 1 – 4 of 4) 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() 88 std::swap(cur_arg_, x.cur_arg_); in swap() 142 cur_arg_=0; dumped_=false; in clear() 145 for(; cur_arg_ < num_args_ && bound_[cur_arg_]; ++cur_arg_) in clear() 190 return cur_arg_; in fed_args() 192 for(int i=0; i<cur_arg_ ; ++i) in fed_args() [all …]
|
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() 290 if(self.items_[i].argN_ == self.cur_arg_) { in distribute() 302 ++self.cur_arg_; in feed_impl() 304 while( self.cur_arg_ < self.num_args_ && self.bound_[self.cur_arg_] ) in feed_impl() 305 ++self.cur_arg_; in feed_impl()
|
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 | 168 int cur_arg_; // keep track of wich argument is current member in boost::basic_format
|