Searched defs:object_count (Results 1 - 6 of 6) sorted by relevance

/external/eigen/test/
H A Dctorleak.cpp7 static Index object_count; member in struct:Foo
15 if (Foo::object_count > Foo::object_limit) { std::cout << "\nThrow!\n"; throw Foo::Fail(); }
18 ++Foo::object_count; member in class:Foo::Foo
24 --Foo::object_count;
30 Index Foo::object_count = 0; member in class:Foo
40 Foo::object_count = 0; member in class:Foo
56 VERIFY_IS_EQUAL(Index(0), Foo::object_count); member in class:Foo
61 VERIFY_IS_EQUAL(Foo::object_count, rows*cols);
63 VERIFY_IS_EQUAL(Foo::object_count, (rows+1)*cols);
65 VERIFY_IS_EQUAL(Foo::object_count, row
67 VERIFY_IS_EQUAL(Index(0), Foo::object_count); member in class:Foo
[all...]
/external/google-breakpad/src/processor/
H A Drange_map_unittest.cc274 int object_count = range_map->GetCount(); local
275 for (int object_index = 0; object_index < object_count; ++object_index) {
317 if (range_map->RetrieveRangeAtIndex(object_count, &object, NULL, NULL)) {
320 set, object_count);
343 int object_count = range_map->GetCount(); local
344 for (int object_index = 0; object_index < object_count; ++object_index) {
H A Dstatic_range_map_unittest.cc316 int object_count = range_map->GetCount(); local
317 for (int object_index = 0; object_index < object_count; ++object_index) {
346 object_count, entry, NULL, NULL)) << "FAILED: RetrieveRangeAtIndex set "
347 << set << " index " << object_count local
/external/vulkan-validation-layers/demos/smoke/
H A DSimulation.cpp282 Simulation::Simulation(int object_count) argument
288 objects_.reserve(object_count);
289 for (int i = 0; i < object_count; i++) {
294 type, glm::vec3(0.5f + 0.5f * (float)i / object_count),
/external/v8/include/
H A Dv8.h5996 size_t object_count() { return object_count_; } function in class:v8::HeapObjectStatistics
/external/v8/src/
H A Dapi.cc8135 size_t object_count = heap->ObjectCountAtLastGC(type_index); local
8139 DCHECK_EQ(object_count, 0U);
8146 object_statistics->object_count_ = object_count;

Completed in 241 milliseconds