HomeSort by relevance Sort by last modified time
    Searched refs:totalCount (Results 1 - 25 of 30) sorted by null

1 2

  /external/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/Contacts/src/com/android/contacts/vcard/
VCardImportExportListener.java 26 int totalCount);
NotificationImportExportListener.java 95 int totalCount) {
100 final String totalCountString = String.valueOf(totalCount);
111 jobId, request.displayName, totalCount, currentCount);
193 * @param totalCount The number of vCard entries to be imported. Used to show progress bar.
199 int jobId, String displayName, int totalCount, int currentCount) {
219 .setProgress(totalCount, currentCount, totalCount == - 1)
226 if (totalCount > 0) {
228 String.valueOf(currentCount * 100 / totalCount)));
ExportProcessor.java 231 private void doProgressNotification(Uri uri, int totalCount, int currentCount) {
240 totalCount, currentCount);
NfcImportVCardActivity.java 220 int totalCount) {
  /external/apache-harmony/nio/src/test/java/common/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...]
SourceChannelTest.java 174 long totalCount = 0;
184 totalCount += count;
185 } while (totalCount <= 10);
317 long totalCount = 0;
327 totalCount += count;
328 } while (totalCount != 10);
SocketChannelTest.java     [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogFilter.java 411 int totalCount = mNewMessages.size();
425 for (int i = 0 ; i < totalCount ; i++) {
440 totalCount = mTable.getItemCount();
441 if (totalCount > 0) {
442 mTable.showItem(mTable.getItem(totalCount-1));
462 totalCount = mTable.getItemCount();
465 + (mUnreadCount > totalCount ? totalCount : mUnreadCount)
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SlideshowPage.java 265 private void generateOrderArray(int totalCount) {
266 if (mOrder.length != totalCount) {
267 mOrder = new int[totalCount];
268 for (int i = 0; i < totalCount; ++i) {
272 for (int i = totalCount - 1; i > 0; --i) {
275 if (mOrder[0] == mLastIndex && totalCount > 1) {
276 Utils.swap(mOrder, 0, mRandom.nextInt(totalCount - 1) + 1);
  /frameworks/base/media/libstagefright/rtsp/
AAVCAssembler.cpp 209 size_t totalCount = 1;
221 LOGV("sequence length %d", totalCount);
244 for (size_t i = 0; i <= totalCount; ++i) {
254 ++totalCount;
287 for (size_t i = 0; i < totalCount; ++i) {
290 LOGV("piece #%d/%d", i + 1, totalCount);
  /external/guava/src/com/google/common/collect/
AbstractMultiset.java 83 private int totalCount;
100 totalCount = laterCount = currentEntry.getCount();
110 if (totalCount == 1) {
115 totalCount--;
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
PlaybackGraphs.java 79 double total = 0, totalCount = 0;
84 totalCount += coverage;
86 if (totalCount == 0) {
89 return total / totalCount;
  /external/srec/tools/grxmlcompile/
vocab.cpp 228 int totalCount=0;
255 totalCount+=numPhonemes;
257 return totalCount;
  /packages/apps/Email/src/com/android/email/
FolderProperties.java 150 * @param totalCount Count obtained from {@link MailboxColumns#MESSAGE_COUNT}
152 public int getMessageCount(int mailboxType, int unreadCount, int totalCount) {
156 return totalCount;
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
LocalPhotoSource.java 133 private boolean isContentSound(int totalCount) {
134 if (mPhotos.size() < Math.min(totalCount, MAX_PHOTO_COUNT)) return false;
135 if (mPhotos.size() == 0) return true; // totalCount is also 0
  /libcore/luni/src/main/java/java/nio/
DatagramChannelImpl.java 308 int totalCount = FileChannelImpl.calculateTotalRemaining(targets, offset, length, true);
309 if (totalCount == 0) {
315 ByteBuffer readBuffer = ByteBuffer.allocate(totalCount);
SocketChannelImpl.java 274 int totalCount = FileChannelImpl.calculateTotalRemaining(targets, offset, length, true);
275 if (totalCount == 0) {
278 byte[] readArray = new byte[totalCount];
  /sdk/attribute_stats/src/
Analyzer.java 390 int totalCount = 0;
392 totalCount += usage.count;
410 float percentage = 100 * usage.count/(float)totalCount;
  /frameworks/base/tools/aapt/
AaptAssets.cpp     [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
VertexDataManager.cpp 126 int totalCount = buffer->size() / attribs[i].stride();
127 staticBuffer->addRequiredSpace(spaceRequired(attribs[i], totalCount));
220 int totalCount = buffer->size() / attribs[i].stride();
223 streamOffset = writeAttributeData(staticBuffer, -startIndex, totalCount, attribs[i]);
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityModifier.java 203 int totalCount = 0;
207 totalCount++;
215 typeCount.put(FREQUENCY_TOTAL, totalCount);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiClassAttributeNode.java 583 int totalCount = packageName.split("\\.").length; //$NON-NLS-1$
594 while (count < totalCount - 1) {
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 575 this.selection.totalCount == 1);
    [all...]
  /frameworks/base/media/libstagefright/
MPEG4Writer.cpp     [all...]

Completed in 8463 milliseconds

1 2