Home
last modified time | relevance | path

Searched refs:constructor_count (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/native/libs/vr/libpdx/
H A Dvariant_tests.cpp437 ASSERT_EQ(0u, InstrumentType<int>::constructor_count()); in TEST()
449 EXPECT_EQ(0u, InstrumentType<int>::constructor_count()); in TEST()
460 EXPECT_EQ(0u, InstrumentType<int>::constructor_count()); in TEST()
472 EXPECT_EQ(2u, InstrumentType<int>::constructor_count()); in TEST()
483 EXPECT_EQ(2u, InstrumentType<int>::constructor_count()); in TEST()
497 EXPECT_EQ(3u, InstrumentType<int>::constructor_count()); in TEST()
511 EXPECT_EQ(2u, InstrumentType<int>::constructor_count()); in TEST()
523 EXPECT_EQ(2u, InstrumentType<int>::constructor_count()); in TEST()
528 EXPECT_EQ(2u, InstrumentType<int>::constructor_count()); in TEST()
538 EXPECT_EQ(1u, InstrumentType<int>::constructor_count()); in TEST()
[all …]
/aosp12/system/chre/util/tests/
H A Darray_queue_test.cc13 int constructor_count; variable
19 constructor_count++; in FakeElement()
23 constructor_count++; in FakeElement()
270 constructor_count = 0; in TEST()
274 EXPECT_EQ(1, constructor_count); in TEST()
278 EXPECT_EQ(2, constructor_count); in TEST()
282 EXPECT_EQ(2, constructor_count); in TEST()
/aosp12/art/runtime/native/
H A Djava_lang_Class.cc576 size_t constructor_count = 0; in Class_getDeclaredConstructorsInternal() local
579 constructor_count += MethodMatchesConstructor(&m, public_only, hiddenapi_context) ? 1u : 0u; in Class_getDeclaredConstructorsInternal()
582 soa.Self(), GetClassRoot<mirror::ObjectArray<mirror::Constructor>>(), constructor_count)); in Class_getDeclaredConstructorsInternal()
587 constructor_count = 0; in Class_getDeclaredConstructorsInternal()
598 h_constructors->SetWithoutChecks<false>(constructor_count++, constructor); in Class_getDeclaredConstructorsInternal()