HomeSort by relevance Sort by last modified time
    Searched refs:totalCount (Results 1 - 25 of 36) 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 215 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 272 private void generateOrderArray(int totalCount) {
273 if (mOrder.length != totalCount) {
274 mOrder = new int[totalCount];
275 for (int i = 0; i < totalCount; ++i) {
279 for (int i = totalCount - 1; i > 0; --i) {
282 if (mOrder[0] == mLastIndex && totalCount > 1) {
283 Utils.swap(mOrder, 0, mRandom.nextInt(totalCount - 1) + 1);
AlbumSetDataLoader.java 228 public int totalCount;
289 mTotalCount[pos] = info.totalCount;
370 info.totalCount = info.item.getTotalMediaItemCount();
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumSetSlidingWindow.java 77 public int totalCount;
236 AlbumSetEntry entry, String title, int totalCount, int sourceType) {
238 || entry.totalCount != totalCount
245 int totalCount = mSource.getTotalCount(slotIndex);
255 if (isLabelChanged(entry, title, totalCount, sourceType)) {
257 entry.totalCount = totalCount;
266 slotIndex, title, totalCount, sourceType);
486 int slotIndex, String title, int totalCount, int sourceType)
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
AAVCAssembler.cpp 209 size_t totalCount = 1;
221 ALOGV("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 ALOGV("piece #%d/%d", i + 1, 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 407 int totalCount = 0;
409 totalCount += usage.count;
427 float percentage = 100 * usage.count/(float)totalCount;
  /frameworks/base/tools/aapt/
AaptAssets.cpp     [all...]
  /external/guava/guava/src/com/google/common/collect/
Multisets.java 889 private int totalCount;
910 totalCount = laterCount = currentEntry.getCount();
921 if (totalCount == 1) {
926 totalCount--;
  /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 211 int totalCount = 0;
215 totalCount++;
223 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 586 int totalCount = packageName.split("\\.").length; //$NON-NLS-1$
597 while (count < totalCount - 1) {

Completed in 2160 milliseconds

1 2