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

1 2 3 4 56 7 8 91011>>

  /external/webkit/WebKit/win/
WebURLResponse.cpp 229 WebURLResponse* instance = new WebURLResponse(); local
231 instance->m_response = ResourceResponse(KURL(ParsedURLString, "http://"), String(), 0, String(), String());
232 instance->AddRef();
233 return instance;
241 WebURLResponse* instance = new WebURLResponse();
242 instance->AddRef();
243 instance->m_response = response;
245 return instance;
WebBackForwardList.cpp 73 WebBackForwardList* instance; local
75 instance = backForwardListWrappers().get(backForwardList.get());
77 if (!instance)
78 instance = new WebBackForwardList(backForwardList);
80 instance->AddRef();
81 return instance;
WebURLProtectionSpace.cpp 55 WebURLProtectionSpace* instance = new WebURLProtectionSpace(ProtectionSpace()); local
56 instance->AddRef();
57 return instance;
62 WebURLProtectionSpace* instance = new WebURLProtectionSpace(protectionSpace); local
63 instance->AddRef();
64 return instance;
COMPropertyBag.h 83 COMPropertyBag* instance = new COMPropertyBag(hashMap); local
84 instance->AddRef();
85 return instance;
91 COMPropertyBag* instance = new COMPropertyBag; local
92 instance->m_hashMap.swap(hashMap);
93 instance->AddRef();
94 return instance;
DefaultPolicyDelegate.cpp 68 DefaultPolicyDelegate* instance = new DefaultPolicyDelegate(); local
69 instance->AddRef();
70 return instance;
WebActionPropertyBag.cpp 64 WebActionPropertyBag* instance = new WebActionPropertyBag(action, form, frame); local
65 instance->AddRef();
66 return instance;
WebCoreStatistics.cpp 57 WebCoreStatistics* instance = new WebCoreStatistics(); local
58 instance->AddRef();
59 return instance;
WebError.cpp 60 WebError* instance = new WebError(error, userInfo); local
61 instance->AddRef();
62 return instance;
  /external/netperf/
netcpu_pstatnew.c 157 print_cpu_time_counters(char *name, int instance, cpu_time_counters_t *counters)
159 fprintf(where,"%s[%d]:\n",name,instance);
161 "\t idle %llu\n",counters[instance].idle);
163 "\t user %llu\n",counters[instance].user);
165 "\t kernel %llu\n",counters[instance].kernel);
167 "\t interrupt %llu\n",counters[instance].interrupt);
netcpu_kstat10.c 57 print_cpu_time_counters(char *name, int instance, cpu_time_counters_t *counters)
59 fprintf(where,"%s[%d]:\n",name,instance);
61 "\t idle %llu\n",counters[instance].idle);
63 "\t user %llu\n",counters[instance].user);
65 "\t kernel %llu\n",counters[instance].kernel);
67 "\t interrupt %llu\n",counters[instance].interrupt);
197 "get_cpu_counters: kstat_lookup failed for module 'cpu' instance %d name 'sys' and KSTAT_TYPE_NAMED: errno %d %s\n",
269 "get_cpu_counters: kstat_lookup failed for module 'cpu' instance %d class 'intrstat' and KSTAT_TYPE_NAMED: errno %d %s\n",
  /frameworks/base/core/java/android/text/
