HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 26 - 50 of 432) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/bridge/jni/jsc/
JavaInstanceJSC.h 50 jobject instance() const { return m_instance; } function in class:JSC::Bindings::JObjectWrapper
51 void setInstance(jobject instance) { m_instance = instance; }
61 JObjectWrapper(jobject instance);
71 class JavaInstance : public Instance {
73 static PassRefPtr<JavaInstance> create(jobject instance, PassRefPtr<RootObject> rootObject)
75 return adoptRef(new JavaInstance(instance, rootObject));
94 JavaInstance(jobject instance, PassRefPtr<RootObject>);
  /external/webkit/WebKitTools/DumpRenderTree/win/TestNetscapePlugin/
main.cpp 88 NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc, char *argn[], char *argv[], NPSavedData *saved)
91 PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass());
105 pluginLog(instance, "src: %s", argv[i]);
112 instance->pdata = obj;
118 NPError NPP_Destroy(NPP instance, NPSavedData **save)
120 PluginObject *obj = (PluginObject*)instance->pdata;
144 NPError NPP_SetWindow(NPP instance, NPWindow *window)
146 PluginObject* obj = static_cast<PluginObject*>(instance->pdata);
150 testWindowOpen(instance);
158 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream *stream, NPBool seekable, uint16 *stype
    [all...]
  /external/webkit/WebCore/bridge/jni/v8/
JavaInstanceV8.h 50 jobject instance() const { return m_instance; } function in class:JSC::Bindings::JObjectWrapper
51 void setInstance(jobject instance) { m_instance = instance; }
73 JavaInstance(jobject instance);
  /development/samples/BrowserPlugin/jni/background/
BackgroundPlugin.cpp 223 NPP instance = this->inst(); local
225 //LOG_ERROR(instance, " ------ %p Testing Log Error", instance);
226 gLogI.log(kError_ANPLogType, " ------ %p Testing Log Error", instance);
227 gLogI.log(kWarning_ANPLogType, " ------ %p Testing Log Warning", instance);
228 gLogI.log(kDebug_ANPLogType, " ------ %p Testing Log Debug", instance);
236 static void timer_oneshot(NPP instance, uint32 timerID);
237 static void timer_repeat(NPP instance, uint32 timerID);
238 static void timer_neverfires(NPP instance, uint32 timerID);
239 static void timer_latency(NPP instance, uint32 timerID)
242 NPP instance = this->inst(); local
348 NPP instance = this->inst(); local
405 NPP instance = this->inst(); local
432 NPP instance = this->inst(); local
    [all...]
  /dalvik/vm/oo/
