Lines Matching refs:valueUnion

60             value->valueUnion.b_ = other.valueUnion.b_;  in InitValueByBaseType()
63 value->valueUnion.c_ = other.valueUnion.c_; in InitValueByBaseType()
66 value->valueUnion.sh_ = other.valueUnion.sh_; in InitValueByBaseType()
69 value->valueUnion.i_ = other.valueUnion.i_; in InitValueByBaseType()
72 value->valueUnion.ll_ = other.valueUnion.ll_; in InitValueByBaseType()
75 value->valueUnion.f_ = other.valueUnion.f_; in InitValueByBaseType()
78 value->valueUnion.d_ = other.valueUnion.d_; in InitValueByBaseType()
93 new (&value->valueUnion.str_) auto(other.valueUnion.str_); in InitValueByReferType()
96 new (&value->valueUnion.bs_) auto(other.valueUnion.bs_); in InitValueByReferType()
99 new (&value->valueUnion.cs_) auto(other.valueUnion.cs_); in InitValueByReferType()
102 new (&value->valueUnion.shs_) auto(other.valueUnion.shs_); in InitValueByReferType()
105 new (&value->valueUnion.is_) auto(other.valueUnion.is_); in InitValueByReferType()
108 new (&value->valueUnion.lls_) auto(other.valueUnion.lls_); in InitValueByReferType()
111 new (&value->valueUnion.fs_) auto(other.valueUnion.fs_); in InitValueByReferType()
114 new (&value->valueUnion.ds_) auto(other.valueUnion.ds_); in InitValueByReferType()
117 new (&value->valueUnion.strs_) auto(other.valueUnion.strs_); in InitValueByReferType()
183 return GetValueStr(value.valueUnion.b_); in GetBoolParamValueStr()
188 return GetValueStr(value.valueUnion.c_); in GetCharParamValueStr()
193 return GetValueStr(value.valueUnion.sh_); in GetShortParamValueStr()
198 return GetValueStr(value.valueUnion.i_); in GetIntParamValueStr()
203 return GetValueStr(value.valueUnion.ll_); in GetLongParamValueStr()
208 return GetValueStr(value.valueUnion.f_); in GetFloatParamValueStr()
213 return GetValueStr(value.valueUnion.d_); in GetDoubleParamValueStr()
218 return GetValueStr(value.valueUnion.str_); in GetStrParamValueStr()
223 return GetValuesStr(value.valueUnion.bs_); in GetBoolsParamValueStr()
228 return GetValuesStr(value.valueUnion.cs_); in GetCharsParamValueStr()
233 return GetValuesStr(value.valueUnion.shs_); in GetShortsParamValueStr()
238 return GetValuesStr(value.valueUnion.is_); in GetIntsParamValueStr()
243 return GetValuesStr(value.valueUnion.lls_); in GetLongsParamValueStr()
248 return GetValuesStr(value.valueUnion.fs_); in GetFloatsParamValueStr()
253 return GetValuesStr(value.valueUnion.ds_); in GetDoublesParamValueStr()
258 return GetValuesStr(value.valueUnion.strs_); in GetStrsParamValueStr()
292 AppEventParamValue::AppEventParamValue(AppEventParamType t) : type(t), valueUnion(t) in AppEventParamValue()
308 valueUnion.str_.~basic_string(); in ~AppEventParamValue()
311 valueUnion.bs_.~vector(); in ~AppEventParamValue()
314 valueUnion.cs_.~vector(); in ~AppEventParamValue()
317 valueUnion.shs_.~vector(); in ~AppEventParamValue()
320 valueUnion.is_.~vector(); in ~AppEventParamValue()
323 valueUnion.lls_.~vector(); in ~AppEventParamValue()
326 valueUnion.fs_.~vector(); in ~AppEventParamValue()
329 valueUnion.ds_.~vector(); in ~AppEventParamValue()
332 valueUnion.strs_.~vector(); in ~AppEventParamValue()
403 appEventParam.value.valueUnion.b_ = b; in AddParam()
410 appEventParam.value.valueUnion.c_ = c; in AddParam()
417 appEventParam.value.valueUnion.sh_ = static_cast<int16_t>(num); in AddParam()
424 appEventParam.value.valueUnion.sh_ = s; in AddParam()
431 appEventParam.value.valueUnion.i_ = i; in AddParam()
438 appEventParam.value.valueUnion.ll_ = ll; in AddParam()
445 appEventParam.value.valueUnion.f_ = f; in AddParam()
452 appEventParam.value.valueUnion.d_ = d; in AddParam()
459 appEventParam.value.valueUnion.str_ = s; in AddParam()
466 appEventParam.value.valueUnion.str_ = s; in AddParam()
473 appEventParam.value.valueUnion.bs_.assign(bs.begin(), bs.end()); in AddParam()
480 appEventParam.value.valueUnion.cs_.assign(cs.begin(), cs.end()); in AddParam()
487 appEventParam.value.valueUnion.shs_.assign(shs.begin(), shs.end()); in AddParam()
494 appEventParam.value.valueUnion.shs_.assign(shs.begin(), shs.end()); in AddParam()
501 appEventParam.value.valueUnion.is_.assign(is.begin(), is.end()); in AddParam()
508 appEventParam.value.valueUnion.lls_.assign(lls.begin(), lls.end()); in AddParam()
515 appEventParam.value.valueUnion.fs_.assign(fs.begin(), fs.end()); in AddParam()
522 appEventParam.value.valueUnion.ds_.assign(ds.begin(), ds.end()); in AddParam()
537 appEventParam.value.valueUnion.strs_.assign(strs.begin(), strs.end()); in AddParam()
544 appEventParam.value.valueUnion.strs_.assign(strs.begin(), strs.end()); in AddParam()