/external/chromium_org/chrome/browser/search/ |
most_visited_iframe_source_unittest.cc | 41 EXPECT_EQ(1, samples1->TotalCount()); 48 EXPECT_EQ(samples1->TotalCount() + 1, samples2->TotalCount()); 56 EXPECT_EQ(samples2->TotalCount() + 2, samples3->TotalCount()); 65 EXPECT_EQ(samples2->TotalCount() + 2, samples3->TotalCount()); 84 EXPECT_EQ(1, samples1->TotalCount()); 91 EXPECT_EQ(samples1->TotalCount() + 1, samples2->TotalCount()); [all...] |
/external/chromium_org/base/metrics/ |
sample_map_unittest.cc | 22 EXPECT_EQ(100, samples.TotalCount()); 23 EXPECT_EQ(samples.redundant_count(), samples.TotalCount()); 44 EXPECT_EQ(900, samples1.TotalCount()); 45 EXPECT_EQ(samples1.redundant_count(), samples1.TotalCount()); 53 EXPECT_EQ(300, samples1.TotalCount()); 54 EXPECT_EQ(samples1.redundant_count(), samples1.TotalCount());
|
sample_vector_unittest.cc | 35 EXPECT_EQ(samples.TotalCount(), samples.redundant_count()); 42 EXPECT_EQ(samples.TotalCount(), samples.redundant_count()); 59 EXPECT_EQ(300, samples1.TotalCount()); 60 EXPECT_EQ(samples1.redundant_count(), samples1.TotalCount()); 67 EXPECT_EQ(600, samples2.TotalCount()); 68 EXPECT_EQ(samples2.redundant_count(), samples2.TotalCount()); 76 EXPECT_EQ(900, samples1.TotalCount()); 77 EXPECT_EQ(samples1.redundant_count(), samples1.TotalCount()); 85 EXPECT_EQ(300, samples1.TotalCount()); 86 EXPECT_EQ(samples1.redundant_count(), samples1.TotalCount()); [all...] |
sparse_histogram_unittest.cc | 50 EXPECT_EQ(0, snapshot->TotalCount()); 55 EXPECT_EQ(1, snapshot1->TotalCount()); 61 EXPECT_EQ(3, snapshot2->TotalCount()); 82 EXPECT_EQ(3, samples->TotalCount());
|
histogram_samples.h | 28 virtual HistogramBase::Count TotalCount() const = 0; 57 // this count to the sum of the counts (TotalCount() function), and detect
|
sample_map.h | 30 virtual HistogramBase::Count TotalCount() const OVERRIDE;
|
histogram_snapshot_manager.cc | 97 if (to_log->TotalCount() > 0) 105 logged_samples->TotalCount() - logged_samples->redundant_count();
|
sample_map.cc | 33 Count SampleMap::TotalCount() const {
|
sample_vector.h | 33 virtual HistogramBase::Count TotalCount() const OVERRIDE;
|
/external/chromium_org/chrome/browser/resources/sync_internals/ |
notifications.html | 21 <td jscontent='totalCount'></td>
|
notifications.js | 20 // totalCount: Number of notifications received since browser start. 49 // notificationInfo[k] has values for the totalCount and payload keys,
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
PrerenderingTest.cpp | 128 size_t totalCount() const 266 EXPECT_EQ(1u, prerenderingSupport()->totalCount()); 293 EXPECT_EQ(1u, prerenderingSupport()->totalCount()); 298 EXPECT_EQ(2u, prerenderingSupport()->totalCount()); 309 EXPECT_EQ(1u, prerenderingSupport()->totalCount()); 314 EXPECT_EQ(2u, prerenderingSupport()->totalCount()); 319 EXPECT_EQ(2u, prerenderingSupport()->totalCount()); 366 EXPECT_EQ(2u, prerenderingSupport()->totalCount()); 386 EXPECT_EQ(2u, prerenderingSupport()->totalCount()); 391 EXPECT_EQ(3u, prerenderingSupport()->totalCount()); [all...] |
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
VertexDataManager.cpp | 138 int totalCount = elementsInBuffer(attribs[i], buffer->size()); 139 if (!staticBuffer->reserveVertexSpace(attribs[i], totalCount, 0)) 147 int totalCount = StreamingBufferElementCount(attribs[i], count, instances); 151 if (buffer && elementsInBuffer(attribs[i], buffer->size()) < totalCount) 156 if (!mStreamingBuffer->reserveVertexSpace(attribs[i], totalCount, instances)) 206 int totalCount = elementsInBuffer(attribs[i], storage->getSize()); 209 if (!staticBuffer->storeVertexAttributes(attribs[i], -startIndex, totalCount, 0, &streamOffset)) 226 int totalCount = StreamingBufferElementCount(attribs[i], count, instances); 228 !mStreamingBuffer->storeVertexAttributes(attribs[i], start, totalCount, instances, &streamOffset))
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/ |
SinkChannelTest.java | 87 int totalCount = 0; 91 totalCount += count; 93 } while (totalCount != BUFFER_SIZE && !isBlocking); 129 long totalCount = 0; 135 totalCount += count; 136 } while (totalCount != (THREAD_NUM * BUFFER_SIZE)); 196 int totalCount = 0; 202 totalCount += count; 203 } while (totalCount != BUFFER_SIZE && !isBlocking); 293 int totalCount = 0 [all...] |
/external/doclava/res/assets/templates/ |
todo.cs | 37 <tr><th>Total Comments</th><td><?cs var:all.totalCount ?></td></tr> 54 <td><?cs var:pkg.totalCount ?></td> 74 <td><?cs var:cl.totalCount ?></td> 84 Total: <?cs var:cl.totalCount ?><br/>
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
check-dom-results | 55 my $totalCount = 0; 128 $totalCount += $count; 135 my $totalPercentage = (sprintf "%.1f", ($totalSuccesses * 100.0 / $totalCount)); 136 my $totalDisabledPercentage = (sprintf "%.1f", ($totalDisabled * 100.0 / $totalCount)); 137 my $totalFailedPercentage = (sprintf "%.1f", ($totalFailed * 100.0 / $totalCount)); 139 print "Total: ${totalSuccesses} out of ${totalCount} tests succeeded (${totalPercentage}%)\n";
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/ |
NotificationImportExportListener.java | 94 int totalCount) { 99 final String totalCountString = String.valueOf(totalCount); 110 jobId, request.displayName, totalCount, currentCount); 192 * @param totalCount The number of vCard entries to be imported. Used to show progress bar. 198 int jobId, String displayName, int totalCount, int currentCount) { 218 .setProgress(totalCount, currentCount, totalCount == - 1) 225 if (totalCount > 0) { 227 String.valueOf(currentCount * 100 / totalCount)));
|
VCardImportExportListener.java | 26 int totalCount);
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
AlbumSetSlidingWindow.java | 82 public int totalCount; 240 AlbumSetEntry entry, String title, int totalCount, int sourceType) { 242 || entry.totalCount != totalCount 249 int totalCount = mSource.getTotalCount(slotIndex); 259 if (isLabelChanged(entry, title, totalCount, sourceType)) { 261 entry.totalCount = totalCount; 270 slotIndex, title, totalCount, sourceType); 486 int slotIndex, String title, int totalCount, int sourceType) [all...] |
/external/skia/tools/lua/ |
glyph-usage.lua | 116 local totalCount = 0 131 totalCount = totalCount + count 136 local ave = round(totalCount / strikeCount)
|
/external/chromium_org/components/precache/core/ |
precache_database_unittest.cc | 111 EXPECT_EQ(1, delta_samples->TotalCount()); 118 EXPECT_EQ(0, delta_samples->TotalCount()); 356 EXPECT_EQ(5, downloaded_precache_motivated_bytes->TotalCount()); 364 EXPECT_EQ(3, downloaded_non_precache_bytes->TotalCount()); 370 EXPECT_EQ(2, downloaded_non_precache_bytes_cellular->TotalCount()); 376 EXPECT_EQ(2, saved_bytes->TotalCount()); 382 EXPECT_EQ(1, saved_bytes_cellular->TotalCount());
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
SlideshowPage.java | 283 private void generateOrderArray(int totalCount) { 284 if (mOrder.length != totalCount) { 285 mOrder = new int[totalCount]; 286 for (int i = 0; i < totalCount; ++i) { 290 for (int i = totalCount - 1; i > 0; --i) { 293 if (mOrder[0] == mLastIndex && totalCount > 1) { 294 Utils.swap(mOrder, 0, mRandom.nextInt(totalCount - 1) + 1);
|
/frameworks/av/media/libstagefright/rtsp/ |
AAVCAssembler.cpp | 216 size_t totalCount = 1; 228 ALOGV("sequence length %d", totalCount); 251 for (size_t i = 0; i <= totalCount; ++i) { 261 ++totalCount; 294 for (size_t i = 0; i < totalCount; ++i) { 297 ALOGV("piece #%d/%d", i + 1, totalCount);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
AllocationProfile.js | 122 if (info.totalCount === 0) 128 info.totalCount, 266 this.totalCount = 0; 277 this.totalCount += node.allocationCount;
|
/external/doclava/src/com/google/doclava/ |
TodoFile.java | 153 data.setValue(classBase + ".totalCount", "" + total); 178 data.setValue("packages." + i + ".totalCount", "" + ps.total); 188 data.setValue("all.totalCount", "" + allTotal);
|