TypeCheck.c 57 * Determine whether "sub" is an instance of "clazz", where both of these
97 * See if "sub" is an instance of "clazz". This handles the
103 * The thing we might be an instance of has fewer dimensions. It
224 static inline int isInstanceof(const ClassObject* instance,
228 return dvmImplements(instance, clazz);
229 } else if (dvmIsArrayClass(instance)) {
230 return isArrayInstanceOf(instance, clazz);
232 return dvmIsSubClass(instance, clazz);
241 int dvmInstanceofNonTrivial(const ClassObject* instance,
244 #define ATOMIC_CACHE_CALC isInstanceof(instance, clazz
    [all...]
  /external/bluetooth/glib/gobject/
gsignal.h 50 * the instance on which the signal was emitted.
51 * @param_values: the instance on which the signal was emitted, followed by the
136 * @G_CONNECT_SWAPPED: whether the instance and data should be swapped when
222 * @itype: The interface/instance type that this signal can be emitted for.
295 void g_signal_emit_valist (gpointer instance,
299 void g_signal_emit (gpointer instance,
303 void g_signal_emit_by_name (gpointer instance,
318 GSignalInvocationHint* g_signal_get_invocation_hint (gpointer instance);
322 void g_signal_stop_emission (gpointer instance,
325 void g_signal_stop_emission_by_name (gpointer instance,
    [all...]
gsignal.c 136 gpointer instance);
138 gpointer instance);
141 gpointer instance,
143 static Handler* handler_lookup (gpointer instance,
150 gpointer instance);
151 static HandlerMatch* handlers_find (gpointer instance,
161 gpointer instance,
172 gpointer instance);
179 gpointer instance,
230 gpointer instance; member in struct:_Emission
1854 gpointer instance; local
2804 gpointer instance; local
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8SVGElementInstanceCustom.cpp 49 SVGElementInstance* instance = V8SVGElementInstance::toNative(args.Holder()); local
51 RefPtr<EventListener> listener = V8DOMWrapper::getEventListener(instance, args[1], false, ListenerFindOrCreate);
55 instance->addEventListener(type, listener, useCapture);
65 SVGElementInstance* instance = V8SVGElementInstance::toNative(args.Holder()); local
67 RefPtr<EventListener> listener = V8DOMWrapper::getEventListener(instance, args[1], false, ListenerFindOnly);
71 instance->removeEventListener(type, listener.get(), useCapture);
  /external/webkit/WebKit/android/plugins/
ANPSystemInterface.cpp 70 static WebCore::PluginView* pluginViewForInstance(NPP instance) {
71 if (instance && instance->ndata)
72 return static_cast<WebCore::PluginView*>(instance->ndata);
76 static jclass anp_loadJavaClass(NPP instance, const char* className) {
77 WebCore::PluginView* pluginView = pluginViewForInstance(instance);
PluginTimer.cpp 34 PluginTimer::PluginTimer(PluginTimer** list, NPP instance, bool repeat,
37 m_instance(instance),
95 uint32 PluginTimerList::schedule(NPP instance, uint32 interval, bool repeat,
98 PluginTimer* timer = new PluginTimer(&m_list, instance, repeat, proc);
109 void PluginTimerList::unschedule(NPP instance, uint32 timerID)
PluginTimer.h 39 PluginTimer(PluginTimer** list, NPP instance, bool repeat,
71 uint32 schedule(NPP instance, uint32 interval, bool repeat,
73 void unschedule(NPP instance, uint32 timerID);
  /external/webkit/WebCore/plugins/
npfunctions.h 45 typedef NPError (*NPN_GetURLNotifyProcPtr)(NPP instance, const char* URL, const char* window, void* notifyData);
46 typedef NPError (*NPN_PostURLNotifyProcPtr)(NPP instance, const char* URL, const char* window, uint32 len, const char* buf, NPBool file, void* notifyData);
48 typedef NPError (*NPN_NewStreamProcPtr)(NPP instance, NPMIMEType type, const char* window, NPStream** stream);
49 typedef int32 (*NPN_WriteProcPtr)(NPP instance, NPStream* stream, int32 len, void* buffer);
50 typedef NPError (*NPN_DestroyStreamProcPtr)(NPP instance, NPStream* stream, NPReason reason);
51 typedef void (*NPN_StatusProcPtr)(NPP instance, const char* message);
52 typedef const char*(*NPN_UserAgentProcPtr)(NPP instance);
57 typedef NPError (*NPN_GetValueProcPtr)(NPP instance, NPNVariable variable, void *ret_value);
58 typedef NPError (*NPN_SetValueProcPtr)(NPP instance, NPPVariable variable, void *value);
59 typedef void (*NPN_InvalidateRectProcPtr)(NPP instance, NPRect *rect)
    [all...]
  /external/webkit/WebCore/bindings/js/
JSPluginElementFunctions.cpp 38 static Instance* pluginInstance(Node* node)
46 Instance* instance = plugInElement->getInstance().get(); local
47 if (!instance || !instance->rootObject())
49 return instance;
54 Instance* instance = pluginInstance(node); local
55 if (!instance)
57 return instance->createRuntimeObject(exec)
118 Instance* instance = pluginInstance(static_cast<JSHTMLElement*>(function)->impl()); local
127 Instance* instance = pluginInstance(element); local
    [all...]
  /external/webkit/WebCore/manual-tests/NPN_Invoke/
main.c 40 NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc, char* argn[], char* argv[], NPSavedData* saved);
41 NPError NPP_Destroy(NPP instance, NPSavedData** save);
42 NPError NPP_SetWindow(NPP instance, NPWindow* window);
43 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype);
44 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason);
45 int32 NPP_WriteReady(NPP instance, NPStream* stream);
46 int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len, void* buffer);
47 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname);
48 void NPP_Print(NPP instance, NPPrint* platformPrint);
49 int16 NPP_HandleEvent(NPP instance, void* event)
    [all...]
  /external/webkit/WebCore/bridge/
npapi.h 194 * NPP is a plug-in's opaque instance handle
817 NPError NP_LOADDS NPP_New(NPMIMEType pluginType, NPP instance,
820 NPError NP_LOADDS NPP_Destroy(NPP instance, NPSavedData** save);
821 NPError NP_LOADDS NPP_SetWindow(NPP instance, NPWindow* window);
822 NPError NP_LOADDS NPP_NewStream(NPP instance, NPMIMEType type,
825 NPError NP_LOADDS NPP_DestroyStream(NPP instance, NPStream* stream,
827 int32 NP_LOADDS NPP_WriteReady(NPP instance, NPStream* stream);
828 int32 NP_LOADDS NPP_Write(NPP instance, NPStream* stream, int32 offset,
830 void NP_LOADDS NPP_StreamAsFile(NPP instance, NPStream* stream,
832 void NP_LOADDS NPP_Print(NPP instance, NPPrint* platformPrint)
    [all...]
  /dalvik/tests/046-reflect/src/
Main.java 39 private void showStrings(Target instance)
47 one = (String) field.get(instance);
50 two = (String) field.get(instance);
53 three = (String) field.get(instance);
81 Target instance = new Target(); local
91 boxval = (Integer) meth.invoke(instance, argList);
96 meth.invoke(instance, (Object[]) null);
101 meth.invoke(instance, (Object[]) null);
119 String strVal = (String) field.get(instance);
122 showStrings(instance);
    [all...]
  /external/webkit/WebCore/bridge/c/
c_runtime.cpp 40 JSValue CField::valueFromInstance(ExecState* exec, const Instance* inst) const
42 const CInstance* instance = static_cast<const CInstance*>(inst); local
43 NPObject* obj = instance->getObject();
55 JSValue result = convertNPVariantToValue(exec, &property, instance->rootObject());
63 void CField::setValueToInstance(ExecState *exec, const Instance *inst, JSValue aValue) const
65 const CInstance* instance = static_cast<const CInstance*>(inst); local
66 NPObject* obj = instance->getObject();
  /external/webkit/WebCore/platform/haiku/
SharedTimerHaiku.cpp 44 static SharedTimerHaiku* instance();
71 SharedTimerHaiku* SharedTimerHaiku::instance() function in class:WebCore::SharedTimerHaiku
111 SharedTimerHaiku::instance()->m_timerFunction = f;
116 SharedTimerHaiku::instance()->start(fireTime);
121 SharedTimerHaiku::instance()->stop();
  /external/webkit/WebCore/bindings/v8/
ScriptInstance.h 44 static PassRefPtr<V8ScriptInstance> create(v8::Handle<v8::Object> instance)
46 return adoptRef(new V8ScriptInstance(instance));
51 v8::Persistent<v8::Object> instance();
  /external/webkit/WebKit/win/
WebWorkersPrivate.cpp 88 WebWorkersPrivate* instance = new WebWorkersPrivate(); local
89 instance->AddRef();
90 return instance;
WebArchive.cpp 40 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;
  /external/webkit/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/
TestNetscapePlugin.cpp 52 NPP instance,
60 PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass());
75 testNPRuntime(instance);
79 pluginLog(instance, "src: %s", argv[i]);
89 instance->pdata = obj;
96 webkit_test_plugin_destroy_instance(NPP instance, NPSavedData** /*save*/)
98 PluginObject* obj = static_cast<PluginObject*>(instance->pdata);
115 pluginLog(instance, "NPP_Destroy");
124 webkit_test_plugin_set_window(NPP instance, NPWindow *window)
126 PluginObject* obj = static_cast<PluginObject*>(instance->pdata)
    [all...]
  /dalvik/libcore/luni-kernel/src/main/java/org/apache/harmony/kernel/vm/
LangAccess.java 23 * core library. Trusted packages either get seeded with an instance
29 /** unique instance of this class */
33 * Sets the unique instance of this class. This may only be done once.
35 * @param instance non-null; the instance
37 public static void setInstance(LangAccess instance) {
42 theInstance = instance;
46 * Gets the unique instance of this class. This is only allowed in
52 * instance.
  /external/webkit/WebCore/platform/win/
GDIObjectCounter.cpp 47 GDIObjectCounter::GDIObjectCounter(const String& className, void* instance)
49 init(String::format("%s (%p)", className.latin1().data(), instance));
  /external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/
main.m 58 // Structure for per-instance storage
75 NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc, char* argn[], char* argv[], NPSavedData* saved);
76 NPError NPP_Destroy(NPP instance, NPSavedData** save);
77 NPError NPP_SetWindow(NPP instance, NPWindow* window);
78 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype);
79 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason);
80 int32 NPP_WriteReady(NPP instance, NPStream* stream);
81 int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len, void* buffer);
82 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname);
83 void NPP_Print(NPP instance, NPPrint* platformPrint)
    [all...]

Completed in 597 milliseconds

12 3 4 5 6 7 8 91011>>