HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 101 - 125 of 470) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/WebCore/bridge/objc/
objc_runtime.mm 93 JSValue ObjcField::valueFromInstance(ExecState* exec, const Instance* instance) const
97 id targetObject = (static_cast<const ObjcInstance*>(instance))->getObject();
103 result = convertObjcValueToValue(exec, &objcValue, ObjcObjectType, instance->rootObject());
123 void ObjcField::setValueToInstance(ExecState* exec, const Instance* instance, JSValue aValue) const
125 id targetObject = (static_cast<const ObjcInstance*>(instance))->getObject();
225 Instance* instance = imp->getInternalInstance();
227 if (!instance)
    [all...]
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginHostManager.mm 249 RefPtr<NetscapePluginInstanceProxy> instance = NetscapePluginInstanceProxy::create(hostProxy, pluginView, fullFrame);
250 uint32_t requestID = instance->nextRequestID();
251 kern_return_t kr = _WKPHInstantiatePlugin(hostProxy->port(), requestID, (uint8_t*)[data bytes], [data length], instance->pluginID());
253 // Invalidate the instance.
254 instance->invalidate();
262 // Create a new instance.
263 instance = NetscapePluginInstanceProxy::create(hostProxy, pluginView, fullFrame);
264 requestID = instance->nextRequestID();
265 kr = _WKPHInstantiatePlugin(hostProxy->port(), requestID, (uint8_t*)[data bytes], [data length], instance->pluginID());
268 auto_ptr<NetscapePluginInstanceProxy::InstantiatePluginReply> reply = instance->waitForReply<NetscapePluginInstanceProxy::InstantiatePluginReply>(requestID)
    [all...]
  /external/webkit/WebKit/win/
