Searched defs:instance (Results 126 - 150 of 315) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DImagesManager.cpp40 ImagesManager* ImagesManager::instance() function in class:WebCore::ImagesManager
H A DTexturesGenerator.cpp43 TexturesGenerator::TexturesGenerator(TilesManager* instance) argument
45 , m_tilesManager(instance)
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCMainThreadTask.h41 static PassOwnPtr<MainThreadTaskImpl> create(T* instance, Method method) argument
43 return adoptPtr(new MainThreadTaskImpl(instance, method));
47 MainThreadTask0(T* instance, Method method) argument
48 : CCMainThread::Task(instance)
55 (*static_cast<T*>(instance()).*m_method)();
69 static PassOwnPtr<MainThreadTaskImpl> create(T* instance, Method method, Param1 parameter1) argument
71 return adoptPtr(new MainThreadTaskImpl(instance, method, parameter1));
75 MainThreadTask1(T* instance, Method method, Param1 parameter1) argument
76 : CCMainThread::Task(instance)
84 (*static_cast<T*>(instance())
100 create(T* instance, Method method, Param1 parameter1, Param2 parameter2) argument
106 MainThreadTask2(T* instance, Method method, Param1 parameter1, Param2 parameter2) argument
134 create(T* instance, Method method, Param1 parameter1, Param2 parameter2, Param3 parameter3) argument
140 MainThreadTask3(T* instance, Method method, Param1 parameter1, Param2 parameter2, Param3 parameter3) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DMediaPlayerProxy.cpp130 Instance* instance = pluginInstance().get(); local
131 if (!instance)
134 instance->begin();
135 Class *aClass = instance->getClass();
137 MethodList methodList = aClass->methodsNamed(iden, instance);
139 instance->invokeMethod(exec, methodList , args);
140 instance->end();
/external/webkit/Source/WebCore/plugins/qt/
H A DPluginPackageQt.cpp91 static NPError staticPluginQuirkRequiresGtkToolKit_NPN_GetValue(NPP instance, NPNVariable variable, void* value) argument
98 return NPN_GetValue(instance, variable, value);
167 // It does so in NP_Initialize with a null instance, therefore it is done this way:
/external/webkit/Source/WebKit/android/plugins/
H A DANPWindowInterface.cpp33 static PluginView* pluginViewForInstance(NPP instance) { argument
34 if (instance && instance->ndata)
35 return static_cast<PluginView*>(instance->ndata);
39 static void anp_setVisibleRects(NPP instance, const ANPRectI rects[], int32_t count) { argument
40 PluginView* pluginView = pluginViewForInstance(instance);
45 static void anp_clearVisibleRects(NPP instance) { argument
46 anp_setVisibleRects(instance, NULL, 0);
49 static void anp_showKeyboard(NPP instance, bool value) { argument
50 PluginView* pluginView = pluginViewForInstance(instance);
56 anp_requestFullScreen(NPP instance) argument
64 anp_exitFullScreen(NPP instance) argument
70 anp_requestCenterFitZoom(NPP instance) argument
76 anp_visibleRect(NPP instance) argument
82 anp_requestFullScreenOrientation(NPP instance, ANPScreenOrientation orientation) argument
[all...]
H A DPluginTimer.cpp35 PluginTimer::PluginTimer(PluginTimer** list, NPP instance, bool repeat, argument
38 m_instance(instance),
109 uint32_t PluginTimerList::schedule(NPP instance, uint32_t interval, bool repeat, argument
112 PluginTimer* timer = new PluginTimer(&m_list, instance, repeat, proc);
123 void PluginTimerList::unschedule(NPP instance, uint32_t timerID) argument
/external/webkit/Source/WebKit/win/
H A DCOMEnumVariant.h78 COMEnumVariant* instance = new COMEnumVariant; local
79 instance->m_container.swap(container);
80 instance->m_currentPos = instance->m_container.begin();
81 instance->AddRef();
82 return instance;
88 COMEnumVariant* instance = new COMEnumVariant(container); local
89 instance->AddRef();
90 return instance;
H A DWebActionPropertyBag.cpp61 WebActionPropertyBag* instance = new WebActionPropertyBag(action, form, frame); local
62 instance->AddRef();
63 return instance;
H A DWebArchive.cpp40 WebArchive* instance = new WebArchive(0); local
41 instance->AddRef();
42 return instance;
47 WebArchive* instance = new WebArchive(coreArchive); local
49 instance->AddRef();
50 return instance;
H A DWebCache.cpp52 WebCache* instance = new WebCache(); local
53 instance->AddRef();
54 return instance;
H A DWebDownload.cpp72 WebDownload* instance = new WebDownload(); local
73 instance->AddRef();
74 return instance;
79 WebDownload* instance = new WebDownload(); local
80 instance->AddRef();
81 instance->init(handle, request, response, delegate);
82 return instance;
87 WebDownload* instance = new WebDownload(); local
88 instance->AddRef();
89 instance
[all...]
H A DWebElementPropertyBag.cpp60 WebElementPropertyBag* instance = new WebElementPropertyBag(result); local
61 instance->AddRef();
63 return instance;
H A DWebResource.cpp60 WebResource* instance = new WebResource(memoryStream.get(), response.url(), response.mimeType(), response.textEncodingName(), String()); local
61 instance->AddRef();
62 return instance;
H A DWebURLAuthenticationChallenge.cpp63 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, 0); local
64 instance->AddRef();
65 return instance;
71 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, sender); local
72 instance->AddRef();
73 return instance;
H A DWebURLCredential.cpp53 WebURLCredential* instance = new WebURLCredential(Credential()); local
54 instance->AddRef();
55 return instance;
60 WebURLCredential* instance = new WebURLCredential(credential); local
61 instance->AddRef();
62 return instance;
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpreferences.cpp46 static QWKPreferences* instance = 0; local
48 if (!instance)
49 instance = QWKPreferencesPrivate::createSharedPreferences();
50 return instance;
/external/webkit/Tools/WebKitTestRunner/qt/
H A DTestControllerQt.cpp47 static TestControllerRunLoop* instance() function in class:WTR::TestControllerRunLoop
80 TestControllerRunLoop::instance()->stop();
89 TestControllerRunLoop::instance()->start(static_cast<int>(timeout * 1000));
/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java45 private static final SelectorUtils instance = new SelectorUtils(); field in class:SelectorUtils
55 * Retrieves the instance of the Singleton.
56 * @return singleton instance
59 return instance;
/external/astl/tests/
H A Dtest_vector.cpp319 CtorDtorCounter instance; local
320 vector<CtorDtorCounter> vec2(10, instance);
472 CtorDtorCounter instance; local
476 vector<CtorDtorCounter> vec2(200, instance);
478 // 200 copies by assignement of the sample instance
495 // 200 + 1 for the instance
/external/chromium/base/test/
H A Dtest_suite.cc98 testing::UnitTest* instance = testing::UnitTest::GetInstance(); local
101 for (int i = 0; i < instance->total_test_case_count(); ++i) {
102 const testing::TestCase& test_case = *instance->GetTestCase(i);
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_win_unittest.cc32 CComObject<CountedBrowserAccessibility>* instance; local
34 &instance);
36 instance->AddRef();
37 return instance;
95 // and a factory for an instance-counting BrowserAccessibility, and ensure
139 // the instance being deleted as its reference count hits zero.
164 // and a factory for an instance-counting BrowserAccessibility.
251 // and a factory for an instance-counting BrowserAccessibility and ensure
264 // were removed and ensure that only one BrowserAccessibility instance exists.
/external/chromium/chrome/browser/chromeos/
H A Dwm_ipc.cc65 WmIpc* WmIpc::instance() { function in class:chromeos::WmIpc
/external/chromium/chrome/browser/hang_monitor/
H A Dhung_plugin_action.cc150 HungPluginAction* instance = reinterpret_cast<HungPluginAction*>(data); local
151 DCHECK(NULL != instance);
152 if (NULL != instance) {
153 instance->OnWindowResponsive(target_window);
/external/chromium/chrome/browser/visitedlink/
H A Dvisitedlink_perftest.cc42 static DummyVisitedLinkEventListener instance; local
43 return &instance;

Completed in 588 milliseconds

1234567891011>>