Searched refs:repeatedLongValue (Results 1 – 8 of 8) sorted by relevance
164 case VendorAtomValue::repeatedLongValue: { in reportVendorAtom()165 const std::optional<std::vector<int64_t>>& repeatedLongValue = in reportVendorAtom() local166 atomValue.get<VendorAtomValue::repeatedLongValue>(); in reportVendorAtom()167 if (!repeatedLongValue) { in reportVendorAtom()171 AStatsEvent_writeInt64Array(event, repeatedLongValue->data(), in reportVendorAtom()172 repeatedLongValue->size()); in reportVendorAtom()
62 std::vector<int64_t> repeatedLongValue = {500000, 430000, 1000001}; in buildVendorAtom() local63 tmp.set<VendorAtomValue::repeatedLongValue>(repeatedLongValue); in buildVendorAtom()
67 std::vector<int64_t> repeatedLongValue = {500000, 430000, 1000001}; in TEST_P() local68 tmp.set<VendorAtomValue::repeatedLongValue>(repeatedLongValue); in TEST_P()
29 @nullable long[] repeatedLongValue;
43 @nullable long[] repeatedLongValue;
131 atom.values[6] = VendorAtomValue.repeatedLongValue(new long[] {11000L, 12000L, 13000L}); in testReportVendorAtomRepeated()
176 EXPECT_EQ(atom.values[8].get<VendorAtomValue::repeatedLongValue>(), repeatedLong); in TEST()