total 147 Source/bindings/v8/ScriptProfiler.cpp virtual ControlOption ReportProgressValue(int done, int total) OVERRIDE total 152 Source/bindings/v8/ScriptProfiler.cpp m_progress->Start(total); total 155 Source/bindings/v8/ScriptProfiler.cpp if (done >= total) total 77 Source/core/css/CSSSelector.cpp unsigned total = 0; total 81 Source/core/css/CSSSelector.cpp temp = total + selector->specificityForOneSelector(); total 83 Source/core/css/CSSSelector.cpp if ((temp & idMask) < (total & idMask)) total 84 Source/core/css/CSSSelector.cpp total |= idMask; total 85 Source/core/css/CSSSelector.cpp else if ((temp & classMask) < (total & classMask)) total 86 Source/core/css/CSSSelector.cpp total |= classMask; total 87 Source/core/css/CSSSelector.cpp else if ((temp & elementMask) < (total & elementMask)) total 88 Source/core/css/CSSSelector.cpp total |= elementMask; total 90 Source/core/css/CSSSelector.cpp total = temp; total 92 Source/core/css/CSSSelector.cpp return total; total 50 Source/core/events/ProgressEvent.cpp , m_total(initializer.total) total 55 Source/core/events/ProgressEvent.cpp ProgressEvent::ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) total 59 Source/core/events/ProgressEvent.cpp , m_total(total) total 38 Source/core/events/ProgressEvent.h unsigned long long total; total 47 Source/core/events/ProgressEvent.h static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) total 49 Source/core/events/ProgressEvent.h return adoptRefWillBeNoop(new ProgressEvent(type, lengthComputable, loaded, total)); total 58 Source/core/events/ProgressEvent.h unsigned long long total() const { return m_total; } total 66 Source/core/events/ProgressEvent.h ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total); total 37 Source/core/events/ResourceProgressEvent.cpp ResourceProgressEvent::ResourceProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url) total 38 Source/core/events/ResourceProgressEvent.cpp : ProgressEvent(type, lengthComputable, loaded, total) total 51 Source/core/events/ResourceProgressEvent.h static PassRefPtrWillBeRawPtr<ResourceProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url) total 53 Source/core/events/ResourceProgressEvent.h return adoptRefWillBeNoop(new ResourceProgressEvent(type, lengthComputable, loaded, total, url)); total 64 Source/core/events/ResourceProgressEvent.h ResourceProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url); total 615 Source/core/rendering/AutoTableLayout.cpp unsigned total = nEffCols - numAutoEmptyCellsOnly; total 622 Source/core/rendering/AutoTableLayout.cpp int cellLogicalWidth = available / total; total 624 Source/core/rendering/AutoTableLayout.cpp total--; total 301 Source/core/rendering/FixedTableLayout.cpp int total = nEffCols; total 302 Source/core/rendering/FixedTableLayout.cpp while (total) { total 303 Source/core/rendering/FixedTableLayout.cpp int w = remainingWidth / total; total 305 Source/core/rendering/FixedTableLayout.cpp calcWidth[--total] += w; total 975 Source/core/xml/XMLHttpRequest.cpp unsigned long long total = lengthComputable ? static_cast<unsigned long long>(expectedLength) : 0; total 977 Source/core/xml/XMLHttpRequest.cpp m_progressEventThrottle.dispatchEventAndLoadEnd(type, lengthComputable, loaded, total); total 984 Source/core/xml/XMLHttpRequest.cpp unsigned long long total = lengthComputable ? static_cast<unsigned long long>(expectedLength) : 0; total 987 Source/core/xml/XMLHttpRequest.cpp m_progressEventThrottle.dispatchProgressEvent(lengthComputable, loaded, total); total 989 Source/core/xml/XMLHttpRequest.cpp m_progressEventThrottle.dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, loaded, total)); total 40 Source/core/xml/XMLHttpRequestProgressEvent.h static PassRefPtrWillBeRawPtr<XMLHttpRequestProgressEvent> create(const AtomicString& type, bool lengthComputable = false, unsigned long long loaded = 0, unsigned long long total = 0) total 42 Source/core/xml/XMLHttpRequestProgressEvent.h return adoptRefWillBeNoop(new XMLHttpRequestProgressEvent(type, lengthComputable, loaded, total)); total 47 Source/core/xml/XMLHttpRequestProgressEvent.h unsigned long long totalSize() const { return total(); } total 59 Source/core/xml/XMLHttpRequestProgressEvent.h XMLHttpRequestProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) total 60 Source/core/xml/XMLHttpRequestProgressEvent.h : ProgressEvent(type, lengthComputable, loaded, total) total 51 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp void XMLHttpRequestProgressEventThrottle::dispatchProgressEvent(bool lengthComputable, unsigned long long loaded, unsigned long long total) total 55 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp m_deferredProgressEvent = XMLHttpRequestProgressEvent::create(EventTypeNames::progress, lengthComputable, loaded, total); total 67 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, lengthComputable, loaded, total)); total 75 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp m_total = total; total 101 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp void XMLHttpRequestProgressEventThrottle::dispatchEventAndLoadEnd(const AtomicString& type, bool lengthComputable, unsigned long long bytesSent, unsigned long long total) total 105 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, bytesSent, total)); total 106 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend, lengthComputable, bytesSent, total)); total 55 Source/core/xml/XMLHttpRequestProgressEventThrottle.h void dispatchProgressEvent(bool lengthComputable, unsigned long long loaded, unsigned long long total); total 61 Source/core/xml/XMLHttpRequestUpload.cpp void XMLHttpRequestUpload::dispatchEventAndLoadEnd(const AtomicString& type, bool lengthComputable, unsigned long long bytesSent, unsigned long long total) total 64 Source/core/xml/XMLHttpRequestUpload.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, bytesSent, total)); total 65 Source/core/xml/XMLHttpRequestUpload.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend, lengthComputable, bytesSent, total)); total 72 Source/modules/indexeddb/IDBVersionChangeEvent.cpp DEFINE_STATIC_LOCAL(AtomicString, total, ("total", AtomicString::ConstructFromLiteral)); total 74 Source/modules/indexeddb/IDBVersionChangeEvent.cpp return total; total 45 Source/modules/mediasource/HTMLVideoElementMediaSource.cpp unsigned total = 0; total 50 Source/modules/mediasource/HTMLVideoElementMediaSource.cpp total = player->decodedFrameCount(); total 55 Source/modules/mediasource/HTMLVideoElementMediaSource.cpp return VideoPlaybackQuality::create(videoElement.document(), total, dropped, corrupted); total 105 Source/platform/PODFreeListArena.h int total = 0; total 107 Source/platform/PODFreeListArena.h total++; total 109 Source/platform/PODFreeListArena.h return total; total 1389 Source/platform/heap/HeapTest.cpp size_t total = 96; total 1392 Source/platform/heap/HeapTest.cpp CheckWithSlack(baseLevel + total, heapStats.totalObjectSpace(), slack); total 1412 Source/platform/heap/HeapTest.cpp size_t total = 0; total 1421 Source/platform/heap/HeapTest.cpp total += big; total 1430 Source/platform/heap/HeapTest.cpp total += size; total 1434 Source/platform/heap/HeapTest.cpp CheckWithSlack(baseLevel + total, heapStats.totalObjectSpace(), slack); total 1448 Source/platform/heap/HeapTest.cpp total += 96; total 1450 Source/platform/heap/HeapTest.cpp CheckWithSlack(baseLevel + total, heapStats.totalObjectSpace(), slack); total 1456 Source/platform/heap/HeapTest.cpp total -= 96; total 1466 Source/platform/heap/HeapTest.cpp total -= big; total 1469 Source/platform/heap/HeapTest.cpp CheckWithSlack(baseLevel + total, heapStats.totalObjectSpace(), slack); total 1479 Source/platform/heap/HeapTest.cpp total += big / 2; total 1485 Source/platform/heap/HeapTest.cpp CheckWithSlack(baseLevel + total, heapStats.totalObjectSpace(), slack); total 41 Source/web/WebDOMProgressEvent.cpp WebDOMProgressEvent::WebDOMProgressEvent(const WebString& type, bool lengthIsComputable, unsigned long long loaded, unsigned long long total) total 42 Source/web/WebDOMProgressEvent.cpp : WebDOMEvent(ProgressEvent::create(type, lengthIsComputable, loaded, total)) total 41 Source/web/WebDOMResourceProgressEvent.cpp WebDOMResourceProgressEvent::WebDOMResourceProgressEvent(const WebString& type, bool lengthIsComputable, unsigned long long loaded, unsigned long long total, const WebString& url) total 44 Source/web/WebDOMResourceProgressEvent.cpp assign(ResourceProgressEvent::create(type, lengthIsComputable, loaded, total, url)); total 59 Source/web/tests/SpinLockTest.cpp int total = 0; total 61 Source/web/tests/SpinLockTest.cpp total += buffer[i]; total 63 Source/web/tests/SpinLockTest.cpp EXPECT_EQ(0, total); total 390 Source/wtf/text/StringConcatenate.h inline void sumWithOverflow(unsigned& total, unsigned addend, bool& overflow) total 392 Source/wtf/text/StringConcatenate.h unsigned oldTotal = total; total 393 Source/wtf/text/StringConcatenate.h total = oldTotal + addend; total 394 Source/wtf/text/StringConcatenate.h if (total < oldTotal) total 43 public/web/WebDOMProgressEvent.h BLINK_EXPORT WebDOMProgressEvent(const WebString& type, bool lengthIsComputable, unsigned long long loaded, unsigned long long total); total 43 public/web/WebDOMResourceProgressEvent.h BLINK_EXPORT WebDOMResourceProgressEvent(const WebString& type, bool lengthIsComputable, unsigned long long loaded, unsigned long long total, const WebString& url);