WebURLAuthenticationChallenge.cpp 66 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, 0); local
67 instance->AddRef();
68 return instance;
74 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, sender); local
75 instance->AddRef();
76 return instance;
WebFramePolicyListener.cpp 58 WebFramePolicyListener* instance = new WebFramePolicyListener(frame); local
59 instance->AddRef();
60 return instance;
WebKitStatistics.cpp 61 WebKitStatistics* instance = new WebKitStatistics(); local
62 instance->AddRef();
63 return instance;
WebNotification.cpp 67 WebNotification* instance = new WebNotification(name, anObject, userInfo); local
68 instance->AddRef();
69 return instance;
WebNavigationData.cpp 86 WebNavigationData* instance = new WebNavigationData(url, title, request, response, hasSubstituteData, clientRedirectSource); local
87 instance->AddRef();
88 return instance;
WebResource.cpp 63 WebResource* instance = new WebResource(memoryStream.get(), response.url(), response.mimeType(), response.textEncodingName(), String()); local
64 instance->AddRef();
65 return instance;
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserFactory.java 162 * Creates a new instance of a XML Pull Parser
165 * @return A new instance of a XML Pull Parser.
204 * Creates a new instance of a XML Serializer.
208 * @return A new instance of a XML Serializer.
242 * Create a new instance of a PullParserFactory that can be used
246 * @return a new instance of a PullParserFactory, as returned by newInstance (null, null);
307 Object instance = null; local
312 instance = candidate.newInstance ();
318 if (instance instanceof XmlPullParser) {
322 if (instance instanceof XmlSerializer)
    [all...]
  /external/webkit/WebCore/plugins/
PluginStream.h 60 static PassRefPtr<PluginStream> create(PluginStreamClient* client, Frame* frame, const ResourceRequest& request, bool sendNotification, void* notifyData, const NPPluginFuncs* functions, NPP instance, const PluginQuirkSet& quirks)
62 return adoptRef(new PluginStream(client, frame, request, sendNotification, notifyData, functions, instance, quirks));
86 PluginStream(PluginStreamClient*, Frame*, const ResourceRequest&, bool sendNotification, void* notifyData, const NPPluginFuncs*, NPP instance, const PluginQuirkSet&);
  /hardware/ti/omap3/omx/core_plugin/omx_core_plugin/src/
ti_omx_interface.cpp 52 static TIOMXInterface* Instance()
126 return TIOMXInterface::Instance();
131 TIOMXInterface* instance = (TIOMXInterface*)aInstance; local
132 if (instance)
133 OSCL_DELETE(instance);
  /hardware/ril/mock-ril/src/cpp/
protobuf_v8.cpp 191 reflection->GetRepeated##TYPE(instance, field, index) : \
192 reflection->Get##TYPE(instance, field))
194 static Handle<Value> ToJs(const Message& instance,
199 DBG("Type::ToJs(instance, refelction, field, message_type) E:");
239 Handle<Object> ToJs(const Message& instance) const {
241 const Reflection* reflection = instance.GetReflection();
242 const Descriptor* descriptor = instance.GetDescriptor();
250 if (repeated && !reflection->FieldSize(instance, field)) {
254 if (!repeated && !reflection->HasField(instance, field)) {
265 int size = reflection->FieldSize(instance, field)
    [all...]
  /external/bluetooth/glib/gobject/
gtype.h 291 * process of creating an instance (object) of this type.
422 * @instance_size: the size of the instance structure.
442 * @instance: Location of a #GTypeInstance structure.
444 * Checks if @instance is a valid #GTypeInstance structure,
451 #define G_TYPE_CHECK_INSTANCE(instance) (_G_TYPE_CHI ((GTypeInstance*) (instance)))
454 * @instance: Location of a #GTypeInstance structure.
458 * Checks that @instance is an instance of the type identified by @g_type
459 * and issues a warning if this is not the case. Returns @instance casted
    [all...]
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
ButtonActivity.java 39 final ButtonActivity instance = this; local
50 InputMethodManager imm = InputMethodManager.getInstance(instance);
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.c 333 android_app_free((struct android_app*)activity->instance);
338 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_START);
343 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_RESUME);
347 struct android_app* android_app = (struct android_app*)activity->instance;
372 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_PAUSE);
377 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_STOP);
381 struct android_app* android_app = (struct android_app*)activity->instance;
387 struct android_app* android_app = (struct android_app*)activity->instance;
394 android_app_write_cmd((struct android_app*)activity->instance,
400 android_app_set_window((struct android_app*)activity->instance, window)
    [all...]
  /dalvik/hit/src/com/android/hit/
State.java 103 public final void addInstance(long id, Instance instance) {
104 mCurrentHeap.addInstance(id, instance);
111 public final Instance findReference(long id) {
113 Instance instance = heap.getInstance(id); local
115 if (instance != null) {
116 return instance;
120 // Couldn't find an instance of a class, look for a class object
151 "+------------------ instance counts for heap: " + heap.mName)
    [all...]
Queries.java 45 * parent object, this will give you an Instance.
50 * in question, this will give you an Instance.
135 public static Instance[] instancesOf(State state, String baseClassName) {
143 Instance[] instances = new Instance[theClass.mInstances.size()];
152 public static Instance[] allInstancesOf(State state, String baseClassName) {
165 ArrayList<Instance> instanceList = new ArrayList<Instance>();
171 Instance[] result = new Instance[instanceList.size()]
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ImageLoader.java 37 * when getting the instance. Instances are cached and associated to the class passed to
57 * Private constructor, creating an instance associated with a class.
68 * Returns the {@link ImageLoader} instance to load images from ddmuilib.jar
82 * class instance, and since the loader will also cache the loaded images, it is recommended
87 ImageLoader instance = mInstances.get(theClass); local
88 if (instance == null) {
89 instance = new ImageLoader(theClass);
90 mInstances.put(theClass, instance);
93 return instance;
  /frameworks/base/media/libstagefright/omx/
OMX.cpp 159 OMXNodeInstance *instance; local
167 instance = mLiveNodes.editValueAt(index);
170 index = mDispatchers.indexOfKey(instance->nodeID());
174 invalidateNodeID_l(instance->nodeID());
177 instance->onObserverDied(mMaster);
218 OMXNodeInstance *instance = new OMXNodeInstance(this, observer); local
223 instance, &handle);
228 instance->onGetHandleFailed();
233 *node = makeNodeID(instance);
234 mDispatchers.add(*node, new CallbackDispatcher(instance));
245 OMXNodeInstance *instance = findInstance(node); local
    [all...]
OMXNodeInstance.cpp 436 OMXNodeInstance *instance = static_cast<OMXNodeInstance *>(pAppData); local
437 if (instance->mDying) {
440 return instance->owner()->OnEvent(
441 instance->nodeID(), eEvent, nData1, nData2, pEventData);
449 OMXNodeInstance *instance = static_cast<OMXNodeInstance *>(pAppData); local
450 if (instance->mDying) {
453 return instance->owner()->OnEmptyBufferDone(instance->nodeID(), pBuffer);
461 OMXNodeInstance *instance = static_cast<OMXNodeInstance *>(pAppData); local
462 if (instance->mDying)
    [all...]
  /development/samples/BrowserPlugin/jni/animation/
AnimationPlugin.cpp 46 static void inval(NPP instance, const ANPRectF& r, bool doAA) {
54 browser->invalidaterect(instance, &inval);
161 NPP instance = this->inst(); local
162 PluginObject *obj = (PluginObject*) instance->pdata;
172 gWindowI.setVisibleRects(instance, visibleRects, 1);
173 gWindowI.clearVisibleRects(instance);
177 NPP instance = this->inst(); local
  /external/webkit/WebCore/bridge/jni/jsc/
JavaInstanceJSC.cpp 62 JavaInstance::JavaInstance(jobject instance, PassRefPtr<RootObject> rootObject)
63 : Instance(rootObject)
65 m_instance = new JObjectWrapper(instance);
328 JObjectWrapper::JObjectWrapper(jobject instance)
331 assert(instance);
333 if (!instance)
337 // Cache the JNIEnv used to get the global ref for this java instance.
341 m_instance = m_env->NewGlobalRef(instance);
343 JS_LOG("new global ref %p for %p\n", m_instance, instance);
347 LOGE("%s: could not get GlobalRef for %p\n", __PRETTY_FUNCTION__, instance);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audiodev.c 77 int exists, instance; local
80 instance = 1;
83 "%s%d", audiodev, instance++);
  /frameworks/base/core/java/android/util/
Xml.java 111 return XmlSerializerFactory.instance.newSerializer();
121 static final XmlPullParserFactory instance; field in class:Xml.XmlSerializerFactory
124 instance = XmlPullParserFactory.newInstance(TYPE, null);
  /development/host/windows/usb/api/
AdbWinApi.cpp 101 extern "C" BOOL WINAPI DllMain(HINSTANCE instance,

Completed in 2422 milliseconds

1 2 3 45 6 7 8 91011>>