AutoText.java 82 * Returns the instance of AutoText. If the locale has changed, it will create a new
83 * instance of AutoText for the locale.
85 * @return the single instance of AutoText
90 AutoText instance; local
93 instance = sInstance;
95 if (!locale.equals(instance.mLocale)) {
96 instance = new AutoText(res);
97 sInstance = instance;
101 return instance;
  /external/webkit/WebKit/mac/Plugins/Hosted/
HostedNetscapePluginStream.mm 54 HostedNetscapePluginStream::HostedNetscapePluginStream(NetscapePluginInstanceProxy* instance, uint32_t streamID, NSURLRequest *request)
55 : m_instance(instance)
62 if (SecurityOrigin::shouldHideReferrer([request URL], core([instance->pluginView() webFrame])->loader()->outgoingReferrer()))
70 HostedNetscapePluginStream::HostedNetscapePluginStream(NetscapePluginInstanceProxy* instance, WebCore::FrameLoader* frameLoader)
71 : m_instance(instance)
  /external/bluetooth/glib/gobject/
gvalue.c 331 * @instance: the instance
338 gpointer instance)
346 if (instance)
348 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
349 g_return_if_fail (g_value_type_compatible (G_TYPE_FROM_INSTANCE (instance), G_VALUE_TYPE (value)));
358 cvalue.v_pointer = instance;
gtype.c 336 InstanceData instance; member in union:_TypeData
792 /* check instance members */
844 /* check instance size */
849 g_warning ("specified instance size for type `%s' is smaller than `GTypeInstance' size",
853 if (pnode && info->instance_size < pnode->data->instance.instance_size)
855 g_warning ("specified instance size for type `%s' is smaller "
856 "than the parent type's `%s' instance size",
1539 gpointer instance; member in struct:__anon1396
1632 GTypeInstance *instance; local
1717 g_slice_free1 (type_total_instance_size_I (node), instance); local
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSGlobalData.cpp 162 // Zeroing out to make the behavior more predictable when someone attempts to use a deleted instance.
225 JSGlobalData*& instance = sharedInstanceInternal(); local
226 if (!instance) {
227 instance = new JSGlobalData(true);
229 instance->makeUsableFromMultipleThreads();
232 return *instance;
  /external/webkit/WebCore/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 68 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function); local
69 if (instance.IsEmpty()) {
73 V8DOMWrapper::setDOMWrapper(instance, V8ClassIndex::ToInt(descriptorType), host);
77 v8::Persistent<v8::Object> weakHandle = v8::Persistent<v8::Object>::New(instance);
79 return instance;
103 // to create and configure InjectedScript instance that is going to be used by the inspector.
  /external/stlport/test/unit/
sort_test.cpp 184 SortTestAux instance(copy_constructor_called);
185 SortTestAux &r_instance = instance;
186 SortTestAux const& rc_instance = instance;
  /external/webkit/WebCore/bridge/c/
c_utility.cpp 90 CInstance* instance = static_cast<CInstance*>(imp->getInternalInstance()); local
91 if (instance) {
92 NPObject* obj = instance->getObject();
  /external/v8/test/mjsunit/regress/
regress-1493017.js 36 // Create an instance of C. Add a property to the instance and then
46 // Create a new instance of C.
  /external/v8/test/mjsunit/bugs/
618.js 37 // first instance.
52 // first instance.
67 // first instance.
82 // first instance.
  /external/webkit/WebCore/bindings/js/
JSEventTarget.cpp 102 if (SVGElementInstance* instance = target->toSVGElementInstance())
103 return toJS(exec, globalObject, instance);
  /external/webkit/WebCore/workers/
DefaultSharedWorkerRepository.cpp 189 DefaultSharedWorkerRepository::instance().removeProxy(this);
293 DefaultSharedWorkerRepository::instance().workerScriptLoaded(*m_proxy, m_worker->scriptExecutionContext()->userAgent(m_scriptLoader->url()), m_scriptLoader->script(), m_port.release());
299 DefaultSharedWorkerRepository& DefaultSharedWorkerRepository::instance() function in class:WebCore::DefaultSharedWorkerRepository
301 AtomicallyInitializedStatic(DefaultSharedWorkerRepository*, instance = new DefaultSharedWorkerRepository);
302 return *instance;
328 DefaultSharedWorkerRepository::instance().connectToWorker(worker, port, url, name, ec);
333 DefaultSharedWorkerRepository::instance().documentDetached(document);
338 return DefaultSharedWorkerRepository::instance().hasSharedWorkers(document);
  /frameworks/base/services/java/com/android/server/am/
DeviceMonitor.java 222 private static DeviceMonitor instance = new DeviceMonitor(); field in class:DeviceMonitor
228 instance.startMonitoring();
  /packages/apps/Gallery/tests/src/com/android/camera/
BitmapManagerUnitTests.java 54 mBitmapManager = BitmapManager.instance();
65 BitmapManager manager = BitmapManager.instance();
  /cts/tools/vm-tests/src/dot/junit/opcodes/return_object/d/
T_return_object_12.d 29 new-instance v1, dot/junit/opcodes/return_object/d/TChild
39 instance-of v0, v2, dot/junit/opcodes/return_object/d/TChild

Completed in 1488 milliseconds

1 2 3 4 56 7 8 91011>>