Lines Matching defs:acVector
39 ArrayConstructorVector *acVector{cookieAllocator.allocate(1)};
40 ASSERT_TRUE(acVector);
46 (*acVector, result, /*useValueLengthParameters=*/false);
48 RTNAME(PushArrayConstructorSimpleScalar)(*acVector, &i);
49 RTNAME(PushArrayConstructorValue)(*acVector, *x);
50 RTNAME(PushArrayConstructorValue)(*acVector, *y);
65 static_cast<std::size_t>(acVector->actualAllocationSize));
73 (*acVector, result, /*useValueLengthParameters=*/false);
74 EXPECT_EQ(0, acVector->actualAllocationSize);
76 RTNAME(PushArrayConstructorSimpleScalar)(*acVector, &i);
78 EXPECT_EQ(1234, acVector->actualAllocationSize);
81 cookieAllocator.deallocate(acVector, 1);
102 ArrayConstructorVector *acVector{cookieAllocator.allocate(1)};
103 ASSERT_TRUE(acVector);
110 (*acVector, result, /*useValueLengthParameters=*/true);
112 RTNAME(PushArrayConstructorValue)(*acVector, *c);
113 RTNAME(PushArrayConstructorValue)(*acVector, *x);
114 RTNAME(PushArrayConstructorValue)(*acVector, *y);
120 static_cast<std::size_t>(acVector->actualAllocationSize));
129 cookieAllocator.deallocate(acVector, 1);
149 ArrayConstructorVector *acVector{cookieAllocator.allocate(1)};
150 ASSERT_TRUE(acVector);
154 (*acVector, result, /*useValueLengthParameters=*/true);
155 RTNAME(PushArrayConstructorValue)(*acVector, *c2);
156 ASSERT_DEATH(RTNAME(PushArrayConstructorValue)(*acVector, *c3),