Searched refs:total (Results 26 - 50 of 930) sorted by relevance

1234567891011>>

/external/skia/src/pathops/
H A DSkAddIntersections.h16 void CoincidenceCheck(SkTArray<SkOpContour*, true>* contourList, int total);
/external/chromium_org/net/url_request/
H A Durl_fetcher_delegate.h26 // denotes the number of bytes received up to the call, and |total| is the
27 // expected total size of the response (or -1 if not determined).
29 int64 current, int64 total);
32 // |current| denotes the number of bytes sent so far, and |total| is the
33 // total size of uploading data (or -1 if chunked upload is enabled).
35 int64 current, int64 total);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DProgressEvent.idl31 [InitializedByEventConstructor] readonly attribute unsigned long long total;
H A DResourceProgressEvent.cpp36 ResourceProgressEvent::ResourceProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url) argument
37 : ProgressEvent(type, lengthComputable, loaded, total)
H A DResourceProgressEvent.h52 static PassRefPtrWillBeRawPtr<ResourceProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url) argument
54 return adoptRefWillBeNoop(new ResourceProgressEvent(type, lengthComputable, loaded, total, url));
65 ResourceProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLHttpRequestProgressEventThrottle.cpp38 void set(bool lengthComputable, unsigned long long loaded, unsigned long long total) argument
43 m_total = total;
55 unsigned long long total() const { return m_total; } function in class:blink::XMLHttpRequestProgressEventThrottle::DeferredEvent
77 void XMLHttpRequestProgressEventThrottle::dispatchProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) argument
82 m_target->dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, loaded, total));
87 m_deferred->set(lengthComputable, loaded, total);
89 m_target->dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, loaded, total));
112 m_target->dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, m_deferred->lengthComputable(), m_deferred->loaded(), m_deferred->total()));
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dsummary.py52 total = Numbers()
65 total += nums
73 if total.n_files > 1:
75 args = ("TOTAL", total.n_statements, total.n_missing)
77 args += (total.n_branches, total.n_missing_branches)
78 args += (total.pc_covered_str,)
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthOutputStream.java67 private long total = 0; field in class:ContentLengthOutputStream
113 if (this.total < this.contentLength) {
114 long max = this.contentLength - this.total;
119 this.total += len;
131 if (this.total < this.contentLength) {
133 this.total++;
/external/e2fsprogs/contrib/
H A Dmake-sparse.c25 int got, total = 0; local
33 return total ? total : -1;
37 return total;
42 total += got;
45 return total;
/external/valgrind/main/drd/tests/
H A Domp_prime.c38 int total = 0; local
89 DRD_TRACE_VAR(total);
96 primes[total] = i;
97 total++;
103 n, total);
104 for (i = 0; i < total; i++)
/external/sqlite/android/
H A DPhoneNumberUtilsTest.cpp34 #define EXPECT(function, input1, input2, expected, total, error) \
38 (total)++; \
53 (total), (error))
58 (total), (error))
64 (total)++; \
77 int total = 0; local
189 printf("total: %d, error: %d\n\n", total, error);
/external/doclava/src/com/google/doclava/
H A DTodoFile.java58 public int total; field in class:TodoFile.PackageStats
85 int total = 1;
95 total++;
109 total++;
124 total++;
138 total++;
153 data.setValue(classBase + ".totalCount", "" + total);
154 data.setValue(classBase + ".percentGood", percent(errors, total));
165 ps.total += total;
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DHeapProfilerModel.js60 * @param {number} total
63 reportHeapSnapshotProgress: function(done, total, finished)
65 this.dispatchEventToListeners(WebInspector.HeapProfilerModel.Events.ReportHeapSnapshotProgress, {done: done, total: total, finished: finished});
115 * @param {number} total
118 reportHeapSnapshotProgress: function(done, total, finished)
120 this._heapProfilerModel.reportHeapSnapshotProgress(done, total, finished);
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dmalloc_extension_c_test.c99 size_t total; local
106 MallocExtension_MallocMemoryStats(&blocks, &total, hist);
109 &total)) {
112 if (total < 10) {
116 &total)) {
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dmalloc_extension_c_test.c99 size_t total; local
106 MallocExtension_MallocMemoryStats(&blocks, &total, hist);
109 &total)) {
112 if (total < 10) {
116 &total)) {
/external/fio/t/
H A Dstest.c28 unsigned long total; local
35 nr = total = 0;
36 while (total < 128*1024*1024UL) {
40 printf("fail at %lu, size %u\n", total, size);
45 total += size;
/external/chromium_org/base/
H A Dcallback_list_unittest.cc23 int total() const { return total_; } function in class:base::__anon2204::Listener
43 int total() const { return total_; } function in class:base::__anon2204::Remover
69 int total() const { return total_; } function in class:base::__anon2204::Adder
164 EXPECT_EQ(1, a.total());
165 EXPECT_EQ(1, b.total());
174 EXPECT_EQ(2, a.total());
175 EXPECT_EQ(1, b.total());
176 EXPECT_EQ(1, c.total());
199 EXPECT_EQ(10, a.total());
200 EXPECT_EQ(-10, b.total());
[all...]
H A Dobserver_list_unittest.cc28 explicit Adder(int scaler) : total(0), scaler_(scaler) {}
30 total += x * scaler_;
33 int total; member in class:base::__anon2397::Adder
203 EXPECT_EQ(20, a.total);
204 EXPECT_EQ(-20, b.total);
205 EXPECT_EQ(0, c.total);
206 EXPECT_EQ(-10, d.total);
207 EXPECT_EQ(0, e.total);
234 EXPECT_EQ(20, a.total);
235 EXPECT_EQ(-20, b.total);
[all...]
/external/chromium_org/net/quic/test_tools/
H A Dreliable_quic_stream_peer.cc44 uint32 total = 0; local
48 total += it->data.size();
51 return total;
/external/lldb/test/python_api/type/
H A Dmain.cpp36 int total = 0; local
40 ++total;
43 printf("We have a total number of %d tasks\n", total);
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DSynchronousHttpClient.java46 long total = 0;
48 total += count;
51 return total;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DpieChart.css20 .pie-chart-total {
/external/lzma/CPP/7zip/UI/Console/
H A DPercentPrinter.h21 void SetTotal(UInt64 total) { m_Total = total; m_PrevValue = 0; } argument
/external/pixman/pixman/
H A Dpixman-timer.c41 printf ("%s: total: %llu n: %llu avg: %f\n",
43 timer->total,
45 timer->total / (double)timer->n_times);
/external/stlport/test/unit/
H A Dplusminus_test.cpp36 int total = inner_product(input1, input1 + 4, input2, 0, plus<int>(), multiplies <int>()); local
38 CPPUNIT_ASSERT(total==77);

Completed in 714 milliseconds

1234567891011>>