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

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/storage/chromium/
QuotaTracker.h 43 static QuotaTracker& instance();
  /external/webkit/WebKit/mac/Plugins/Hosted/
HostedNetscapePluginStream.h 50 static PassRefPtr<HostedNetscapePluginStream> create(NetscapePluginInstanceProxy* instance, uint32_t streamID, NSURLRequest *request)
52 return adoptRef(new HostedNetscapePluginStream(instance, streamID, request));
54 static PassRefPtr<HostedNetscapePluginStream> create(NetscapePluginInstanceProxy* instance, WebCore::FrameLoader* frameLoader)
56 return adoptRef(new HostedNetscapePluginStream(instance, frameLoader));
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...]
  /frameworks/base/awt/javax/imageio/spi/
IIORegistry.java 53 * The instance.
55 private static IIORegistry instance; field in class:IIORegistry
94 * Gets the default IIORegistry instance.
96 * @return the default IIORegistry instance.
99 // TODO implement own instance for each ThreadGroup (see also
102 if (instance == null) {
103 instance = new IIORegistry();
105 return instance;
  /dalvik/hit/src/com/android/hit/
Instance.java 23 public abstract class Instance {
26 // Id of the ClassObj of which this object is an instance
39 public boolean accept(Instance instance);
43 private ArrayList<Instance> mParents;
52 * for in a heap other than the one this Instance is in.
62 public abstract void visit(Set<Instance> resultSet, Filter filter);
69 HashSet<Instance> set = new HashSet<Instance>();
75 for (Instance instance: set)
    [all...]
ClassInstance.java 24 public class ClassInstance extends Instance {
71 Instance instance = state.findReference(id); local
73 if (instance != null) {
74 instance.addParent(this);
93 public final void visit(Set<Instance> resultSet, Filter filter) {
131 Instance instance = state.findReference(id); local
133 if (instance != null) {
134 instance.visit(resultSet, filter)
    [all...]
  /external/webkit/WebKit/win/
WebJavaScriptCollector.cpp 58 WebJavaScriptCollector* instance = new WebJavaScriptCollector(); local
59 instance->AddRef();
60 return instance;
WebTextRenderer.cpp 42 WebTextRenderer* instance = new WebTextRenderer; local
43 instance->AddRef();
44 return instance;
WebURLAuthenticationChallengeSender.cpp 61 WebURLAuthenticationChallengeSender* instance = new WebURLAuthenticationChallengeSender(client); local
62 instance->AddRef();
63 return instance;
WebDownload.cpp 89 WebDownload* instance = new WebDownload(); local
90 instance->AddRef();
91 return instance;
96 WebDownload* instance = new WebDownload(); local
97 instance->AddRef();
98 instance->init(handle, request, response, delegate);
99 return instance;
104 WebDownload* instance = new WebDownload(); local
105 instance->AddRef();
106 instance->init(url, delegate)
    [all...]
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;
  /external/webkit/WebCore/bridge/
runtime_method.cpp 109 RefPtr<Instance> instance = imp->getInternalInstance(); local
110 if (!instance)
113 instance->begin();
114 JSValue result = instance->invokeMethod(exec, *method->methods(), args);
115 instance->end();
  /external/guava/src/com/google/common/base/
Suppliers.java 70 * Returns a supplier which caches the instance retrieved during the first
77 * get()} is called on the reserialized instance.
105 * Returns a supplier that caches the instance supplied by the delegate and
114 * get()} is called on the reserialized instance.
155 * Returns a supplier that always supplies {@code instance}.
157 public static <T> Supplier<T> ofInstance(@Nullable T instance) {
158 return new SupplierOfInstance<T>(instance);
163 final T instance; field in class:Suppliers.SupplierOfInstance
165 SupplierOfInstance(T instance) {
166 this.instance = instance
    [all...]
  /external/webkit/WebCore/bridge/qt/
qt_instance.cpp 49 QtRuntimeObjectImp(ExecState*, PassRefPtr<Instance>);
56 QtInstance* instance = static_cast<QtInstance*>(getInternalInstance()); local
57 if (instance)
58 instance->markAggregate(markStack);
75 QtRuntimeObjectImp::QtRuntimeObjectImp(ExecState* exec, PassRefPtr<Instance> instance)
76 : RuntimeObjectImp(exec, WebCore::deprecatedGetDOMStructure<QtRuntimeObjectImp>(exec), instance)
82 : Instance(rootObject)
122 foreach(QtInstance* instance, cachedInstances.values(o))
123 if (instance->rootObject() == rootObject)
330 const QtInstance* instance = static_cast<const QtInstance*>(inst); local
357 const QtInstance* instance = static_cast<const QtInstance*>(inst); local
    [all...]
  /frameworks/base/media/libstagefright/omx/
OMX.cpp 104 OMXNodeInstance *instance = mOwner->findInstance(msg.node); local
105 if (instance == NULL) {
109 instance->onMessage(msg);
158 OMXNodeInstance *instance; local
166 instance = mLiveNodes.editValueAt(index);
169 invalidateNodeID_l(instance->nodeID());
172 instance->onObserverDied(mMaster);
213 OMXNodeInstance *instance = new OMXNodeInstance(this, observer); local
218 instance, &handle);
223 instance->onGetHandleFailed()
239 OMXNodeInstance *instance = findInstance(node); local
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/instance_of/d/
T_instance_of_2.d 63 new-instance v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass
65 instance-of v15, v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SuperClass
71 instance-of v15, v10, [Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SuperClass;
76 instance-of v15, v10, java/lang/Object
80 new-instance v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass
82 instance-of v15, v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SuperInterface
86 new-instance v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SuperClass
88 instance-of v15, v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass
92 new-instance v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass
94 instance-of v15, v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SuperInterface
    [all...]
  /external/webkit/WebCore/svg/
SVGUseElement.cpp 78 // If there is no element instance tree, force immediate SVGElementInstance tree
208 for (SVGElementInstance* instance = targetInstance->firstChild(); instance; instance = instance->nextSibling())
209 updateContainerSize(useElement, instance);
256 for (SVGElementInstance* instance = targetInstance->firstChild(); instance; instance = instance->nextSibling()
624 RefPtr<SVGElementInstance> instance = SVGElementInstance::create(this, element); local
    [all...]
  /external/webkit/WebKit/android/plugins/
PluginWidgetAndroid.cpp 77 PLUGIN_LOG("%p Deleting Plugin", m_pluginView->instance());
102 PLUGIN_LOG("%p Initialized Plugin", m_pluginView->instance());
124 PLUGIN_LOG("%p PluginBounds (%d,%d,%d,%d)", m_pluginView->instance(),
194 NPP instance = m_pluginView->instance(); local
198 pkg->pluginFuncs()->event(instance, &event)) {
239 m_pluginView->instance(), displayPlugin,
246 NPP instance = m_pluginView->instance(); local
249 pkg->pluginFuncs()->getvalue(instance, kJavaSurface_ANPGetValue
282 NPP instance = m_pluginView->instance(); local
    [all...]
  /dalvik/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/JavaScriptCore/wtf/qt/
ThreadingQt.cpp 72 static ThreadMonitor * instance() function in class:WTF::ThreadMonitor
74 static ThreadMonitor *instance = new ThreadMonitor(); local
75 return instance;
149 QThread* mainThread = QCoreApplication::instance()->thread();
176 QObject::connect(thread, SIGNAL(finished()), ThreadMonitor::instance(), SLOT(threadFinished()));
220 return QThread::currentThread() == QCoreApplication::instance()->thread();
  /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/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&);

Completed in 969 milliseconds

1 2 34 5 6 7 8 91011>>