HomeSort by relevance Sort by last modified time
    Searched refs:count_ (Results 1 - 18 of 18) sorted by null

  /external/chromium/base/
debug_util.cc 22 *count = count_;
23 if (count_)
debug_util.h 54 int count_; member in class:StackTrace
debug_util_win.cc 227 count_ = CaptureStackBackTrace(0, arraysize(trace_), trace_, NULL);
232 count_ = 0;
259 count_ < arraysize(trace_)) {
260 trace_[count_++] = reinterpret_cast<void*>(stack_frame.AddrPC.Offset);
274 for (int i = 0; (i < count_) && os->good(); ++i) {
279 context->OutputTraceToStream(trace_, count_, os);
debug_util_posix.cc 246 count_ = 0;
252 count_ = std::max(backtrace(trace_, arraysize(trace_)), 0);
262 GetBacktraceStrings(trace_, count_, &trace_strings);
274 if (GetBacktraceStrings(trace_, count_, &trace_strings)) {
tracked_objects.h 214 DeathData() : count_(0), square_duration_(0) {}
219 explicit DeathData(int count) : count_(count), square_duration_(0) {}
224 int count() const { return count_; }
240 int count_; // Number of destructions. member in class:tracked_objects::DeathData
tracked_objects.cc 29 ++count_;
36 return static_cast<int>(life_duration_.InMilliseconds() / count_);
41 double variance = static_cast<float>(square_duration_)/count_
48 count_ += other.count_;
54 if (!count_)
56 if (1 == count_)
59 StringAppendF(output, "(%d)Lives %dms/life ", count_, AverageMsDuration());
63 count_ = 0;
  /external/svox/pico/lib/
picodsp.h 89 int count_ = (aCount); \
90 int times_ = (count_ + 7) >> 3; \
91 switch (count_ & 7){ \
  /external/qemu/elff/
dwarf_defs.h 720 : count_(0),
751 if (num <= count_) {
757 assert(num == (count_ + 1));
758 if (num != (count_ + 1)) {
780 memcpy(new_array, array_, count_ * sizeof(const Dwarf_Abbr_DIE*));
790 count_++;
812 assert(num != 0 && num <= count_);
813 if (num != 0 && num <= count_) {
833 const Dwarf_Abbr_DIE* cur_abbr = get(count_);
844 while (num > count_) {
890 Dwarf_AbbrNum count_; member in class:DwarfAbbrDieArray
    [all...]
  /external/v8/test/cctest/
cctest.h 136 count_++;
138 static int count() { return count_; }
154 static int count_; member in class:RegisterThreadedTest
cctest.cc 126 int RegisterThreadedTest::count_ = 0; member in class:RegisterThreadedTest
  /external/v8/src/
d8.h 46 int32_t* ptr() { return &count_; }
47 int32_t count() { return count_; }
52 int32_t count_; member in class:v8::Counter
d8.cc 316 count_++;
  /external/gtest/test/
gtest-param-test_test.cc 732 SeparateInstanceTest() : count_(0) {}
743 int count_; member in class:SeparateInstanceTest
749 EXPECT_EQ(0, count_++);
gtest_unittest.cc 4072 static int count_; member in class:__anon3717::TestLifeCycleTest
4075 int TestLifeCycleTest::count_ = 0; member in class:__anon3717::TestLifeCycleTest
    [all...]
  /external/protobuf/gtest/test/
gtest-param-test_test.cc 732 SeparateInstanceTest() : count_(0) {}
743 int count_; member in class:SeparateInstanceTest
749 EXPECT_EQ(0, count_++);
gtest_unittest.cc 4933 static int count_; member in class:__anon5559::TestLifeCycleTest
4936 int TestLifeCycleTest::count_ = 0; member in class:__anon5559::TestLifeCycleTest
    [all...]
  /external/chromium/third_party/icu/source/tools/ctestfw/
udbgutil.cpp 18 4. Each enum type has three things in this section: a #define, a count_, and an array of Fields.
23 6. Define the 'count_' variable, with the number of enum values. If the enum has a _MAX or _COUNT value,
199 #define COUNT_CASE(x) case UDBG_##x: return (actual?count_##x:DBG_ARRAY_COUNT(names_##x));
  /external/icu4c/tools/ctestfw/
udbgutil.cpp 18 4. Each enum type has three things in this section: a #define, a count_, and an array of Fields.
23 6. Define the 'count_' variable, with the number of enum values. If the enum has a _MAX or _COUNT value,
221 #define COUNT_CASE(x) case UDBG_##x: return (actual?count_##x:DBG_ARRAY_COUNT(names_##x));

Completed in 945 milliseconds