Lines Matching refs:mArStruct
3162 auto mArStruct = p->mutable_a(); in FixedLengthArrayTest() local
3163 TEST_NOTNULL(mArStruct); in FixedLengthArrayTest()
3164 TEST_NOTNULL(mArStruct->b()); in FixedLengthArrayTest()
3165 TEST_NOTNULL(mArStruct->d()); in FixedLengthArrayTest()
3166 TEST_NOTNULL(mArStruct->f()); in FixedLengthArrayTest()
3167 TEST_NOTNULL(mArStruct->mutable_b()); in FixedLengthArrayTest()
3168 TEST_NOTNULL(mArStruct->mutable_d()); in FixedLengthArrayTest()
3169 TEST_NOTNULL(mArStruct->mutable_f()); in FixedLengthArrayTest()
3170 mArStruct->mutable_b()->Mutate(14, -14); in FixedLengthArrayTest()
3171 TEST_EQ(mArStruct->a(), 2); in FixedLengthArrayTest()
3172 TEST_EQ(mArStruct->b()->size(), 15); in FixedLengthArrayTest()
3173 TEST_EQ(mArStruct->b()->Get(aStruct.b()->size() - 1), -14); in FixedLengthArrayTest()
3174 TEST_EQ(mArStruct->c(), 12); in FixedLengthArrayTest()
3175 TEST_NOTNULL(mArStruct->d()->Get(0)); in FixedLengthArrayTest()
3176 TEST_NOTNULL(mArStruct->d()->Get(0)->a()); in FixedLengthArrayTest()
3177 TEST_EQ(mArStruct->d()->Get(0)->a()->Get(0), 1); in FixedLengthArrayTest()
3178 TEST_EQ(mArStruct->d()->Get(0)->a()->Get(1), 2); in FixedLengthArrayTest()
3179 TEST_NOTNULL(mArStruct->d()->Get(1)); in FixedLengthArrayTest()
3180 TEST_NOTNULL(mArStruct->d()->Get(1)->a()); in FixedLengthArrayTest()
3181 TEST_EQ(mArStruct->d()->Get(1)->a()->Get(0), 3); in FixedLengthArrayTest()
3182 TEST_EQ(mArStruct->d()->Get(1)->a()->Get(1), 4); in FixedLengthArrayTest()
3183 TEST_NOTNULL(mArStruct->mutable_d()->GetMutablePointer(1)); in FixedLengthArrayTest()
3184 TEST_NOTNULL(mArStruct->mutable_d()->GetMutablePointer(1)->mutable_a()); in FixedLengthArrayTest()
3185 mArStruct->mutable_d()->GetMutablePointer(1)->mutable_a()->Mutate(1, 5); in FixedLengthArrayTest()
3186 TEST_EQ(5, mArStruct->d()->Get(1)->a()->Get(1)); in FixedLengthArrayTest()
3187 TEST_EQ(MyGame::Example::TestEnum::B, mArStruct->d()->Get(0)->b()); in FixedLengthArrayTest()
3188 TEST_NOTNULL(mArStruct->d()->Get(0)->c()); in FixedLengthArrayTest()
3189 TEST_EQ(MyGame::Example::TestEnum::C, mArStruct->d()->Get(0)->c()->Get(0)); in FixedLengthArrayTest()
3190 TEST_EQ(MyGame::Example::TestEnum::A, mArStruct->d()->Get(0)->c()->Get(1)); in FixedLengthArrayTest()
3192 mArStruct->d()->Get(0)->d()->Get(0)); in FixedLengthArrayTest()
3194 mArStruct->d()->Get(0)->d()->Get(1)); in FixedLengthArrayTest()
3195 TEST_EQ(MyGame::Example::TestEnum::C, mArStruct->d()->Get(1)->b()); in FixedLengthArrayTest()
3196 TEST_NOTNULL(mArStruct->d()->Get(1)->c()); in FixedLengthArrayTest()
3197 TEST_EQ(MyGame::Example::TestEnum::C, mArStruct->d()->Get(1)->c()->Get(0)); in FixedLengthArrayTest()
3198 TEST_EQ(MyGame::Example::TestEnum::A, mArStruct->d()->Get(1)->c()->Get(1)); in FixedLengthArrayTest()
3200 mArStruct->d()->Get(1)->d()->Get(0)); in FixedLengthArrayTest()
3202 mArStruct->d()->Get(1)->d()->Get(1)); in FixedLengthArrayTest()
3203 for (int i = 0; i < mArStruct->b()->size() - 1; i++) in FixedLengthArrayTest()
3204 TEST_EQ(mArStruct->b()->Get(i), i + 1); in FixedLengthArrayTest()
3206 TEST_EQ(0, reinterpret_cast<uintptr_t>(mArStruct->d()) % 8); in FixedLengthArrayTest()
3207 TEST_EQ(0, reinterpret_cast<uintptr_t>(mArStruct->f()) % 8); in FixedLengthArrayTest()