HomeSort by relevance Sort by last modified time
    Searched defs:instances (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/chrome/browser/
site_details.h 24 std::vector<content::SiteInstance*> instances; member in struct:SiteData
  /external/chromium_org/third_party/npapi/npspy/include/
epmanager.h 61 InstanceList * instances; member in struct:PluginEntryPointList
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
InstanceOnlyModifierDebuggee.java 66 logWriter.println("Create instances");
67 final TestClass[] instances = new TestClass[10]; local
68 for (int i = 0; i < instances.length; ++i) {
69 instances[i] = new TestClass();
73 INSTANCE_ONLY = instances[instances.length - 1];
84 for (int i = 0; i < instances.length; ++i) {
85 instances[i].eventTestMethod();
89 for (int i = 0; i < instances.length; ++i) {
90 instances[i].throwAndCatchException()
    [all...]
  /dalvik/hit/src/com/android/hit/
Main.java 85 Instance[] instances = Queries.instancesOf(state, "java.lang.String"); local
87 System.out.println("There are " + instances.length + " Strings.");
91 Instance[] instances = Queries.allInstancesOf(state, local
94 System.out.println("There are " + instances.length
95 + " instances of Drawables and its subclasses.");
Queries.java 38 * instances instancesOf
51 * Instances have an ArrayList of all of the
132 * Return an array of instances of the given class. This does not include
133 * instances of subclasses.
143 Instance[] instances = new Instance[theClass.mInstances.size()]; local
145 return theClass.mInstances.toArray(instances);
149 * Return an array of instances of the given class. This includes
150 * instances of subclasses.
  /external/chromium_org/chrome/browser/devtools/
devtools_window_testing.cc 34 DevToolsWindowTestings* instances = g_instances.Pointer(); local
36 std::find(instances->begin(), instances->end(), this));
37 DCHECK(it != instances->end());
38 instances->erase(it);
57 DevToolsWindowTestings* instances = g_instances.Pointer();
58 for (DevToolsWindowTestings::iterator it(instances->begin());
59 it != instances->end();
devtools_ui_bindings.cc 288 DevToolsUIBindingsList* instances = g_instances.Pointer();
289 for (DevToolsUIBindingsList::iterator it(instances->begin());
290 it != instances->end(); ++it) {
369 DevToolsUIBindingsList* instances = g_instances.Pointer(); local
371 std::find(instances->begin(), instances->end(), this));
372 DCHECK(it != instances->end());
373 instances->erase(it);
devtools_window.cc 308 DevToolsWindows* instances = g_instances.Pointer(); local
310 std::find(instances->begin(), instances->end(), this));
311 DCHECK(it != instances->end());
312 instances->erase(it);
382 DevToolsWindows* instances = g_instances.Pointer();
383 for (DevToolsWindows::iterator it(instances->begin()); it != instances->end();
395 DevToolsWindows* instances = g_instances.Pointer();
396 for (DevToolsWindows::iterator it(instances->begin()); it != instances->end()
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/common/
CleanupReferenceTest.java 78 ReferredObject[] instances = new ReferredObject[instanceCount]; local
81 instances[i] = new ReferredObject();
85 instances = null;
87 assertTrue(instances == null);
  /external/eigen/test/
exceptions.cpp 33 instances--;
38 instances++;
68 static int instances; member in class:ScalarWithExceptions
76 int ScalarWithExceptions::instances = 0; member in class:ScalarWithExceptions
82 int before = ScalarWithExceptions::instances; \
87 VERIFY(ScalarWithExceptions::instances==before && "memory leak detected in " && EIGEN_MAKESTRING(OP)); \
107 VERIFY(ScalarWithExceptions::instances==0 && "global memory leak detected in " && EIGEN_MAKESTRING(OP)); \
  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 57 * <p>This factory will remember previously created <code>Log</code> instances
207 * The {@link org.apache.commons.logging.Log} instances that have
210 protected Hashtable instances = new Hashtable(); field in class:LogFactoryImpl
222 * implementation class that will be used to create new instances.
336 Log instance = (Log) instances.get(name);
339 instances.put(name, instance);
349 * instances returned by this factory. This is useful in environments
357 instances.clear();
525 * new {@link org.apache.commons.logging.Log} instances.</p>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateElement.cpp 146 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = targetElement->instancesForElement(); local
147 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator end = instances.end();
148 for (WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator it = instances.begin(); it != end; ++it) {
230 // If the target element has instances, update them as well, w/o requiring the <use> tree to be rebuilt.
231 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = targetElement->instancesForElement(); local
232 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator end = instances.end();
233 for (WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator it = instances.begin(); it != end; ++it) {
250 // If the target element has instances, update them as well, w/o requiring the <use> tree to be rebuilt.
251 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = targetElement->instancesForElement(); local
252 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator end = instances.end()
278 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = targetElement->instancesForElement(); local
    [all...]
SVGAnimateMotionElement.cpp 292 // ...except in case where we have additional instances in <use> trees.
293 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = targetElement->instancesForElement(); local
294 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator end = instances.end();
295 for (WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator it = instances.begin(); it != end; ++it) {
SVGUseElement.cpp 664 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = instancesForElement(); local
665 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator end = instances.end();
666 for (WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator it = instances.begin(); it != end; ++it) {
SVGElement.cpp 285 // Invalidate all instances associated with us.
476 WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = ensureSVGRareData()->elementInstances(); local
477 ASSERT(!instances.contains(instance));
479 instances.add(instance);
490 WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = svgRareData()->elementInstances();
492 instances.remove(instance);
728 static inline void collectInstancesForSVGElement(SVGElement* element, WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances)
736 instances = element->instancesForElement();
747 // Add event listener to all shadow tree DOM element instances
748 WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> > instances;
    [all...]
  /external/chromium_org/chrome/browser/metrics/
plugin_metrics_provider.cc 71 instances(0),
80 instances(0),
90 // The number of instances of this child process that have been created.
93 int instances; member in struct:PluginMetricsProvider::ChildProcessStats
179 int instances = 0; local
180 plugin_dict->GetInteger(prefs::kStabilityPluginInstances, &instances);
181 if (instances > 0)
182 plugin_stability->set_instance_count(instances);
246 if (stats.instances) {
247 int instances = 0 local
    [all...]
  /external/chromium_org/content/renderer/pepper/
host_globals.cc 45 const PluginModule::PluginInstanceSet& instances = module->GetAllInstances(); local
46 for (PluginModule::PluginInstanceSet::const_iterator i = instances.begin();
47 i != instances.end();
169 // instances on the page.
  /external/chromium_org/third_party/WebKit/Source/web/
WebEmbeddedWorkerImpl.cpp 188 HashSet<WebEmbeddedWorkerImpl*> instances = runningWorkerInstances(); local
189 for (HashSet<WebEmbeddedWorkerImpl*>::iterator it = instances.begin(), itEnd = instances.end(); it != itEnd; ++it) {
  /art/runtime/jdwp/
jdwp_handler.cc 632 std::vector<ObjectId> instances; local
633 JdwpError rc = Dbg::GetInstances(class_id, max_count, instances);
638 return WriteTaggedObjectList(reply, instances);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 41 import android.provider.CalendarContract.Instances;
2115 Cursor instances = getInstances(timeZone, rangeStart, rangeEnd, projection, local
2121 Cursor instances; local
2437 Cursor instances = getInstances(timeZone, "2003-08-05T00:00:00", "2003-08-31T11:59:59", local
2522 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
2711 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
2880 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
2968 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
3063 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
3373 Cursor instances = mContentResolver.query(uri, projection, where, null, local
3427 Cursor instances = mContentResolver.query(uri, projection, where, null, local
3461 Cursor instances = getInstances(timeZone, startWhen, endWhen, local
3623 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexArrayObjectTests.cpp 119 int instances; member in struct:deqp::gles3::Functional::__anon24770::Spec
133 , instances (-1)
576 if (m_spec.instances == 0)
579 GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices, m_spec.instances));
583 if (m_spec.instances == 0)
586 GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, (GLvoid*)((GLintptr)m_spec.indexOffset), m_spec.instances));
591 if (m_spec.instances == 0)
594 GLU_CHECK_CALL(glDrawArraysInstanced(GL_TRIANGLES, 0, m_spec.count, m_spec.instances));
744 m_spec.instances = 0;
    [all...]
  /external/lldb/source/Core/
PluginManager.cpp 286 ABIInstances &instances = GetABIInstances (); local
288 ABIInstances::iterator pos, end = instances.end();
289 for (pos = instances.begin(); pos != end; ++ pos)
293 instances.erase(pos);
305 ABIInstances &instances = GetABIInstances (); local
306 if (idx < instances.size())
307 return instances[idx].create_callback;
317 ABIInstances &instances = GetABIInstances (); local
319 ABIInstances::iterator pos, end = instances.end();
320 for (pos = instances.begin(); pos != end; ++ pos
392 DisassemblerInstances &instances = GetDisassemblerInstances (); local
411 DisassemblerInstances &instances = GetDisassemblerInstances (); local
423 DisassemblerInstances &instances = GetDisassemblerInstances (); local
504 DynamicLoaderInstances &instances = GetDynamicLoaderInstances (); local
523 DynamicLoaderInstances &instances = GetDynamicLoaderInstances (); local
535 DynamicLoaderInstances &instances = GetDynamicLoaderInstances (); local
609 EmulateInstructionInstances &instances = GetEmulateInstructionInstances (); local
628 EmulateInstructionInstances &instances = GetEmulateInstructionInstances (); local
640 EmulateInstructionInstances &instances = GetEmulateInstructionInstances (); local
709 OperatingSystemInstances &instances = GetOperatingSystemInstances (); local
728 OperatingSystemInstances &instances = GetOperatingSystemInstances (); local
740 OperatingSystemInstances &instances = GetOperatingSystemInstances (); local
814 LanguageRuntimeInstances &instances = GetLanguageRuntimeInstances (); local
833 LanguageRuntimeInstances &instances = GetLanguageRuntimeInstances (); local
845 LanguageRuntimeInstances &instances = GetLanguageRuntimeInstances (); local
923 ObjectFileInstances &instances = GetObjectFileInstances (); local
942 ObjectFileInstances &instances = GetObjectFileInstances (); local
953 ObjectFileInstances &instances = GetObjectFileInstances (); local
963 ObjectFileInstances &instances = GetObjectFileInstances (); local
975 ObjectFileInstances &instances = GetObjectFileInstances (); local
994 ObjectFileInstances &instances = GetObjectFileInstances (); local
1070 ObjectContainerInstances &instances = GetObjectContainerInstances (); local
1089 ObjectContainerInstances &instances = GetObjectContainerInstances (); local
1101 ObjectContainerInstances &instances = GetObjectContainerInstances (); local
1117 ObjectContainerInstances &instances = GetObjectContainerInstances (); local
1185 LogInstances &instances = GetLogInstances (); local
1204 LogInstances &instances = GetLogInstances (); local
1215 LogInstances &instances = GetLogInstances (); local
1227 LogInstances &instances = GetLogInstances (); local
1302 PlatformInstances &instances = GetPlatformInstances (); local
1312 PlatformInstances &instances = GetPlatformInstances (); local
1324 PlatformInstances &instances = GetPlatformInstances (); local
1343 PlatformInstances &instances = GetPlatformInstances (); local
1355 PlatformInstances &instances = GetPlatformInstances (); local
1373 PlatformInstances &instances = GetPlatformInstances (); local
1446 ProcessInstances &instances = GetProcessInstances (); local
1456 ProcessInstances &instances = GetProcessInstances (); local
1468 ProcessInstances &instances = GetProcessInstances (); local
1487 ProcessInstances &instances = GetProcessInstances (); local
1500 ProcessInstances &instances = GetProcessInstances (); local
1573 SymbolFileInstances &instances = GetSymbolFileInstances (); local
1592 SymbolFileInstances &instances = GetSymbolFileInstances (); local
1604 SymbolFileInstances &instances = GetSymbolFileInstances (); local
1678 SymbolVendorInstances &instances = GetSymbolVendorInstances (); local
1697 SymbolVendorInstances &instances = GetSymbolVendorInstances (); local
1710 SymbolVendorInstances &instances = GetSymbolVendorInstances (); local
1783 UnwindAssemblyInstances &instances = GetUnwindAssemblyInstances (); local
1802 UnwindAssemblyInstances &instances = GetUnwindAssemblyInstances (); local
1815 UnwindAssemblyInstances &instances = GetUnwindAssemblyInstances (); local
1833 DynamicLoaderInstances &instances = GetDynamicLoaderInstances (); local
1846 PlatformInstances &instances = GetPlatformInstances (); local
1859 ProcessInstances &instances = GetProcessInstances(); local
    [all...]
  /external/chromium_org/v8/src/
debug.cc 644 Handle<FixedArray> instances = factory->NewFixedArray(occupancy()); local
649 instances->set(count, *reinterpret_cast<Script**>(entry->value));
653 return instances;
    [all...]
  /external/chromium_org/v8/test/cctest/
test-heap-profiler.cc 1437 static i::List<TestRetainedObjectInfo*> instances; member in class:__anon22024::TestRetainedObjectInfo
1449 i::List<TestRetainedObjectInfo*> TestRetainedObjectInfo::instances; member in class:__anon22024::TestRetainedObjectInfo
1492 delete TestRetainedObjectInfo::instances[i]; member in class:TestRetainedObjectInfo
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar 

Completed in 1919 milliseconds

1 2