Lines Matching defs:str_encoder_t
38 struct str_encoder_t struct
40 str_encoder_t (str_buff_t &buff_) in str_encoder_t() argument
43 void reset () { buff.resize (0); } in reset()
45 void encode_byte (unsigned char b) in encode_byte()
51 void encode_int (int v) in encode_int()
82 void encode_num (const number_t& n) in encode_num()
99 void encode_op (op_code_t op) in encode_op()
110 void copy_str (const byte_str_t &str) in copy_str()
122 bool is_error () const { return error; } in is_error()
125 void set_error () { error = true; } in set_error()
127 str_buff_t &buff;
128 bool error;