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

1 23 4 5 6 7 8 91011>>

  /external/webkit/WebKitExamplePlugins/NetscapeInputMethodPlugin/
main.m 43 // Structure for per-instance storage
62 NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc, char* argn[], char* argv[], NPSavedData* saved);
63 NPError NPP_Destroy(NPP instance, NPSavedData** save);
64 NPError NPP_SetWindow(NPP instance, NPWindow* window);
65 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype);
66 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason);
67 int32 NPP_WriteReady(NPP instance, NPStream* stream);
68 int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len, void* buffer);
69 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname);
70 void NPP_Print(NPP instance, NPPrint* platformPrint)
    [all...]
  /development/samples/BrowserPlugin/jni/form/
FormPlugin.cpp 42 static void inval(NPP instance) {
43 browser->invalidaterect(instance, NULL);
54 static void inval(NPP instance, const ANPRectF& r, bool doAA) {
57 PluginObject *obj = reinterpret_cast<PluginObject*>(instance->pdata);
63 browser->invalidaterect(instance, &inval);
132 NPP instance = this->inst(); local
133 PluginObject *obj = (PluginObject*) instance->pdata;
160 //inval(instance);
203 NPP instance = this->inst(); local
218 gLogI.log(kDebug_ANPLogType, "----%p Loosing Focus", instance);
285 NPP instance = this->inst(); local
301 NPP instance = this->inst(); local
332 NPP instance = this->inst(); local
357 NPP instance = this->inst(); local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 36 // Singleton instance.
37 private static DOMImplementationImpl instance; field in class:DOMImplementationImpl
74 * Requests the singleton instance of the class. Creates it first, if
77 * @return The singleton Android DOMImplementationImpl instance.
80 if (instance == null) {
81 instance = new DOMImplementationImpl();
84 return instance;
  /external/webkit/JavaScriptCore/wtf/qt/
MainThreadQt.cpp 51 moveToThread(QCoreApplication::instance()->thread());
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLPlugInElementCustom.cpp 55 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance());
56 if (instance.IsEmpty())
59 return npObjectGetNamedProperty(instance, name);
70 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance());
71 if (instance.IsEmpty())
74 return npObjectSetNamedProperty(instance, name, value);
140 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance());
    [all...]
  /external/webkit/WebCore/platform/qt/
SharedTimerQt.cpp 75 timer = new SharedTimerQt(QCoreApplication::instance());
110 if (!QCoreApplication::instance())
118 if (!QCoreApplication::instance())
126 if (!QCoreApplication::instance())
  /external/webkit/WebCore/platform/win/
GDIObjectCounter.h 47 GDIObjectCounter(const String& className, void* instance);
  /external/webkit/WebKit/android/plugins/
