Home
last modified time | relevance | path

Searched refs:totalCount (Results 1 – 9 of 9) sorted by relevance

/external/webkit/Tools/Scripts/
Dcheck-dom-results55 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";
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
DSinkChannelTest.java87 int totalCount = 0; in test_write_LByteBuffer() local
91 totalCount += count; in test_write_LByteBuffer()
93 } while (totalCount != BUFFER_SIZE && !isBlocking); in test_write_LByteBuffer()
129 long totalCount = 0; in test_write_LByteBuffer_mutliThread() local
135 totalCount += count; in test_write_LByteBuffer_mutliThread()
136 } while (totalCount != (THREAD_NUM * BUFFER_SIZE)); in test_write_LByteBuffer_mutliThread()
196 int totalCount = 0; in test_write_$LByteBuffer() local
202 totalCount += count; in test_write_$LByteBuffer()
203 } while (totalCount != BUFFER_SIZE && !isBlocking); in test_write_$LByteBuffer()
293 int totalCount = 0; in test_write_$LByteBufferII() local
[all …]
DSourceChannelTest.java174 long totalCount = 0; in test_read_$LByteBuffer() local
184 totalCount += count; in test_read_$LByteBuffer()
185 } while (totalCount <= 10); in test_read_$LByteBuffer()
317 long totalCount = 0; in test_read_$LByteBufferII() local
327 totalCount += count; in test_read_$LByteBufferII()
328 } while (totalCount != 10); in test_read_$LByteBufferII()
DSocketChannelTest.java1848 int totalCount = 0; in test_readLjava_nio_ByteBuffer_Blocking() local
1852 while (totalCount <= CAPACITY_NORMAL) { in test_readLjava_nio_ByteBuffer_Blocking()
1857 totalCount += count; in test_readLjava_nio_ByteBuffer_Blocking()
1864 assertEquals(CAPACITY_NORMAL, totalCount); in test_readLjava_nio_ByteBuffer_Blocking()
1892 int totalCount = 0; in test_readLjava_nio_ByteBuffer_Nonblocking() local
1896 while (totalCount <= CAPACITY_NORMAL) { in test_readLjava_nio_ByteBuffer_Nonblocking()
1901 totalCount += count; in test_readLjava_nio_ByteBuffer_Nonblocking()
1909 assertEquals(CAPACITY_NORMAL, totalCount); in test_readLjava_nio_ByteBuffer_Nonblocking()
1941 int totalCount = 0; in test_writeLjava_nio_ByteBuffer_Blocking() local
1950 while (totalCount <= CAPACITY_NORMAL) { in test_writeLjava_nio_ByteBuffer_Blocking()
[all …]
/external/doclava/res/assets/templates/
Dtodo.cs37 <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/guava/src/com/google/common/collect/
DAbstractMultiset.java83 private int totalCount; field in AbstractMultiset.MultisetIterator
100 totalCount = laterCount = currentEntry.getCount(); in next()
110 if (totalCount == 1) { in remove()
115 totalCount--; in remove()
/external/srec/tools/grxmlcompile/
Dvocab.cpp228 int totalCount=0; in lookupModelIDs() local
255 totalCount+=numPhonemes; in lookupModelIDs()
257 return totalCount; in lookupModelIDs()
/external/chromium/chrome/browser/resources/file_manager/js/
Dfile_manager.js575 this.selection.totalCount == 1);
1055 totalCount: 0,
1089 selection.totalCount++;
1308 if (!this.selection.totalCount) {
1321 if (fileManager.selection.totalCount > 1)
1489 if (this.selection.totalCount == 0) {
1492 } else if (this.selection.totalCount == 1) {
1498 strf('MANY_FILES_SELECTED', this.selection.totalCount,
1516 if (this.selection.totalCount == 1 && this.selection.entries[0].isFile) {
2012 if (this.selection.totalCount == 1 &&
[all …]
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
DVertexDataManager.cpp126 int totalCount = buffer->size() / attribs[i].stride(); in prepareVertexData() local
127 staticBuffer->addRequiredSpace(spaceRequired(attribs[i], totalCount)); in prepareVertexData()
220 int totalCount = buffer->size() / attribs[i].stride(); in prepareVertexData() local
223 … streamOffset = writeAttributeData(staticBuffer, -startIndex, totalCount, attribs[i]); in prepareVertexData()