Lines Matching refs:vector
31 std::vector<uint8_t> GetBinary() { return binary_data_; } in GetBinary()
33 void SetBinary(std::vector<uint8_t>& binary_data) { in SetBinary()
46 std::vector<std::string> GetStringArray() { return string_arr_; } in GetStringArray()
47 void SetStringArray(std::vector<std::string> string_arr) { string_arr_ = string_arr; } in SetStringArray()
48 std::vector<bool> GetBooleanArray() { return bool_arr_; } in GetBooleanArray()
49 void SetBooleanArray(std::vector<bool> bool_arr) { bool_arr_ = bool_arr; } in SetBooleanArray()
50 std::vector<double> GetDoubleArray() { return double_arr_; } in GetDoubleArray()
51 void SetDoubleArray(std::vector<double> double_arr) { double_arr_ = double_arr; } in SetDoubleArray()
52 std::vector<int64_t> GetInt64Array() { return int64_arr_; } in GetInt64Array()
53 void SetInt64Array(std::vector<int64_t> int64_arr) { int64_arr_ = int64_arr; } in SetInt64Array()
56 std::vector<uint8_t> binary_data_;
60 std::vector<std::string> string_arr_;
61 std::vector<bool> bool_arr_;
62 std::vector<double> double_arr_;
63 std::vector<int64_t> int64_arr_;