ANPEventInterface.cpp 59 static void anp_postEvent(NPP instance, const ANPEvent* event) {
60 if (instance && instance->ndata && event) {
61 PluginView* pluginView = static_cast<PluginView*>(instance->ndata);
  /external/webkit/WebCore/platform/graphics/wince/
MediaPlayerProxy.cpp 130 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/easymock/src/org/easymock/internal/
EasyMockProperties.java 39 private static volatile EasyMockProperties instance; field in class:EasyMockProperties
44 if (instance == null) {
47 if (instance == null) {
49 instance = new EasyMockProperties();
53 return instance;
  /external/guava/src/com/google/common/base/
Objects.java 75 * Creates an instance of {@link ToStringHelper}.
107 private final Object instance; field in class:Objects.ToStringHelper
110 * Use {@link Objects#toStringHelper(Object)} to create an instance.
112 private ToStringHelper(Object instance) {
113 this.instance = Preconditions.checkNotNull(instance);
143 .append(simpleName(instance.getClass()))
  /frameworks/base/core/java/android/gesture/
Instance.java 21 * An instance represents a sample if the label is available or a query if the
24 class Instance {
41 // the id of the instance
44 private Instance(long id, float[] sample, String sampleName) {
66 * create a learning instance for a single stroke gesture
70 * @return the instance
72 static Instance createInstance(int sequenceType, int orientationType, Gesture gesture, String label) {
74 Instance instance; local
77 instance = new Instance(gesture.getID(), pts, label)
    [all...]
  /development/samples/BrowserPlugin/jni/navigation/
NavigationPlugin.cpp 42 static void inval(NPP instance) {
43 browser->invalidaterect(instance, NULL);
54 static void inval(NPP instance, const ANPRectF& r, bool doAA) {
57 PluginObject *obj = reinterpret_cast<PluginObject*>(instance->pdata);
63 browser->invalidaterect(instance, &inval);
113 NPP instance = this->inst(); local
114 PluginObject *obj = (PluginObject*) instance->pdata;
167 NPP instance = this->inst(); local
182 gLogI.log(kDebug_ANPLogType, "----%p Loosing Focus", instance);
184 inval(instance);
213 NPP instance = this->inst(); local
    [all...]
  /dalvik/hit/src/com/android/hit/
ClassObj.java 25 public class ClassObj extends Instance implements Comparable<ClassObj> {
36 ArrayList<Instance> mInstances = new ArrayList<Instance>();
82 Instance instance = state.findReference(id); local
84 instance.addParent(this);
90 instance.getTypeName(),
91 instance.mHeap.mName,
127 public final void addInstance(Instance instance) {
216 Instance instance = state.findReference(id); local
    [all...]
ArrayInstance.java 23 public class ArrayInstance extends Instance {
43 * mData holds a stream of object instance ids
62 Instance instance = state.findReference(id); local
64 if (instance != null) {
65 instance.addParent(this);
79 public final void visit(Set<Instance> resultSet, Filter filter) {
98 * mData holds a stream of object instance ids
118 Instance instance = state.findReference(id) local
    [all...]
Heap.java 42 HashMap<Long, Instance> mInstances = new HashMap<Long, Instance>();
91 public final void addInstance(long id, Instance instance) {
92 mInstances.put(id, instance);
95 public final Instance getInstance(long id) {
137 for (Instance instance: theClass.mInstances) {
138 size += instance.getCompositeSize();
150 * parent class definition objects. Then have each instance resolv
    [all...]
  /external/webkit/WebKit/win/
COMEnumVariant.h 78 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;
WebMutableURLRequest.cpp 62 WebMutableURLRequest* instance = new WebMutableURLRequest(true); local
63 instance->AddRef();
64 return instance;
69 WebMutableURLRequest* instance = new WebMutableURLRequest(true); local
70 instance->AddRef();
71 instance->m_request = static_cast<WebMutableURLRequest*>(req)->m_request;
72 return instance;
77 WebMutableURLRequest* instance = new WebMutableURLRequest(true); local
78 instance->AddRef();
79 instance->m_request = request
85 WebMutableURLRequest* instance = new WebMutableURLRequest(false); local
92 WebMutableURLRequest* instance = new WebMutableURLRequest(false); local
    [all...]
WebURLCredential.cpp 55 WebURLCredential* instance = new WebURLCredential(Credential()); local
56 instance->AddRef();
57 return instance;
62 WebURLCredential* instance = new WebURLCredential(credential); local
63 instance->AddRef();
64 return instance;
  /external/e2fsprogs/tests/defaults/
e_script 12 instance=`echo $test_name | sed -e 's/e_\([^_]*\)_\(.*\)/\2/'`
31 cat $SRCDIR/progs/test_data/$instance.setup $SRCDIR/progs/test_data/test.$class \
47 unset EXPECT OUT class instance
  /external/webkit/WebKitExamplePlugins/NetscapeCocoaPlugin/
MenuHandler.m 40 browserFuncs->geturl(instance, "http://www.apple.com/", "_blank");
61 - (id)initWithBrowserFuncs:(NPNetscapeFuncs *)theBrowserFuncs instance:(NPP)theInstance;
68 instance = theInstance;
  /external/webkit/WebCore/bridge/jni/jsc/
JNIBridgeJSC.cpp 79 jvalue JavaField::dispatchValueFromInstance(ExecState* exec, const JavaInstance* instance, const char* name, const char* sig, JNIType returnType) const
81 jobject jinstance = instance->javaInstance();
91 RootObject* rootObject = instance->rootObject();
106 JSValue JavaField::valueFromInstance(ExecState* exec, const Instance* i) const
108 const JavaInstance* instance = static_cast<const JavaInstance*>(i); local
116 jvalue result = dispatchValueFromInstance(exec, instance, "get", "(Ljava/lang/Object;)Ljava/lang/Object;", object_type);
121 jsresult = JavaArray::convertJObjectToArray(exec, anObject, arrayType, instance->rootObject());
123 jsresult = JavaInstance::create(anObject, instance->rootObject())->createRuntimeObject(exec);
128 jsresult = jsBoolean(dispatchValueFromInstance(exec, instance, "getBoolean", "(Ljava/lang/Object;)Z", boolean_type).z);
138 jvalue result = dispatchValueFromInstance(exec, instance, "getInt", "(Ljava/lang/Object;)I", int_type)
191 const JavaInstance* instance = static_cast<const JavaInstance*>(i); local
    [all...]
  /external/webkit/WebCore/bridge/jni/v8/
JavaInstanceV8.cpp 46 JavaInstance::JavaInstance(jobject instance)
48 m_instance = new JObjectWrapper(instance);
153 JObjectWrapper::JObjectWrapper(jobject instance)
156 assert(instance);
158 if (!instance)
166 m_instance = m_env->NewGlobalRef(instance);
168 LOGV("new global ref %p for %p\n", m_instance, instance);
172 LOGE("%s: could not get GlobalRef for %p\n", __PRETTY_FUNCTION__, instance);
  /development/host/windows/usb/winusb/
AdbWinUsbApi.cpp 29 extern "C" BOOL WINAPI DllMain(HINSTANCE instance,
35 /** \brief Instantiates interface instance that uses WinUsb API to communicate
42 @return AdbInterfaceObject - casted instance of AdbWinUsbInterfaceObject
  /external/webkit/WebCore/bridge/c/
c_class.cpp 73 MethodList CClass::methodsNamed(const Identifier& identifier, Instance* instance) const
84 const CInstance* inst = static_cast<const CInstance*>(instance);
98 Field* CClass::fieldNamed(const Identifier& identifier, Instance* instance) const
105 const CInstance* inst = static_cast<const CInstance*>(instance);

Completed in 1618 milliseconds

1 23 4 5 6 7 8 91011>>