HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 226 - 250 of 966) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/base/
Suppliers.java 73 * Returns a supplier which caches the instance retrieved during the first
80 * get()} is called on the reserialized instance.
82 * <p>If {@code delegate} is an instance created by an earlier call to {@code
123 * Returns a supplier that caches the instance supplied by the delegate and
132 * get()} is called on the reserialized instance.
190 * Returns a supplier that always supplies {@code instance}.
192 public static <T> Supplier<T> ofInstance(@Nullable T instance) {
193 return new SupplierOfInstance<T>(instance);
198 final T instance; field in class:Suppliers.SupplierOfInstance
200 SupplierOfInstance(@Nullable T instance) {
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_pixmapruntime.cpp 47 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
48 virtual Field* fieldNamed(const Identifier&, Instance*) const;
55 virtual JSValue valueFromInstance(ExecState*, const Instance* instance) const
57 return jsNumber(static_cast<const QtPixmapInstance*>(instance)->width());
59 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const {}
65 virtual JSValue valueFromInstance(ExecState*, const Instance* instance) const
67 return jsNumber(static_cast<const QtPixmapInstance*>(instance)->height());
69 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const {
329 QtPixmapInstance* instance = static_cast<QtPixmapInstance*>(runtimeObject->getInternalInstance()); local
356 RefPtr<QtPixmapInstance> instance = adoptRef(new QtPixmapInstance(root, data)); local
    [all...]
  /cts/tools/vm-tests-tf/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...]
  /frameworks/av/media/libstagefright/omx/
OMX.cpp 167 OMXNodeInstance *instance; local
175 instance = mLiveNodes.editValueAt(index);
178 index = mDispatchers.indexOfKey(instance->nodeID());
182 invalidateNodeID_l(instance->nodeID());
185 instance->onObserverDied(mMaster);
226 OMXNodeInstance *instance = new OMXNodeInstance(this, observer); local
231 instance, &handle);
236 instance->onGetHandleFailed();
241 *node = makeNodeID(instance);
242 mDispatchers.add(*node, new CallbackDispatcher(instance));
253 OMXNodeInstance *instance = findInstance(node); local
    [all...]
  /external/webkit/Source/WebKit2/Platform/unix/
SharedMemoryUnix.cpp 148 RefPtr<SharedMemory> instance = adoptRef(new SharedMemory()); local
149 instance->m_data = data;
150 instance->m_fileDescriptor = fileDescriptor;
151 instance->m_size = size;
152 return instance.release();
176 RefPtr<SharedMemory> instance = adoptRef(new SharedMemory());
177 instance->m_data = data;
178 instance->m_fileDescriptor = handle.m_fileDescriptor;
179 instance->m_size = handle.m_size;
181 return instance;
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGUseElement.cpp 87 // If there is no element instance tree, force immediate SVGElementInstance tree
245 for (SVGElementInstance* instance = targetInstance->firstChild(); instance; instance = instance->nextSibling())
246 updateContainerSize(instance);
298 for (SVGElementInstance* instance = targetInstance->firstChild(); instance; instance = instance->nextSibling()
735 RefPtr<SVGElementInstance> instance = SVGElementInstance::create(this, 0, element); local
    [all...]
  /dalvik/hit/src/com/android/hit/
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/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginHostManager.mm 244 RefPtr<NetscapePluginInstanceProxy> instance = NetscapePluginInstanceProxy::create(hostProxy, pluginView, fullFrame);
245 uint32_t requestID = instance->nextRequestID();
246 kern_return_t kr = _WKPHInstantiatePlugin(hostProxy->port(), requestID, (uint8_t*)[data bytes], [data length], instance->pluginID());
248 // Invalidate the instance.
249 instance->invalidate();
257 // Create a new instance.
258 instance = NetscapePluginInstanceProxy::create(hostProxy, pluginView, fullFrame);
259 requestID = instance->nextRequestID();
260 kr = _WKPHInstantiatePlugin(hostProxy->port(), requestID, (uint8_t*)[data bytes], [data length], instance->pluginID());
263 auto_ptr<NetscapePluginInstanceProxy::InstantiatePluginReply> reply = instance->waitForReply<NetscapePluginInstanceProxy::InstantiatePluginReply>(requestID)
    [all...]
  /external/webkit/Source/WebKit/win/
WebURLAuthenticationChallenge.cpp 63 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, 0); local
64 instance->AddRef();
65 return instance;
71 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, sender); local
72 instance->AddRef();
73 return instance;
WebFramePolicyListener.cpp 55 WebFramePolicyListener* instance = new WebFramePolicyListener(frame); local
56 instance->AddRef();
57 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;
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserFactory.java 160 * Creates a new instance of a XML Pull Parser
163 * @return A new instance of a XML Pull Parser.
202 * Creates a new instance of a XML Serializer.
206 * @return A new instance of a XML Serializer.
240 * Create a new instance of a PullParserFactory that can be used
244 * @return a new instance of a PullParserFactory, as returned by newInstance (null, null);
305 Object instance = null; local
310 instance = candidate.newInstance ();
316 if (instance instanceof XmlPullParser) {
320 if (instance instanceof XmlSerializer)
    [all...]
  /external/guava/guava-gwt/src/com/google/common/collect/
Multimap_CustomFieldSerializerBase.java 69 SerializationStreamWriter writer, Multimap<?, ?> instance)
71 writer.writeInt(instance.asMap().size());
73 : instance.asMap().entrySet()) {
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 149 * Runs {@link #testMethod} on every public instance method of
150 * {@code instance}.
152 public void testAllPublicInstanceMethods(Object instance) throws Exception {
153 Class<?> c = instance.getClass();
156 testMethod(instance, method);
166 * @param instance the instance to invoke {@code method} on, or null if
169 public void testMethod(Object instance, Method method) throws Exception {
172 testMethodParameter(instance, method, nullIndex);
194 * @param instance the instance to invoke {@code method} on, or null i
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
TileTexture.cpp 51 ClassTracker::instance()->increment("TileTexture");
58 ClassTracker::instance()->decrement("TileTexture");
126 ShaderProgram* shader = TilesManager::instance()->shader();
  /external/webkit/Source/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&);
  /external/webkit/Tools/WebKitTestRunner/qt/
TestControllerQt.cpp 47 static TestControllerRunLoop* instance() function in class:WTR::TestControllerRunLoop
80 TestControllerRunLoop::instance()->stop();
89 TestControllerRunLoop::instance()->start(static_cast<int>(timeout * 1000));
  /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);
  /external/chromium/chrome/browser/chromeos/login/
account_creation_view.h 41 SiteInstance* instance);
  /external/chromium/chrome/browser/hang_monitor/
hung_plugin_action.cc 150 HungPluginAction* instance = reinterpret_cast<HungPluginAction*>(data); local
151 DCHECK(NULL != instance);
152 if (NULL != instance) {
153 instance->OnWindowResponsive(target_window);
  /external/chromium/third_party/libjingle/source/talk/base/
win32window.h 53 static void SetInstance(HINSTANCE instance);
  /external/llvm/bindings/python/llvm/
common.py 85 def __get__(self, instance, instance_type=None):
86 if instance is None:
89 value = self.wrapped(instance)
90 setattr(instance, self.wrapped.__name__, value)
  /external/mockito/src/org/mockito/
MockSettings.java 59 * @return settings instance so that you can fluently specify other settings
79 * @return settings instance so that you can fluently specify other settings
84 * Specifies the instance to spy on. Makes sense only for spies/partial mocks.
86 * Sets the instance that will be spied. Actually copies the internal fields of the passed instance to the mock.
120 * @param instance to spy on
121 * @return settings instance so that you can fluently specify other settings
123 MockSettings spiedInstance(Object instance);
141 * @return settings instance so that you can fluently specify other settings
159 * @return settings instance so that you can fluently specify other setting
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8GCForContextDispose.cpp 61 V8GCForContextDispose& V8GCForContextDispose::instance() function in class:WebCore::V8GCForContextDispose

Completed in 576 milliseconds

1 2 3 4 5 6 7 8 91011>>