HomeSort by relevance Sort by last modified time
    Searched refs:counts (Results 76 - 100 of 213) sorted by null

1 2 34 5 6 7 8 9

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
NewItemSelectionDialog.java 221 TreeMap<String, Integer> counts = new TreeMap<String, Integer>(); local
226 Integer i = counts.get(name);
228 counts.put(name, count);
234 for (Entry<String, Integer> entry : counts.entrySet()) {
  /external/oprofile/libpp/
format_output.h 90 counts(c), extra(extra), diff(d) {}
94 counts_t & counts; member in struct:format_output::formatter::field_datum
155 /// total counts
156 counts_t counts; member in class:format_output::formatter
xml_utils.cpp 346 get_counts_string(count_array_t const & counts, size_t begin, size_t end)
351 // if no cpu separation then return a simple count, omit zero counts
353 size_t count = counts[begin];
361 size_t count = counts[p];
425 void add_to_summary(count_array_t const & counts);
540 void module_info::add_to_summary(count_array_t const & counts)
543 summary[pclass] += counts[pclass];
640 add_to_summary((*it)->sample.counts);
666 // propagate this symbols counts to the module
667 my_modules[nr_modules-1].add_to_summary((*it)->sample.counts);
    [all...]
  /external/skia/src/pdf/
SkPDFDocument.cpp 229 int counts[SkAdvancedTypefaceMetrics::kNotEmbeddable_Font + 1]) const {
230 sk_bzero(counts, sizeof(int) *
240 counts[fontResources[font]->getType()]++;
  /external/chromium/base/metrics/
histogram_unittest.cc 285 EXPECT_EQ(2, sample.counts(0));
286 EXPECT_EQ(0, sample.counts(1));
289 EXPECT_EQ(0, sample.counts(array_size - 2));
290 EXPECT_EQ(2, sample.counts(array_size - 1));
317 // Check to see that the bucket counts reflect our additions.
322 EXPECT_EQ(i + 1, sample.counts(i));
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php 338 $counts = array(); variable
345 if (empty($counts[$alias])) $counts[$alias] = 0;
346 $counts[$alias] += 1;
353 foreach ($counts as $alias => $count) {
  /external/opencv/cvaux/src/
cvcalibfilter.cpp 269 int* counts = (int*)cvAlloc( n * sizeof(counts[0])); local
276 counts[i] = etalonPointCount;
284 cvCalibrateCamera( framesAccepted, counts,
320 icvStereoCalibration( framesAccepted, counts,
336 cvFree( &counts );
  /external/webkit/Source/WebKit/win/
WebHistoryItem.cpp 165 // Daily and weekly counts < 0 are errors in the data read from disk, so reset to 0.
491 HRESULT STDMETHODCALLTYPE WebHistoryItem::getDailyVisitCounts(int* number, int** counts)
493 if (!number || !counts) {
498 *counts = const_cast<int*>(m_historyItem->dailyVisitCounts().data());
503 HRESULT STDMETHODCALLTYPE WebHistoryItem::getWeeklyVisitCounts(int* number, int** counts)
505 if (!number || !counts) {
510 *counts = const_cast<int*>(m_historyItem->weeklyVisitCounts().data());
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 770 int counts[] = new int[datasNames.length]; local
777 // for( int j=0; j<counts.length; j++) {
778 // System.out.print(""+counts[j]+"|");
786 String val = getData(j, counts[j]);
790 String val = getData(j, counts[j]);
803 if (inc(counts, datas.length)) {
  /external/guava/guava/src/com/google/common/collect/
ImmutableMultiset.java 459 final int[] counts; field in class:SerializedForm
464 counts = new int[distinct];
468 counts[i] = entry.getCount();
477 multiset.add(elements[i], counts[i]);
ImmutableSortedMultiset.java 576 int[] counts; field in class:ImmutableSortedMultiset.SerializedForm
582 counts = new int[n];
586 counts[i] = entry.getCount();
596 builder.addCopies(elements[i], counts[i]);
  /external/linux-tools-perf/util/
evsel.h 62 struct perf_counts *counts; member in struct:perf_evsel
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
atom.c 214 int counts[HASH_TABLE_MAX_COLLISIONS + 1]; member in struct:HashTable_Rec
236 htable->counts[ii] = 0;
450 atable->htable.counts[count]++;
694 sprintf(str, " %d", atable->htable.counts[ii]);
  /libcore/dalvik/src/main/java/dalvik/system/
VMDebug.java 276 public static native void getInstructionCount(int[] counts);
366 * Counts the instances of a class.
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 771 int counts[] = new int[datasNames.length]; local
778 // for( int j=0; j<counts.length; j++) {
779 // System.out.print(""+counts[j]+"|");
787 String val = getData(j, counts[j]);
791 String val = getData(j, counts[j]);
804 if (inc(counts, datas.length)) {
  /bionic/libc/arch-mips/string/
memset.S 189 # Here a3 counts bytes in 16w chunks
204 # Here t5 counts bytes in 16w "safe" chunks
  /external/valgrind/main/memcheck/tests/linux/
timerfd-syscall.stderr.exp 55 For counts of detected and suppressed errors, rerun with: -v
  /external/valgrind/main/memcheck/tests/
partial_load_dflt.stderr.exp 33 For counts of detected and suppressed errors, rerun with: -v
big_blocks_freed_list.stderr.exp 49 For counts of detected and suppressed errors, rerun with: -v
  /frameworks/base/services/java/com/android/server/content/
ContentService.java 92 int[] counts = new int[2]; local
94 mRootNode.dumpLocked(fd, pw, args, "", " ", counts, pidCounts);
120 pw.print(" Total number of nodes: "); pw.println(counts[0]);
121 pw.print(" Total number of observers: "); pw.println(counts[1]);
677 String name, String prefix, int[] counts, SparseIntArray pidCounts) {
686 counts[1]++;
700 counts[0]++;
702 counts, pidCounts);
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
FastScrollingIndexCacheTest.java 86 String[] titles, int[] counts) {
87 Bundle bundle = FastScrollingIndexCache.buildExtraBundle(titles, counts);
  /external/libxml2/
xmlregexp.c 295 int *counts; /* save the automata state if it has some */ member in struct:_xmlRegExecRollback
327 int *counts; member in struct:_xmlRegExecCtxt
    [all...]
  /external/linux-tools-perf/
builtin-test.c 310 if (evsel->counts->cpu[0].val != nr_open_calls) {
312 nr_open_calls, evsel->counts->cpu[0].val);
403 * Here we need to explicitely preallocate the counts, as if
427 if (evsel->counts->cpu[cpu].val != expected) {
429 expected, cpus->map[cpu], evsel->counts->cpu[cpu].val);
  /packages/apps/Browser/src/com/android/browser/
SuggestionsAdapter.java 335 int[] counts; field in class:SuggestionsAdapter.SuggestionResults
340 counts = new int[5];
344 return counts[type];
352 counts[item.type]++;
  /external/opencv/ml/src/
ml_inner_functions.cpp 1891 CvMat* counts = 0; local
    [all...]

Completed in 1584 milliseconds

1 2 34 5 6 7 8 9