Lines Matching refs:ft_arr
259 Formattable ft_arr( ftarray, ft_cnt ); in test_Formattable() local
261 if ((ft_arr[0].getType() == Formattable::kDate) && (ft_arr[0].getDate() == 1.0) in test_Formattable()
262 && (ft_arr[1].getType() == Formattable::kDouble) && (ft_arr[1].getDouble() == 2.0) in test_Formattable()
263 && (ft_arr[2].getType() == Formattable::kLong) && (ft_arr[2].getLong() == (int32_t)3) in test_Formattable()
264 && (ft_arr[3].getType() == Formattable::kString) && (ft_arr[3].getString(temp) == ucs) in test_Formattable()
265 && (ft_arr[4].getType() == Formattable::kString) && (ft_arr[4].getString(temp) == *ucs_ptr) ) { in test_Formattable()
272 const Formattable* res_array = ft_arr.getArray( res_cnt ); in test_Formattable()
282 res_array = ft_arr.getArray( res_cnt, status = U_ZERO_ERROR); in test_Formattable()
322 ft_arr.setArray( ftarr1, ftarr1_cnt ); in test_Formattable()
323 if ((ft_arr[0].getType() == Formattable::kLong) && (ft_arr[0].getLong() == (int32_t)1)) { in test_Formattable()
340 ft_arr.adoptArray( ft_dynarr, ftarr2_cnt ); in test_Formattable()
341 if ((ft_arr[0].getType() == Formattable::kLong) && (ft_arr[0].getLong() == (int32_t)3) in test_Formattable()
342 && (ft_arr[1].getType() == Formattable::kLong) && (ft_arr[1].getLong() == (int32_t)4)) { in test_Formattable()
348 ft_arr.setLong(0); // calls 'dispose' and deletes adopted array ! in test_Formattable()