Searched defs:instance (Results 201 - 225 of 315) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/win/
H A DWebDataSource.cpp76 WebDataSource* instance = new WebDataSource(loader); local
77 instance->AddRef();
78 return instance;
H A DWebDatabaseManager.cpp81 DatabaseDetailsPropertyBag* instance = new DatabaseDetailsPropertyBag(details); local
82 instance->AddRef();
83 return instance;
H A DWebHTMLRepresentation.cpp65 WebHTMLRepresentation* instance = new WebHTMLRepresentation(); local
66 instance->m_frame = frame;
68 instance->AddRef();
69 return instance;
H A DWebIconDatabase.cpp109 WebIconDatabase* instance = new WebIconDatabase(); local
110 instance->AddRef();
111 return instance;
H A DWebMutableURLRequest.cpp63 WebMutableURLRequest* instance = new WebMutableURLRequest(true); local
64 instance->AddRef();
65 return instance;
70 WebMutableURLRequest* instance = new WebMutableURLRequest(true); local
71 instance->AddRef();
72 instance->m_request = static_cast<WebMutableURLRequest*>(req)->m_request;
73 return instance;
78 WebMutableURLRequest* instance = new WebMutableURLRequest(true); local
79 instance->AddRef();
80 instance
86 WebMutableURLRequest* instance = new WebMutableURLRequest(false); local
93 WebMutableURLRequest* instance = new WebMutableURLRequest(false); local
[all...]
H A DWebScrollBar.cpp57 WebScrollBar* instance = new WebScrollBar(); local
58 instance->AddRef();
59 return instance;
H A DWebURLResponse.cpp227 WebURLResponse* instance = new WebURLResponse(); local
229 instance->m_response = ResourceResponse(KURL(ParsedURLString, "http://"), String(), 0, String(), String());
230 instance->AddRef();
231 return instance;
239 WebURLResponse* instance = new WebURLResponse();
240 instance->AddRef();
241 instance->m_response = response;
243 return instance;
/external/webkit/Tools/DumpRenderTree/unix/TestNetscapePlugin/
H A DTestNetscapePlugin.cpp57 NPP instance,
65 PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass());
66 instance->pdata = obj;
88 testNPRuntime(instance);
92 pluginLog(instance, "src: %s", argv[i]);
103 browser->getvalue(instance, NPNVprivateModeBool, (void *)&obj->cachedPrivateBrowsingMode);
105 obj->pluginTest = PluginTest::create(instance, testIdentifier);
114 webkit_test_plugin_destroy_instance(NPP instance, NPSavedData** save) argument
116 PluginObject* obj = static_cast<PluginObject*>(instance->pdata);
133 pluginLog(instance, "NPP_Destro
56 webkit_test_plugin_new_instance(NPMIMEType mimetype, NPP instance, uint16_t mode, int16_t argc, char *argn[], char *argv[], NPSavedData* savedData) argument
147 webkit_test_plugin_set_window(NPP instance, NPWindow *window) argument
186 webkit_test_plugin_new_stream(NPP instance, NPMIMEType , NPStream *stream, NPBool , uint16_t* stype) argument
209 webkit_test_plugin_destroy_stream(NPP instance, NPStream* stream, NPError reason) argument
251 webkit_test_plugin_write(NPP instance, NPStream* , int32_t , int32_t len, void* ) argument
278 webkit_test_plugin_handle_event(NPP instance, void* event) argument
317 webkit_test_plugin_url_notify(NPP instance, const char* url, NPReason reason, void* notifyData) argument
328 webkit_test_plugin_get_value(NPP instance, NPPVariable variable, void *value) argument
371 webkit_test_plugin_set_value(NPP instance, NPNVariable variable, void* value) argument
[all...]
/external/chromium/chrome/common/
H A Djson_schema_validator.cc164 bool JSONSchemaValidator::Validate(Value* instance) { argument
166 Validate(instance, schema_root_, "");
170 void JSONSchemaValidator::Validate(Value* instance, argument
183 // If the schema has a $ref property, the instance must validate against
192 Validate(instance, type->second, path);
197 // If the schema has a choices property, the instance must validate against at
201 ValidateChoices(instance, choices, path);
205 // If the schema has an enum property, the instance must be one of those
209 ValidateEnum(instance, enumeration, path);
217 if (!ValidateType(instance, typ
234 ValidateChoices(Value* instance, ListValue* choices, const std::string& path) argument
257 ValidateEnum(Value* instance, ListValue* choices, const std::string& path) argument
288 ValidateObject(DictionaryValue* instance, DictionaryValue* schema, const std::string& path) argument
336 ValidateArray(ListValue* instance, DictionaryValue* schema, const std::string& path) argument
378 ValidateTuple(ListValue* instance, DictionaryValue* schema, const std::string& path) argument
426 ValidateString(StringValue* instance, DictionaryValue* schema, const std::string& path) argument
453 ValidateNumber(Value* instance, DictionaryValue* schema, const std::string& path) argument
476 ValidateType(Value* instance, const std::string& expected_type, const std::string& path) argument
[all...]
/external/chromium/testing/gtest/test/
H A Dgtest-param-test_test.cc571 static TestGenerationEnvironment* instance = new TestGenerationEnvironment; local
572 return instance;
/external/clang/test/SemaCXX/
H A Dexpression-traits.cpp396 Class instance; local
397 ASSERT_RVALUE(dynamic_cast<Class*>(&instance));
402 ASSERT_LVALUE(dynamic_cast<Class&>(instance));
/external/gtest/test/
H A Dgtest-param-test_test.cc571 static TestGenerationEnvironment* instance = new TestGenerationEnvironment; local
572 return instance;
/external/icu4c/common/
H A Dutrie2.cpp733 UTrie2 *instance=(UTrie2 *)singleton.getInstance(instantiator, context, duplicate, errorCode); local
735 return instance;
/external/protobuf/gtest/test/
H A Dgtest-param-test_test.cc539 static TestGenerationEnvironment* instance = new TestGenerationEnvironment; local
540 return instance;
/external/webkit/Source/WebCore/bindings/v8/
H A DV8DOMWindowShell.cpp183 V8GCForContextDispose::instance().notifyContextDisposed();
243 // The global object corresponds to a DOMWindow instance. However, to
244 // allow properties of the JS DOMWindow instance to be shadowed, we
246 // instance as the prototype for that shadow object. The JS DOMWindow
247 // instance is undetectable from javascript code because the __proto__
250 // The shadow object and the DOMWindow instance are seen as one object
252 // DOMWindow instance is the shadow object. When mapping a DOMWindow
253 // instance to a V8 object, we return the shadow object.
418 // Insert the window instance as the prototype of the shadow object.
623 v8::Local<v8::Object> instance local
[all...]
/external/webkit/Source/WebCore/bridge/
H A DNP_jsobject.cpp260 bool _NPN_Evaluate(NPP instance, NPObject* o, NPString* s, NPVariant* variant) argument
271 PluginView::keepAlive(instance);
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_instance.cpp57 QtInstance* instance = static_cast<QtInstance*>(getInternalInstance()); local
58 if (instance)
59 instance->markAggregate(markStack);
73 QtRuntimeObject::QtRuntimeObject(ExecState* exec, JSGlobalObject* globalObject, PassRefPtr<Instance> instance) argument
74 : RuntimeObject(exec, globalObject, WebCore::deprecatedGetDOMStructure<QtRuntimeObject>(exec), instance)
121 foreach (QtInstance* instance, cachedInstances.values(o))
122 if (instance->rootObject() == rootObject) {
125 // check if to see if the instance's wrapped object is still alive. If it isn't, then
127 if (!instance->getObject())
128 cachedInstances.remove(instance
343 const QtInstance* instance = static_cast<const QtInstance*>(inst); local
370 const QtInstance* instance = static_cast<const QtInstance*>(inst); local
[all...]
H A Dqt_pixmapruntime.cpp55 virtual JSValue valueFromInstance(ExecState*, const Instance* instance) const
57 return jsNumber(static_cast<const QtPixmapInstance*>(instance)->width());
65 virtual JSValue valueFromInstance(ExecState*, const Instance* instance) const
67 return jsNumber(static_cast<const QtPixmapInstance*>(instance)->height());
86 JSValue invoke(ExecState* exec, QtPixmapInstance* instance) argument
99 PassRefPtr<StillImage> stillImage = WebCore::StillImage::create(instance->toPixmap());
102 JSDOMGlobalObject* global = static_cast<JSDOMGlobalObject*>(instance->rootObject()->globalObject());
117 JSValue invoke(ExecState* exec, QtPixmapInstance* instance) argument
121 instance->toImage().save(&buffer, "PNG");
131 JSValue invoke(ExecState* exec, QtPixmapInstance* instance) argument
162 QtPixmapRuntimeObject(ExecState* exec, JSGlobalObject* globalObject, PassRefPtr<Instance> instance) argument
329 QtPixmapInstance* instance = static_cast<QtPixmapInstance*>(runtimeObject->getInternalInstance()); local
356 RefPtr<QtPixmapInstance> instance = adoptRef(new QtPixmapInstance(root, data)); local
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DTilesManager.cpp539 TilesManager* TilesManager::instance() function in class:WebCore::TilesManager
543 ALOGV("instance(), new gInstance is %x", gInstance);
/external/webkit/Source/WebCore/plugins/
H A Dnpapi.cpp35 // The plugin view is always the ndata of the instance,. Sometimes, plug-ins will call an instance-specific function
36 // with a NULL instance. To workaround this, call the last plug-in view that made a call to a plug-in.
38 // This specifically works around Flash and Shockwave. When we call NPP_New, they call NPN_Useragent with a NULL instance.
39 static PluginView* pluginViewForInstance(NPP instance) argument
41 if (instance && instance->ndata)
42 return static_cast<PluginView*>(instance->ndata);
72 NPError NPN_GetURLNotify(NPP instance, const char* url, const char* target, void* notifyData) argument
74 return pluginViewForInstance(instance)
77 NPN_GetURL(NPP instance, const char* url, const char* target) argument
82 NPN_PostURLNotify(NPP instance, const char* url, const char* target, uint32_t len, const char* buf, NPBool file, void* notifyData) argument
87 NPN_PostURL(NPP instance, const char* url, const char* target, uint32_t len, const char* buf, NPBool file) argument
92 NPN_NewStream(NPP instance, NPMIMEType type, const char* target, NPStream** stream) argument
97 NPN_Write(NPP instance, NPStream* stream, int32_t len, void* buffer) argument
102 NPN_DestroyStream(NPP instance, NPStream* stream, NPReason reason) argument
107 NPN_UserAgent(NPP instance) argument
117 NPN_Status(NPP instance, const char* message) argument
122 NPN_InvalidateRect(NPP instance, NPRect* invalidRect) argument
127 NPN_InvalidateRegion(NPP instance, NPRegion invalidRegion) argument
132 NPN_ForceRedraw(NPP instance) argument
137 NPN_GetValue(NPP instance, NPNVariable variable, void* value) argument
147 NPN_SetValue(NPP instance, NPPVariable variable, void* value) argument
158 NPN_GetJavaPeer(NPP instance) argument
164 NPN_PushPopupsEnabledState(NPP instance, NPBool enabled) argument
169 NPN_PopPopupsEnabledState(NPP instance) argument
175 NPN_PluginThreadAsyncCall(NPP instance, PluginThreadAsyncCallFunction func, void* userData) argument
181 NPN_GetValueForURL(NPP instance, NPNURLVariable variable, const char* url, char** value, uint32_t* len) argument
186 NPN_SetValueForURL(NPP instance, NPNURLVariable variable, const char* url, const char* value, uint32_t len) argument
191 NPN_GetAuthenticationInfo(NPP instance, const char* protocol, const char* host, int32_t port, const char* scheme, const char* realm, char** username, uint32_t* ulen, char** password, uint32_t* plen) argument
197 NPN_ScheduleTimer(NPP instance, uint32_t interval, NPBool repeat, void (*timerFunc)(NPP npp, uint32_t timerID)) argument
204 NPN_UnscheduleTimer(NPP instance, uint32_t timerID) argument
[all...]
/external/webkit/Source/WebCore/workers/
H A DDefaultSharedWorkerRepository.cpp191 DefaultSharedWorkerRepository::instance().removeProxy(this);
296 DefaultSharedWorkerRepository::instance().workerScriptLoaded(*m_proxy, m_worker->scriptExecutionContext()->userAgent(m_scriptLoader->url()), m_scriptLoader->script(), m_port.release());
302 DefaultSharedWorkerRepository& DefaultSharedWorkerRepository::instance() function in class:WebCore::DefaultSharedWorkerRepository
304 AtomicallyInitializedStatic(DefaultSharedWorkerRepository*, instance = new DefaultSharedWorkerRepository);
305 return *instance;
331 DefaultSharedWorkerRepository::instance().connectToWorker(worker, port, url, name, ec);
336 DefaultSharedWorkerRepository::instance().documentDetached(document);
341 return DefaultSharedWorkerRepository::instance().hasSharedWorkers(document);
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitsoupauthdialog.c86 static void webkit_soup_auth_dialog_init(WebKitSoupAuthDialog* instance) argument
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A Dmain.cpp131 NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc, char *argn[], char *argv[], NPSavedData *saved) argument
140 if (browser->getvalue(instance, NPNVsupportsCoreGraphicsBool, &supportsCoreGraphics) != NPERR_NO_ERROR)
149 if (browser->getvalue(instance, NPNVsupportsCoreAnimationBool, &supportsCoreAnimation) != NPERR_NO_ERROR)
159 if (browser->getvalue(instance, NPNVsupportsCarbonBool, &supportsCarbon) != NPERR_NO_ERROR)
163 if (browser->getvalue(instance, NPNVsupportsCocoaBool, &supportsCocoa) != NPERR_NO_ERROR)
176 browser->setvalue(instance, NPPVpluginEventModel, (void *)eventModel);
179 PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass());
180 instance->pdata = obj;
216 testNPRuntime(instance);
222 pluginLog(instance, "sr
303 NPP_Destroy(NPP instance, NPSavedData **save) argument
345 NPP_SetWindow(NPP instance, NPWindow *window) argument
388 NPP_NewStream(NPP instance, NPMIMEType type, NPStream *stream, NPBool seekable, uint16_t *stype) argument
406 NPP_DestroyStream(NPP instance, NPStream *stream, NPReason reason) argument
436 NPP_WriteReady(NPP instance, NPStream *stream) argument
441 NPP_Write(NPP instance, NPStream *stream, int32_t offset, int32_t len, void *buffer) argument
451 NPP_StreamAsFile(NPP instance, NPStream *stream, const char *fname) argument
455 NPP_Print(NPP instance, NPPrint *platformPrint) argument
461 handleEventCarbon(NPP instance, PluginObject* obj, EventRecord* event) argument
555 handleEventCocoa(NPP instance, PluginObject* obj, NPCocoaEvent* event) argument
628 handleEventX11(NPP instance, PluginObject* obj, XEvent* event) argument
685 handleEventWin(NPP instance, PluginObject* obj, NPEvent* event) argument
697 NPP_HandleEvent(NPP instance, void *event) argument
722 NPP_URLNotify(NPP instance, const char *url, NPReason reason, void *notifyData) argument
732 NPP_GetValue(NPP instance, NPPVariable variable, void *value) argument
773 NPP_SetValue(NPP instance, NPNVariable variable, void *value) argument
794 NP_GetValue(NPP instance, NPPVariable variable, void* value) argument
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dwm_overview_controller.cc277 WmIpcWindowType type = WmIpc::instance()->GetWindowType(
286 WmIpc::instance()->SetWindowType(
461 static WmOverviewController* instance = NULL; local
462 if (!instance) {
463 instance = Singleton<WmOverviewController>::get();
465 return instance;
/external/clang/test/CXX/class.access/
H A Dp4.cpp505 static A instance; member in class:test23::A
508 template <typename T> A<T> A<T>::instance; member in class:test23::A

Completed in 367 milliseconds

1234567891011>>