Searched defs:instance (Results 1 - 25 of 315) sorted by relevance

1234567891011>>

/external/webkit/Examples/NetscapeCocoaPlugin/
H A DMenuHandler.h40 NPP instance; variable
43 - (id)initWithBrowserFuncs:(NPNetscapeFuncs *)theBrowserFuncs instance:(NPP)theInstance;
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8ScriptProfileCustom.cpp51 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function); local
52 if (instance.IsEmpty()) {
57 V8DOMWrapper::setDOMWrapper(instance, &V8ScriptProfile::info, impl);
58 return instance;
H A DV8HTMLAudioElementConstructor.cpp64 // Make sure the document is added to the DOM Node map. Otherwise, the HTMLAudioElement instance
89 v8::Local<v8::ObjectTemplate> instance = result->InstanceTemplate(); local
90 instance->SetInternalFieldCount(V8HTMLAudioElement::internalFieldCount);
/external/webkit/Source/WebCore/bridge/jni/
H A DJobjectWrapper.cpp36 JobjectWrapper::JobjectWrapper(jobject instance) argument
39 assert(instance);
45 m_instance = m_env->NewGlobalRef(instance);
48 LOG_ERROR("Could not get GlobalRef for %p", instance);
/external/chromium/base/
H A Dlazy_instance.cc16 // Try to create the instance, if we're the first, will go from EMPTY
20 // Caller must create instance
28 // Someone else created the instance.
32 void LazyInstanceHelper::CompleteInstance(void* instance, void (*dtor)(void*)) { argument
41 base::AtExitManager::RegisterCallback(dtor, instance);
/external/valgrind/main/memcheck/tests/x86/
H A Dfpeflags.c3 struct instance struct
8 static struct instance* myInstance;
14 myInstance = malloc(sizeof(struct instance));
/external/webkit/Source/JavaScriptCore/wtf/brew/
H A DShellBrew.h44 T* instance = 0; local
47 ISHELL_CreateInstance(shell, cls, reinterpret_cast<void**>(&instance));
48 ASSERT(instance);
50 return instance;
56 T* instance = 0; local
59 ISHELL_CreateInstance(shell, cls, reinterpret_cast<void**>(&instance));
60 ASSERT(instance);
62 return adoptRef(instance);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptInstance.cpp45 V8ScriptInstance::V8ScriptInstance(v8::Handle<v8::Object> instance) argument
47 set(instance);
55 v8::Persistent<v8::Object> V8ScriptInstance::instance() function in class:WebCore::V8ScriptInstance
71 void V8ScriptInstance::set(v8::Handle<v8::Object> instance) argument
74 if (instance.IsEmpty())
77 m_instance = v8::Persistent<v8::Object>::New(instance);
H A DScriptInstance.h44 static PassRefPtr<V8ScriptInstance> create(v8::Handle<v8::Object> instance) argument
46 return adoptRef(new V8ScriptInstance(instance));
51 v8::Persistent<v8::Object> instance();
H A DV8GCForContextDispose.cpp61 V8GCForContextDispose& V8GCForContextDispose::instance() function in class:WebCore::V8GCForContextDispose
/external/webkit/Tools/MiniBrowser/win/
H A DMiniBrowser.h46 HINSTANCE instance() const { return m_instance; } function in class:MiniBrowser
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpSocket.java30 private final Socket instance; field in class:Support_HttpSocket
35 instance = socket;
40 return instance.getInputStream();
45 return instance.getOutputStream();
49 if (!streamOpen && instance != null) {
50 instance.close();
H A DSupport_HttpServerSocket.java30 private ServerSocket instance = null; field in class:Support_HttpServerSocket
45 if (instance == null) {
48 instance.setSoTimeout(timeout);
49 Socket s = instance.accept();
69 instance = new ServerSocket(port);
76 if (instance != null) {
77 instance.close();
/external/chromium/chrome/common/
H A Djson_schema_validator_unittest.cc18 Value* instance, DictionaryValue* schema,
21 if (validator.Validate(instance))
32 Value* instance, DictionaryValue* schema,
37 if (validator.Validate(instance)) {
17 ExpectValid(const std::string& test_source, Value* instance, DictionaryValue* schema, ListValue* types) argument
31 ExpectNotValid(const std::string& test_source, Value* instance, DictionaryValue* schema, ListValue* types, const std::string& expected_error_path, const std::string& expected_error_message) argument
H A Dlaunchd_mac.h77 static void SetInstance(Launchd* instance);
80 explicit ScopedInstance(Launchd* instance) { argument
81 Launchd::SetInstance(instance);
/external/icu4c/common/
H A Dmutex.cpp27 // TODO: With atomicops.h: void *instance = (void*)Acquire_Load(&fInstance);
29 void *instance=ANNOTATE_UNPROTECTED_READ(fInstance); local
32 if(instance!=NULL) {
33 return instance;
36 // Attempt to create the instance.
37 // If a race occurs, then the losing thread will assign its new instance
39 instance=instantiator(context, errorCode);
40 UMTX_RELEASE_BARRIER; // Release-barrier before fInstance=instance;
43 U_ASSERT(instance!=NULL);
45 // TODO: With atomicops.h: Release_Store(&fInstance, (AtomicWord)instance);
79 void *instance=ANNOTATE_UNPROTECTED_READ(fInstance); local
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCMainThread.h40 void* instance() const { return m_instance; } function in class:WebCore::CCMainThread::Task
42 Task(void* instance) : m_instance(instance) { } argument
/external/webkit/Source/WebCore/platform/win/
H A DGDIObjectCounter.cpp47 GDIObjectCounter::GDIObjectCounter(const String& className, void* instance) argument
49 init(String::format("%s (%p)", className.latin1().data(), instance));
/external/webkit/Source/WebCore/storage/chromium/
H A DQuotaTracker.cpp40 QuotaTracker& QuotaTracker::instance() function in class:WebCore::QuotaTracker
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebInspectorDelegate.cpp39 WebInspectorDelegate* instance = new WebInspectorDelegate; local
40 instance->AddRef();
41 return instance;
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
H A DGetValueNetscapeWindow.cpp43 virtual NPError NPP_SetWindow(NPP instance, NPWindow* window) argument
52 pluginLog(instance, "NPN_GetValue(NPNVnetscapeWindow) failed with error %d", error);
57 pluginLog(instance, "::IsWindow returned FALSE");
62 pluginLog(instance, "NPN_GetValue(NPNVnetscapeWindow) returned the same value as NPWindow::window");
66 pluginLog(instance, "NPN_GetValue(NPNVnetscapeWindow) succeeded");
H A DWindowGeometryInitializedBeforeSetWindow.cpp43 virtual NPError NPP_SetWindow(NPP instance, NPWindow* window) argument
50 pluginLog(instance, "window->type should be NPWindowTypeWindow but was %d", window->type);
57 pluginLog(instance, "::GetClientRect failed");
62 pluginLog(instance, "Plugin's HWND has not been sized when NPP_SetWindow is called");
68 pluginLog(instance, "::GetParent failed");
74 pluginLog(instance, "::MapWindowPoints failed");
79 pluginLog(instance, "HWND's rect and NPWindow's rect are not equal");
83 pluginLog(instance, "Plugin's HWND has been sized and positioned before NPP_SetWindow was called");
/external/chromium/chrome/browser/chromeos/login/
H A Dregistration_screen.h37 SiteInstance* instance) {
39 instance,
36 CreateTabContents(Profile* profile, SiteInstance* instance) argument
/external/chromium/chrome/browser/chromeos/
H A Dwm_message_listener.cc11 static WmMessageListener* instance = NULL; local
12 if (!instance) {
13 instance = Singleton<WmMessageListener>::get();
14 MessageLoopForUI::current()->AddObserver(instance);
16 return instance;
26 WmIpc* wm_ipc = WmIpc::instance();
/external/clang/test/CodeGenCXX/
H A Dstatic-init-3.cpp9 static T & instance; member in struct:X1
14 use(instance);
21 template<class T> T & X1<T>::instance = X1<T>::get(); member in class:X1

Completed in 451 milliseconds

1234567891011>>