/external/chromium_org/v8/test/webkit/ |
H A D | dfg-put-scoped-var-backward-flow.js | 29 var total = 0; 31 total += num; 33 return total;
|
/external/chromium_org/third_party/lcov/example/methods/ |
H A D | iterate.c | 8 * get the total sum. As a positive side effect, we're able to easily detect 21 int i, total; local 23 total = 0; 33 if (total + i < total) 41 total += i; 44 return total;
|
/external/chromium_org/third_party/mesa/src/src/glsl/tests/ |
H A D | optimization-test | 3 total=0 10 total=$((total+1)) 21 echo "$pass/$total tests returned correct results" 24 if [[ $pass == $total ]]; then
|
/external/mesa3d/src/glsl/tests/ |
H A D | optimization-test | 3 total=0 10 total=$((total+1)) 21 echo "$pass/$total tests returned correct results" 24 if [[ $pass == $total ]]; then
|
/external/chromium_org/net/url_request/ |
H A D | url_fetcher_delegate.cc | 10 const URLFetcher* source, int64 current, int64 total) {} 13 const URLFetcher* source, int64 current, int64 total) {} 9 OnURLFetchDownloadProgress( const URLFetcher* source, int64 current, int64 total) argument 12 OnURLFetchUploadProgress( const URLFetcher* source, int64 current, int64 total) argument
|
/external/chromium_org/third_party/WebKit/Source/web/ |
H A D | WebDOMResourceProgressEvent.cpp | 41 WebDOMResourceProgressEvent::WebDOMResourceProgressEvent(const WebString& type, bool lengthIsComputable, unsigned long long loaded, unsigned long long total, const WebString& url) argument 44 assign(ResourceProgressEvent::create(type, lengthIsComputable, loaded, total, url));
|
H A D | WebDOMProgressEvent.cpp | 41 WebDOMProgressEvent::WebDOMProgressEvent(const WebString& type, bool lengthIsComputable, unsigned long long loaded, unsigned long long total) argument 42 : WebDOMEvent(ProgressEvent::create(type, lengthIsComputable, loaded, total))
|
/external/oauth/core/src/main/java/net/oauth/client/ |
H A D | ExcerptInputStream.java | 22 int total = 0; 24 while ((read = read(excerpt, total, LIMIT - total)) != -1 && ((total += read) < LIMIT)); 25 if (total == LIMIT) { 27 System.arraycopy(ELLIPSIS, 0, excerpt, total, ELLIPSIS.length); 29 byte[] tmp = new byte[total]; 30 System.arraycopy(excerpt, 0, tmp, 0, total);
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/ |
H A D | progress.c | 5 u64 total __maybe_unused, 17 void ui_progress__update(u64 curr, u64 total, const char *title) argument 19 return progress_fns->update(curr, total, title);
|
H A D | progress.h | 15 void ui_progress__update(u64 curr, u64 total, const char *title);
|
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/ |
H A D | results_unittest.py | 33 self.assertEqual(result.total.name, 'Total') 34 self.assertEqual(len(result.total.children), 3) 35 self.assertEqual(result.total.children[0].name, 'a*') 36 self.assertEqual(result.total.children[1].name, 'b*') 37 self.assertEqual(result.total.children[2].name, 'Total-other') 38 self.assertEqual(result.total.children[0].children[0].name, 'az*') 39 self.assertEqual(result.total.children[0].children[1].name, 'a*-other') 49 self.assertEqual(result.total.values, [49, 56]) 50 self.assertEqual(result.total.children[0].values, [9, 12]) 51 self.assertEqual(result.total [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/ |
H A D | HTMLVideoElementMediaSource.cpp | 45 unsigned total = 0; local 50 total = webMediaPlayer->decodedFrameCount(); 55 return VideoPlaybackQuality::create(videoElement.document(), total, dropped, corrupted);
|
/external/stlport/test/unit/ |
H A D | times_test.cpp | 32 int total = accumulate(input, input + 4, 1, multiplies<int>()); local 33 CPPUNIT_ASSERT(total==70);
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
H A D | ProgressEvent.h | 38 unsigned long long total; member in struct:WebCore::ProgressEventInit 47 static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) argument 49 return adoptRefWillBeNoop(new ProgressEvent(type, lengthComputable, loaded, total)); 58 unsigned long long total() const { return m_total; } function in class:WebCore::ProgressEvent 66 ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total);
|
H A D | ProgressEvent.cpp | 34 , total(0) 50 , m_total(initializer.total) 55 ProgressEvent::ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) argument 59 , m_total(total)
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
H A D | XMLHttpRequestProgressEvent.h | 40 static PassRefPtrWillBeRawPtr<XMLHttpRequestProgressEvent> create(const AtomicString& type, bool lengthComputable = false, unsigned long long loaded = 0, unsigned long long total = 0) 42 return adoptRefWillBeNoop(new XMLHttpRequestProgressEvent(type, lengthComputable, loaded, total)); 47 unsigned long long totalSize() const { return total(); } 59 XMLHttpRequestProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) argument 60 : ProgressEvent(type, lengthComputable, loaded, total)
|
/external/chromium_org/third_party/skia/src/views/animated/ |
H A D | SkScrollBarView.cpp | 53 void SkScrollBarView::setTotal(unsigned total) argument 55 if ((int)total < 0) 56 total = 0; 58 if (fTotalLength != total) 60 fTotalLength = total; 70 if (dom.findS32(node, "total", &value)) 122 int total = fTotalLength; local 127 if (total <= 0 || shown <= 0 || shown >= total) // no bar to show 129 total [all...] |
/external/compiler-rt/test/asan/TestCases/ |
H A D | mmap_limit_mb.cc | 26 for (long total = total_mb << 20; total > 0; total -= allocation_size)
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/tui/ |
H A D | progress.c | 7 static void tui_progress__update(u64 curr, u64 total, const char *title) argument 17 if (total == 0) 28 bar = ((SLtt_Screen_Cols - 2) * curr) / total;
|
/external/skia/src/views/animated/ |
H A D | SkScrollBarView.cpp | 53 void SkScrollBarView::setTotal(unsigned total) argument 55 if ((int)total < 0) 56 total = 0; 58 if (fTotalLength != total) 60 fTotalLength = total; 70 if (dom.findS32(node, "total", &value)) 122 int total = fTotalLength; local 127 if (total <= 0 || shown <= 0 || shown >= total) // no bar to show 129 total [all...] |
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
H A D | million.S | 3 # total is 2 + 1 + 499997*2 + 3 7 xor %rcx,%rcx # not needed, pads total to 1M 8 xor %rax,%rax # not needed, pads total to 1M
|
/external/chromium_org/third_party/WebKit/public/web/ |
H A D | WebDOMProgressEvent.h | 43 BLINK_EXPORT WebDOMProgressEvent(const WebString& type, bool lengthIsComputable, unsigned long long loaded, unsigned long long total);
|
/external/chromium_org/third_party/skia/src/pathops/ |
H A D | SkAddIntersections.h | 16 void CoincidenceCheck(SkTArray<SkOpContour*, true>* contourList, int total);
|
/external/lzma/CPP/7zip/Archive/Common/ |
H A D | MultiStream.h | 30 UInt64 total = 0;
local 34 s.GlobalOffset = total;
35 total += Streams[i].Size;
38 _totalLength = total;
|
/external/lzma/CPP/7zip/ |
H A D | IProgress.h | 12 STDMETHOD(SetTotal)(UInt64 total) x; \
28 STDMETHOD(SetTotal)(const UInt64 *total) PURE;
|