Searched defs:instance (Results 101 - 125 of 315) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/fileapi/
H A DFileThread.cpp74 SameInstancePredicate(const void* instance) : m_instance(instance) { } argument
75 bool operator()(FileThread::Task* task) const { return task->instance() == m_instance; }
80 void FileThread::unscheduleTasks(const void* instance) argument
82 SameInstancePredicate predicate(instance);
H A DFileThreadTask.h48 static PassOwnPtr<FileThreadTaskImpl> create(T* instance, Method method) argument
50 return adoptPtr(new FileThreadTaskImpl(instance, method));
54 FileThreadTask0(T* instance, Method method) argument
55 : FileThread::Task(instance)
62 (*static_cast<T*>(instance()).*m_method)();
76 static PassOwnPtr<FileThreadTaskImpl> create(T* instance, Method method, Param1 parameter1) argument
78 return adoptPtr(new FileThreadTaskImpl(instance, method, parameter1));
82 FileThreadTask1(T* instance, Method method, Param1 parameter1) argument
83 : FileThread::Task(instance)
91 (*static_cast<T*>(instance())
107 create(T* instance, Method method, Param1 parameter1, Param2 parameter2) argument
113 FileThreadTask2(T* instance, Method method, Param1 parameter1, Param2 parameter2) argument
141 create(T* instance, Method method, Param1 parameter1, Param2 parameter2, Param3 parameter3) argument
147 FileThreadTask3(T* instance, Method method, Param1 parameter1, Param2 parameter2, Param3 parameter3) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/utils/
H A DClassTracker.cpp43 ClassTracker* ClassTracker::instance() function in class:WebCore::ClassTracker
98 TilesManager::instance()->gatherTexturesNumbers(&nbTextures, &nbAllocatedTextures,
/external/webkit/Source/WebKit/android/plugins/
H A DANPEventInterface.cpp59 static void anp_postEvent(NPP instance, const ANPEvent* event) { argument
60 if (instance && instance->ndata && event) {
61 PluginView* pluginView = static_cast<PluginView*>(instance->ndata);
H A DANPVideoInterface.cpp35 static WebCore::PluginView* pluginViewForInstance(NPP instance) { argument
36 if (instance && instance->ndata)
37 return static_cast<WebCore::PluginView*>(instance->ndata);
41 static WebCore::MediaLayer* mediaLayerForInstance(NPP instance) { argument
42 WebCore::PluginView* pluginView = pluginViewForInstance(instance);
47 static ANativeWindow* anp_acquireNativeWindow(NPP instance) { argument
48 WebCore::MediaLayer* mediaLayer = mediaLayerForInstance(instance);
53 static void anp_setWindowDimensions(NPP instance, const ANativeWindow* window, argument
56 WebCore::MediaLayer* mediaLayer = mediaLayerForInstance(instance);
65 anp_releaseNativeWindow(NPP instance, ANativeWindow* window) argument
73 anp_setFramerateCallback(NPP instance, const ANativeWindow* window, ANPVideoFrameCallbackProc callback) argument
[all...]
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DHostedNetscapePluginStream.h50 static PassRefPtr<HostedNetscapePluginStream> create(NetscapePluginInstanceProxy* instance, uint32_t streamID, NSURLRequest *request) argument
52 return adoptRef(new HostedNetscapePluginStream(instance, streamID, request));
54 static PassRefPtr<HostedNetscapePluginStream> create(NetscapePluginInstanceProxy* instance, WebCore::FrameLoader* frameLoader) argument
56 return adoptRef(new HostedNetscapePluginStream(instance, frameLoader));
/external/webkit/Source/WebKit/win/
H A DWebFramePolicyListener.cpp55 WebFramePolicyListener* instance = new WebFramePolicyListener(frame); local
56 instance->AddRef();
57 return instance;
H A DWebNavigationData.cpp86 WebNavigationData* instance = new WebNavigationData(url, title, request, response, hasSubstituteData, clientRedirectSource); local
87 instance->AddRef();
88 return instance;
H A DWebNotification.cpp67 WebNotification* instance = new WebNotification(name, anObject, userInfo); local
68 instance->AddRef();
69 return instance;
/external/webkit/Tools/WebKitLauncherWin/
H A DWebKitLauncherWin.cpp68 int APIENTRY _tWinMain(HINSTANCE instance, HINSTANCE, LPTSTR commandLine, int) argument
/external/webrtc/src/system_wrappers/interface/
H A Dstatic_instance.h40 static T* volatile instance = NULL; local
70 instance = T::CreateInstance();
72 T* old_instance = instance;
73 instance = NULL;
96 // The instance has been destroyed by some other thread. Rollback.
102 if (instance == NULL) {
113 // updated just yet (that's done when the instance is created).
126 // Create instance and let whichever thread finishes first assign its
127 // local copy to the global instance. All other threads reclaim their
132 reinterpret_cast<void* volatile*>(&instance), new_instanc
[all...]
/external/chromium/base/
H A Dlazy_instance.h5 // The LazyInstance<Type, Traits> class manages a single instance of Type,
10 // and Pointer() will always return the same, completely initialized instance.
11 // When the instance is constructed it is registered with AtExitManager. The
21 // will manage a unique instance. It also preallocates the space for Type, as
22 // to avoid allocating the Type instance on the heap. This may help with the
23 // performance of creating the instance, and reducing heap fragmentation. This
53 static Type* New(void* instance) { argument
54 // Use placement new to initialize our instance in our preallocated space.
56 return new (instance) Type();
58 static void Delete(void* instance) { argument
68 New(void* instance) argument
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Daccount_creation_view.cc93 SiteInstance* instance) {
95 instance,
92 CreateTabContents(Profile* profile, SiteInstance* instance) argument
H A Dhtml_page_screen.cc27 SiteInstance* instance) {
29 instance,
26 CreateTabContents(Profile* profile, SiteInstance* instance) argument
/external/chromium/chrome/browser/debugger/
H A Ddevtools_remote_message.cc15 DevToolsRemoteMessageBuilder& DevToolsRemoteMessageBuilder::instance() { function in class:DevToolsRemoteMessageBuilder
/external/guava/guava/src/com/google/common/collect/
H A DSerialization.java215 void set(T instance, Object value) { argument
217 field.set(instance, value);
223 void set(T instance, int value) { argument
225 field.set(instance, value);
/external/icu4c/common/
H A Dmutex.h90 * Define a static SimpleSingleton instance via the STATIC_SIMPLE_SINGLETON macro.
96 * Returns the singleton instance, or NULL if it could not be created.
97 * Calls the instantiator with the context if the instance has not been
106 * Resets the fields. The caller must have deleted the singleton instance.
131 T *instance=(T *)singleton.getInstance(instantiator, context, duplicate, errorCode); local
133 return instance;
143 * Define a static TriStateSingleton instance via the STATIC_TRI_STATE_SINGLETON macro.
150 * Returns the singleton instance, or NULL if it could not be created.
151 * Calls the instantiator with the context if the instance has not been
162 * Resets the fields. The caller must have deleted the singleton instance
187 T *instance=(T *)singleton.getInstance(instantiator, context, duplicate, errorCode); local
[all...]
/external/javassist/src/main/javassist/scopedpool/
H A DScopedClassPoolRepositoryImpl.java35 /** The instance */
36 private static final ScopedClassPoolRepositoryImpl instance = new ScopedClassPoolRepositoryImpl(); field in class:ScopedClassPoolRepositoryImpl
55 * Get the instance.
57 * @return the instance.
60 return instance;
/external/nist-sip/java/gov/nist/javax/sip/
H A DUtils.java57 private static Utils instance = new Utils(); field in class:Utils
78 return instance;
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A Dmain.cpp15 BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved) argument
/external/webkit/Source/WebCore/bindings/scripts/test/V8/
H A DV8TestMediaQueryListListener.cpp61 v8::Local<v8::ObjectTemplate> instance = desc->InstanceTemplate(); local
/external/webkit/Source/WebCore/bridge/c/
H A Dc_utility.cpp90 CInstance* instance = runtimeObject->getInternalCInstance(); local
91 if (instance) {
92 NPObject* obj = instance->getObject();
/external/webkit/Source/WebCore/bridge/jni/v8/
H A DJavaInstanceJobjectV8.cpp45 JavaInstanceJobject::JavaInstanceJobject(jobject instance, bool requireAnnotation) argument
47 JavaInstanceJobject::JavaInstanceJobject(jobject instance)
49 : m_instance(new JobjectWrapper(instance))
H A DJavaNPObjectV8.cpp76 NPObject* JavaInstanceToNPObject(JavaInstance* instance) argument
79 object->m_instance = instance;
93 JavaInstance* instance = ExtractJavaInstance(obj); local
94 if (!instance)
100 instance->begin();
101 bool result = (instance->getClass()->methodsNamed(name).size() > 0);
102 instance->end();
112 JavaInstance* instance = ExtractJavaInstance(obj); local
113 if (!instance)
119 instance
166 JavaInstance* instance = ExtractJavaInstance(obj); local
182 JavaInstance* instance = ExtractJavaInstance(obj); local
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DGaneshContext.cpp54 GaneshContext* GaneshContext::instance() function in class:WebCore::GaneshContext
127 TransferQueue* tileQueue = TilesManager::instance()->transferQueue();

Completed in 444 milliseconds

1234567891011>>