Searched refs:GetCount (Results 1 - 25 of 135) sorted by relevance

123456

/external/libchrome/base/metrics/
H A Dhistogram_delta_serialization_unittest.cc39 EXPECT_EQ(1, snapshot->GetCount(1));
40 EXPECT_EQ(1, snapshot->GetCount(10));
41 EXPECT_EQ(1, snapshot->GetCount(100));
42 EXPECT_EQ(1, snapshot->GetCount(1000));
49 EXPECT_EQ(2, snapshot2->GetCount(1));
50 EXPECT_EQ(2, snapshot2->GetCount(10));
51 EXPECT_EQ(2, snapshot2->GetCount(100));
52 EXPECT_EQ(2, snapshot2->GetCount(1000));
H A Dpersistent_sample_map_unittest.cc39 EXPECT_EQ(-100, samples.GetCount(1));
40 EXPECT_EQ(200, samples.GetCount(2));
56 EXPECT_EQ(-100, samples.GetCount(250000000));
57 EXPECT_EQ(200, samples.GetCount(500000000));
82 EXPECT_EQ(300, samples1.GetCount(1));
83 EXPECT_EQ(300, samples1.GetCount(2));
84 EXPECT_EQ(100, samples1.GetCount(3));
85 EXPECT_EQ(200, samples1.GetCount(4));
91 EXPECT_EQ(100, samples1.GetCount(1));
92 EXPECT_EQ(100, samples1.GetCount(
[all...]
H A Dsample_map_unittest.cc20 EXPECT_EQ(-100, samples.GetCount(1));
21 EXPECT_EQ(200, samples.GetCount(2));
34 EXPECT_EQ(-100, samples.GetCount(250000000));
35 EXPECT_EQ(200, samples.GetCount(500000000));
55 EXPECT_EQ(300, samples1.GetCount(1));
56 EXPECT_EQ(300, samples1.GetCount(2));
57 EXPECT_EQ(100, samples1.GetCount(3));
58 EXPECT_EQ(200, samples1.GetCount(4));
64 EXPECT_EQ(100, samples1.GetCount(1));
65 EXPECT_EQ(100, samples1.GetCount(
[all...]
H A Dhistogram_base_unittest.cc185 EXPECT_EQ(1, samples->GetCount(HISTOGRAM_REPORT_CREATED));
186 EXPECT_EQ(5, samples->GetCount(HISTOGRAM_REPORT_HISTOGRAM_CREATED));
187 EXPECT_EQ(0, samples->GetCount(HISTOGRAM_REPORT_HISTOGRAM_LOOKUP));
188 EXPECT_EQ(1, samples->GetCount(HISTOGRAM_REPORT_TYPE_LOGARITHMIC));
189 EXPECT_EQ(1, samples->GetCount(HISTOGRAM_REPORT_TYPE_LINEAR));
190 EXPECT_EQ(1, samples->GetCount(HISTOGRAM_REPORT_TYPE_BOOLEAN));
191 EXPECT_EQ(1, samples->GetCount(HISTOGRAM_REPORT_TYPE_CUSTOM));
192 EXPECT_EQ(1, samples->GetCount(HISTOGRAM_REPORT_TYPE_SPARSE));
204 EXPECT_EQ(1, samples->GetCount(HISTOGRAM_REPORT_CREATED));
205 EXPECT_EQ(9, samples->GetCount(HISTOGRAM_REPORT_HISTOGRAM_CREATE
[all...]
H A Dsparse_histogram_unittest.cc102 EXPECT_EQ(1, snapshot1->GetCount(100));
108 EXPECT_EQ(2, snapshot2->GetCount(100));
109 EXPECT_EQ(1, snapshot2->GetCount(101));
121 EXPECT_EQ(15, snapshot1->GetCount(100));
127 EXPECT_EQ(30, snapshot2->GetCount(100));
128 EXPECT_EQ(25, snapshot2->GetCount(101));
140 EXPECT_EQ(15, snapshot1->GetCount(1000000000));
146 EXPECT_EQ(30, snapshot2->GetCount(1000000000));
147 EXPECT_EQ(25, snapshot2->GetCount(1010000000));
173 EXPECT_EQ(2, samples->GetCount(10
[all...]
H A Dsample_map.h34 HistogramBase::Count GetCount(HistogramBase::Sample value) const override;
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dcpu_set_unittest.cc60 ASSERT_EQ(0, set.GetCount());
69 ASSERT_EQ(1, set.GetCount());
78 ASSERT_EQ(1, set.GetCount());
87 ASSERT_EQ(2, set.GetCount());
96 ASSERT_EQ(2, set.GetCount());
105 ASSERT_EQ(10, set.GetCount());
114 ASSERT_EQ(5, set.GetCount());
122 ASSERT_EQ(11, set1.GetCount());
128 ASSERT_EQ(9, set2.GetCount());
131 ASSERT_EQ(4, set1.GetCount());
[all...]
/external/pdfium/xfa/fxbarcode/qrcode/
H A DBC_QRCoderECB.cpp30 int32_t CBC_QRCoderECB::GetCount() { function in class:CBC_QRCoderECB
H A DBC_QRCoderECB.h20 int32_t GetCount();
H A DBC_QRCoderECBlocks.cpp52 total += m_ecBlocksArray[i]->GetCount();
/external/pdfium/core/fpdfdoc/
H A Dcpdf_numbertree.cpp22 for (size_t i = 0; i < pNumbers->GetCount() / 2; i++) {
36 for (size_t i = 0; i < pKids->GetCount(); i++) {
H A Dcpdf_iconfit.cpp38 uint32_t dwCount = pA->GetCount();
H A Dcpdf_nametree.h27 size_t GetCount() const;
H A Dcpdf_nametree.cpp42 size_t dwCount = pNames->GetCount() / 2;
65 for (size_t i = 0; i < pKids->GetCount(); i++) {
89 size_t nCount = pNames->GetCount() / 2;
102 for (size_t i = 0; i < pKids->GetCount(); i++) {
120 return pNames->GetCount() / 2;
127 for (size_t i = 0; i < pKids->GetCount(); i++) {
153 size_t CPDF_NameTree::GetCount() const { function in class:CPDF_NameTree
H A Dcpdf_docjsactions.cpp16 return name_tree.GetCount();
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_array_unittest.cpp23 EXPECT_EQ(FX_ArraySize(expected), arr->GetCount());
28 EXPECT_EQ(FX_ArraySize(expected2), arr->GetCount());
39 EXPECT_EQ(FX_ArraySize(elems), arr->GetCount());
43 EXPECT_EQ(FX_ArraySize(elems), arr->GetCount());
45 EXPECT_EQ(FX_ArraySize(elems), arr->GetCount());
55 EXPECT_EQ(FX_ArraySize(elems), arr->GetCount());
62 EXPECT_EQ(FX_ArraySize(expected), arr->GetCount());
75 EXPECT_EQ(11u, arr->GetCount());
92 EXPECT_EQ(arr->GetCount(), arr2->GetCount());
[all...]
/external/google-breakpad/src/common/
H A Dsimple_string_dictionary_unittest.cc75 EXPECT_EQ(dict.GetCount(), 3u);
98 EXPECT_EQ(2u, map.GetCount());
102 EXPECT_EQ(2u, map_copy.GetCount());
112 EXPECT_EQ(2u, map_assign.GetCount());
234 EXPECT_EQ(3u, map.GetCount());
241 EXPECT_EQ(2u, map.GetCount());
245 EXPECT_EQ(2u, map.GetCount());
249 EXPECT_EQ(1u, map.GetCount());
275 EXPECT_EQ(3u, deserialized.GetCount());
287 EXPECT_EQ(2u, map.GetCount());
[all...]
/external/pdfium/core/fxge/ge/
H A Dcfx_graphstate.cpp27 pData->SetDashCount(static_cast<int>(pArray->GetCount()));
28 for (size_t i = 0; i < pArray->GetCount(); i++)
/external/vixl/src/aarch64/
H A Dinstrument-aarch64.h61 uint64_t GetCount();
62 VIXL_DEPRECATED("GetCount", uint64_t count()) { return GetCount(); }
/external/google-breakpad/src/processor/
H A Dstatic_range_map.h82 inline int GetCount() const { return map_.size(); } function in class:google_breakpad::StaticRangeMap
H A Dstatic_range_map-inl.h109 if (index >= GetCount()) {
110 BPLOG(ERROR) << "Index out of range: " << index << "/" << GetCount();
/external/libchrome/base/trace_event/
H A Dtrace_event_memory_overhead.h50 size_t GetCount(const char* object_type) const;
/external/pdfium/xfa/fxfa/parser/
H A Dcxfa_layoutitem.h32 int32_t GetCount() const;
/external/google-benchmark/test/
H A Dfilter_test.cc30 size_t GetCount() const { return count_; } function in class:__anon6804::TestReporter
94 const size_t reports_count = test_reporter.GetCount();
/external/libcxx/utils/google-benchmark/test/
H A Dfilter_test.cc30 size_t GetCount() const { return count_; } function in class:__anon10431::TestReporter
94 const size_t reports_count = test_reporter.GetCount();

Completed in 1460 milliseconds

123456