Home
last modified time | relevance | path

Searched refs:gCounter (Results 1 – 8 of 8) sorted by relevance

/external/libcxxabi/test/
Dtest_vector1.pass.cpp41 int gCounter; variable
42 void count_construct ( void * ) { ++gCounter; } in count_construct()
43 void count_destruct ( void * ) { --gCounter; } in count_destruct()
125 gCounter = 0; in test_counted()
136 if ( gCounter != 30 ) { in test_counted()
138 std::cerr << " Expected 30, got " << gCounter << std::endl; in test_counted()
142 gCounter = 0; in test_counted()
151 if ( gCounter != 0 ) { in test_counted()
153 std::cerr << " Expected 0, got " << gCounter << std::endl; in test_counted()
Dtest_vector2.pass.cpp44 int gCounter; variable
45 void count_construct ( void * ) { ++gCounter; } in count_construct()
46 void count_destruct ( void * ) { --gCounter; } in count_destruct()
Dnoexception1.pass.cpp22 unsigned gCounter = 0; variable
34 __cxxabiv1::__cxa_increment_exception_refcount((void*) &gCounter); in main()
Dnoexception2.pass.cpp22 unsigned gCounter = 0; variable
34 __cxxabiv1::__cxa_decrement_exception_refcount((void*) &gCounter); in main()
Dnoexception3.pass.cpp22 unsigned gCounter = 0; variable
34 __cxxabiv1::__cxa_rethrow_primary_exception((void*) &gCounter); in main()
/external/skia/tests/
DTLSTest.cpp46 static std::atomic<int> gCounter{0}; variable
49 gCounter++; in fake_create_TLS()
53 gCounter--; in fake_delete_TLS()
67 REPORTER_ASSERT(reporter, 0 == gCounter.load()); in DEF_TEST()
/external/skqp/tests/
DTLSTest.cpp46 static std::atomic<int> gCounter{0}; variable
49 gCounter++; in fake_create_TLS()
53 gCounter--; in fake_delete_TLS()
67 REPORTER_ASSERT(reporter, 0 == gCounter.load()); in DEF_TEST()
/external/chromium-libpac/test/js-unittest/
Dside_effects.js1 if (!gCounter) {
4 var gCounter = 0; variable
8 return "PROXY sideffect_" + gCounter++;