OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lengthcomputable
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
ProgressEvent.cpp
34
:
lengthComputable
(false)
50
, m_lengthComputable(initializer.
lengthComputable
)
57
ProgressEvent::ProgressEvent(const AtomicString& type, bool
lengthComputable
, unsigned long long loaded, unsigned long long total)
59
, m_lengthComputable(
lengthComputable
)
ProgressEvent.h
36
bool
lengthComputable
;
47
static PassRefPtr<ProgressEvent> create(const AtomicString& type, bool
lengthComputable
, unsigned long long loaded, unsigned long long total)
49
return adoptRef(new ProgressEvent(type,
lengthComputable
, loaded, total));
56
bool
lengthComputable
() const { return m_lengthComputable; }
64
ProgressEvent(const AtomicString& type, bool
lengthComputable
, unsigned long long loaded, unsigned long long total);
ResourceProgressEvent.h
51
static PassRefPtr<ResourceProgressEvent> create(const AtomicString& type, bool
lengthComputable
, unsigned long long loaded, unsigned long long total, const String& url)
53
return adoptRef(new ResourceProgressEvent(type,
lengthComputable
, loaded, total, url));
62
ResourceProgressEvent(const AtomicString& type, bool
lengthComputable
, unsigned long long loaded, unsigned long long total, const String& url);
ResourceProgressEvent.cpp
37
ResourceProgressEvent::ResourceProgressEvent(const AtomicString& type, bool
lengthComputable
, unsigned long long loaded, unsigned long long total, const String& url)
38
: ProgressEvent(type,
lengthComputable
, loaded, total)
ProgressEvent.idl
29
[InitializedByEventConstructor] readonly attribute boolean
lengthComputable
;
/external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequestProgressEvent.h
41
static PassRefPtr<XMLHttpRequestProgressEvent> create(const AtomicString& type, bool
lengthComputable
= false, unsigned long long loaded = 0, unsigned long long total = 0)
43
return adoptRef(new XMLHttpRequestProgressEvent(type,
lengthComputable
, loaded, total));
58
XMLHttpRequestProgressEvent(const AtomicString& type, bool
lengthComputable
, unsigned long long loaded, unsigned long long total)
59
: ProgressEvent(type,
lengthComputable
, loaded, total)
XMLHttpRequestProgressEventThrottle.cpp
51
void XMLHttpRequestProgressEventThrottle::dispatchProgressEvent(bool
lengthComputable
, unsigned long long loaded, unsigned long long total)
55
m_deferredProgressEvent = XMLHttpRequestProgressEvent::create(eventNames().progressEvent,
lengthComputable
, loaded, total);
67
dispatchEvent(XMLHttpRequestProgressEvent::create(eventNames().progressEvent,
lengthComputable
, loaded, total));
73
m_lengthComputable =
lengthComputable
;
XMLHttpRequestProgressEventThrottle.h
51
void dispatchProgressEvent(bool
lengthComputable
, unsigned long long loaded, unsigned long long total);
XMLHttpRequest.cpp
[
all
...]
/external/chromium_org/native_client_sdk/src/examples/tutorial/load_progress/
example.js
29
// is 0 until |
lengthComputable
| is true. In particular, this
32
//
lengthComputable
A boolean indicating that the |total| field
39
if (event.
lengthComputable
&& event.total > 0) {
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/
progress_event_listener.js
51
// True if an event with
lengthComputable
is ever triggered.
53
// The last event.total seen from an event with
lengthComputable
being true.
55
// The last event.loaded seen from an event with
lengthComputable
being true.
59
// Can either record progress from a progress event with
lengthComputable
,
61
if (event.type == 'progress' && event.
lengthComputable
) {
65
} else if (event.type == 'loadend' && event.
lengthComputable
) {
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
progress_manager.js
114
if (e.
lengthComputable
)
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
plugin.cc
593
Plugin::
LengthComputable
length_computable,
603
Plugin::
LengthComputable
length_computable() const {
615
Plugin::
LengthComputable
length_computable_;
[
all
...]
plugin.h
137
enum
LengthComputable
{
142
void ReportLoadSuccess(
LengthComputable
length_computable,
161
LengthComputable
length_computable,
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/pnacl-demo/
example.js
155
if (event.
lengthComputable
&& event.total > 0) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
FileUtils.js
268
if (event.
lengthComputable
)
/external/chromium/chrome/browser/resources/
mediaplayer.html
339
if (e.
lengthComputable
) {
/cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js
[
all
...]
Completed in 1018 milliseconds