OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:numberOfActiveAnimations
(Results
1 - 25
of
33
) sorted by null
1
2
/external/webkit/Source/WebKit/chromium/public/
WebAnimationController.h
53
virtual unsigned
numberOfActiveAnimations
() const = 0;
/external/webkit/Source/WebKit/chromium/src/
WebAnimationControllerImpl.h
54
virtual unsigned
numberOfActiveAnimations
() const;
WebAnimationControllerImpl.cpp
82
unsigned WebAnimationControllerImpl::
numberOfActiveAnimations
() const
87
return controller->
numberOfActiveAnimations
();
/external/webkit/Source/WebCore/page/animation/
AnimationController.h
61
unsigned
numberOfActiveAnimations
() const; // To be used only for testing
CompositeAnimation.h
82
unsigned
numberOfActiveAnimations
() const;
AnimationControllerPrivate.h
83
unsigned
numberOfActiveAnimations
() const;
AnimationController.cpp
355
unsigned AnimationControllerPrivate::
numberOfActiveAnimations
() const
362
count += compAnim->
numberOfActiveAnimations
();
528
unsigned AnimationController::
numberOfActiveAnimations
() const
530
return m_data->
numberOfActiveAnimations
();
/external/webkit/Source/WebKit2/WebProcess/WebPage/
WebFrame.h
108
unsigned
numberOfActiveAnimations
() const;
WebFrame.cpp
376
unsigned WebFrame::
numberOfActiveAnimations
() const
385
return controller->
numberOfActiveAnimations
();
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
LayoutTestController.idl
75
int
numberOfActiveAnimations
();
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.h
81
static unsigned int
numberOfActiveAnimations
(WebKitWebFrame*);
DumpRenderTreeSupportGtk.cpp
417
unsigned int DumpRenderTreeSupportGtk::
numberOfActiveAnimations
(WebKitWebFrame* frame)
423
return coreFrame->animation()->
numberOfActiveAnimations
();
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
LayoutTestController.h
97
unsigned
numberOfActiveAnimations
() const;
/external/webkit/Source/WebKit/win/Interfaces/
IWebFramePrivate.idl
90
HRESULT
numberOfActiveAnimations
([out, retval] UINT* number);
/external/webkit/Tools/DumpRenderTree/chromium/
LayoutTestController.h
231
void
numberOfActiveAnimations
(const CppArgumentList&, CppVariant*);
478
int
numberOfActiveAnimations
();
LayoutTestController.cpp
117
bindMethod("
numberOfActiveAnimations
", &LayoutTestController::
numberOfActiveAnimations
);
[
all
...]
/external/chromium/webkit/glue/
dom_operations.cc
298
int
NumberOfActiveAnimations
(WebView* view) {
307
return controller->
numberOfActiveAnimations
();
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.h
127
static int
numberOfActiveAnimations
(QWebFrame*);
DumpRenderTreeSupportQt.cpp
321
int DumpRenderTreeSupportQt::
numberOfActiveAnimations
(QWebFrame *frame)
331
return controller->
numberOfActiveAnimations
();
[
all
...]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleFrame.cpp
89
return toImpl(frameRef)->
numberOfActiveAnimations
();
/external/webkit/Tools/DumpRenderTree/qt/
LayoutTestControllerQt.h
181
unsigned
numberOfActiveAnimations
() const;
/external/webkit/Tools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp
287
unsigned LayoutTestController::
numberOfActiveAnimations
() const
/external/webkit/Source/WebKit/win/
WebFrame.h
259
virtual HRESULT STDMETHODCALLTYPE
numberOfActiveAnimations
(UINT*);
/external/webkit/Tools/DumpRenderTree/
LayoutTestController.h
276
unsigned
numberOfActiveAnimations
() const;
/external/webkit/Tools/DumpRenderTree/gtk/
LayoutTestControllerGtk.cpp
742
unsigned LayoutTestController::
numberOfActiveAnimations
() const
744
return DumpRenderTreeSupportGtk::
numberOfActiveAnimations
(mainFrame);
[
all
...]
Completed in 369 milliseconds
1
2