Searched refs:instances (Results 1 - 25 of 107) sorted by relevance

12345

/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dtime_to_object_instance_map.js16 * Tracks all the instances associated with a given ID over its lifetime.
28 this.instances = [];
33 if (this.instances.length == 0) {
34 this.instances.push(this.createObjectInstanceFunction_(
36 this.instances[0].creationTsWasExplicit = true;
37 return this.instances[0];
40 var lastInstance = this.instances[this.instances.length - 1];
48 this.instances.push(lastInstance);
53 if (this.instances
[all...]
H A Dobject_collection.js20 * A collection of object instances and their snapshots, accessible by id and
123 i2imap.instances.forEach(iter, opt_this);
128 var instances = [];
129 this.iterObjectInstances(function(i) { instances.push(i); });
130 return instances;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
H A DInstanceOnlyModifierDebuggee.java66 logWriter.println("Create instances");
67 final TestClass[] instances = new TestClass[10];
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[
[all...]
/external/lldb/source/Core/
H A DPluginManager.cpp286 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
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/base/debug/
H A Dleak_tracker.h21 // LeakTracker is a helper to verify that all instances of a class
26 // instances of that class.
38 // Next, when we believe all instances of net::URLRequest have been deleted:
42 // Should the check fail (because there are live instances of net::URLRequest),
43 // then the allocation callstack for each leaked instances is dumped to
70 instances()->Append(this);
87 for (LinkNode<LeakTracker<T> >* node = instances()->head();
88 node != instances()->end();
115 for (LinkNode<LeakTracker<T> >* node = instances()->head();
116 node != instances()
[all...]
/external/smack/src/org/jivesoftware/smack/packet/
H A DXMPPError.java360 private static Map<Condition, ErrorSpecification> instances = errorSpecifications(); field in class:XMPPError.ErrorSpecification
369 Map<Condition, ErrorSpecification> instances = new HashMap<Condition, ErrorSpecification>(22);
370 instances.put(Condition.interna_server_error, new ErrorSpecification(
372 instances.put(Condition.forbidden, new ErrorSpecification(Condition.forbidden,
374 instances.put(Condition.bad_request, new XMPPError.ErrorSpecification(
376 instances.put(Condition.item_not_found, new XMPPError.ErrorSpecification(
378 instances.put(Condition.conflict, new XMPPError.ErrorSpecification(
380 instances.put(Condition.feature_not_implemented, new XMPPError.ErrorSpecification(
382 instances.put(Condition.gone, new XMPPError.ErrorSpecification(
384 instances
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
H A DVertexBuffer9.h29 GLint start, GLsizei count, GLsizei instances, unsigned int offset);
31 virtual bool getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances, unsigned int *outSpaceRequired) const;
48 static bool spaceRequired(const gl::VertexAttribute &attrib, std::size_t count, GLsizei instances,
H A DVertexBuffer9.cpp69 GLint start, GLsizei count, GLsizei instances, unsigned int offset)
83 if (!spaceRequired(attrib, count, instances, &mapSize))
114 if (instances == 0 || attrib.mDivisor == 0)
144 bool VertexBuffer9::getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances, argument
147 return spaceRequired(attrib, count, instances, outSpaceRequired);
202 bool VertexBuffer9::spaceRequired(const gl::VertexAttribute &attrib, std::size_t count, GLsizei instances, argument
211 if (instances == 0 || attrib.mDivisor == 0)
217 if (static_cast<unsigned int>(instances) < std::numeric_limits<unsigned int>::max() - (attrib.mDivisor - 1))
220 elementCount = (static_cast<unsigned int>(instances) + (attrib.mDivisor - 1)) / attrib.mDivisor;
224 elementCount = static_cast<unsigned int>(instances) / attri
68 storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, GLint start, GLsizei count, GLsizei instances, unsigned int offset) argument
[all...]
H A DVertexDeclarationCache.h28 GLenum applyDeclaration(IDirect3DDevice9 *device, TranslatedAttribute attributes[], gl::ProgramBinary *programBinary, GLsizei instances, GLsizei *repeatDraw);
H A DVertexDeclarationCache.cpp44 GLenum VertexDeclarationCache::applyDeclaration(IDirect3DDevice9 *device, TranslatedAttribute attributes[], gl::ProgramBinary *programBinary, GLsizei instances, GLsizei *repeatDraw) argument
51 if (instances > 0)
89 if (instances > 0)
94 *repeatDraw = instances;
111 frequency = D3DSTREAMSOURCE_INDEXEDDATA | instances;
147 if (instances == 0 || instancedAttribute == gl::MAX_VERTEX_ATTRIBS)
/external/chromium_org/third_party/npapi/npspy/common/
H A Depmanager.cpp57 instances(NULL)
78 for(InstanceList * instances = eps->instances; instances != NULL;)
80 InstanceList * next = instances->next;
81 delete instances;
82 instances = next;
166 for(InstanceList * instances = eps->instances; instances !
[all...]
/external/eigen/test/
H A Dexceptions.cpp33 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/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
H A DVertexBuffer11.h29 GLint start, GLsizei count, GLsizei instances, unsigned int offset);
31 virtual bool getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances,
H A DVertexBuffer11.cpp70 GLint start, GLsizei count, GLsizei instances, unsigned int offset)
106 if (instances == 0 || attrib.mDivisor == 0)
128 GLsizei instances, unsigned int *outSpaceRequired) const
133 if (instances == 0 || attrib.mDivisor == 0)
139 if (static_cast<unsigned int>(instances) < std::numeric_limits<unsigned int>::max() - (attrib.mDivisor - 1))
142 elementCount = rx::roundUp(static_cast<unsigned int>(instances), attrib.mDivisor);
146 elementCount = instances / attrib.mDivisor;
69 storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, GLint start, GLsizei count, GLsizei instances, unsigned int offset) argument
127 getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances, unsigned int *outSpaceRequired) const argument
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/common/
H A DCleanupReferenceTest.java78 ReferredObject[] instances = new ReferredObject[INSTANCE_COUNT];
81 instances[i] = new ReferredObject();
85 instances = null;
87 assertTrue(instances == null);
/external/chromium_org/tools/
H A Ddiagnose-me.py38 instances = stdout.split()
39 if len(instances) > 1:
41 + '\n'.join(' - ' + i for i in instances) + "\n"
/external/chromium_org/chrome/browser/metrics/
H A Dplugin_metrics_provider.cc67 instances(0),
76 instances(0),
86 // The number of instances of this child process that have been created.
89 int instances; member in struct:PluginMetricsProvider::ChildProcessStats
174 int instances = 0; local
175 plugin_dict->GetInteger(prefs::kStabilityPluginInstances, &instances);
176 if (instances > 0)
177 plugin_stability->set_instance_count(instances);
237 if (stats.instances) {
238 int instances local
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DVertexBuffer.h34 GLint start, GLsizei count, GLsizei instances, unsigned int offset) = 0;
35 virtual bool getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances,
60 bool reserveVertexSpace(const gl::VertexAttribute &attribute, GLsizei count, GLsizei instances);
67 GLint start, GLsizei count, GLsizei instances, unsigned int *outStreamOffset);
113 GLint start, GLsizei count, GLsizei instances, unsigned int *outStreamOffset);
H A DVertexBuffer.cpp93 GLint start, GLsizei count, GLsizei instances, unsigned int *outStreamOffset)
96 if (!mVertexBuffer->getSpaceRequired(attrib, count, instances, &spaceRequired))
112 if (!mVertexBuffer->storeVertexAttributes(attrib, currentValue, start, count, instances, mWritePosition))
130 bool VertexBufferInterface::reserveVertexSpace(const gl::VertexAttribute &attribute, GLsizei count, GLsizei instances) argument
133 if (!mVertexBuffer->getSpaceRequired(attribute, count, instances, &requiredSpace))
273 GLint start, GLsizei count, GLsizei instances, unsigned int *outStreamOffset)
276 if (VertexBufferInterface::storeVertexAttributes(attrib, currentValue, start, count, instances, &streamOffset))
92 storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, GLint start, GLsizei count, GLsizei instances, unsigned int *outStreamOffset) argument
272 storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, GLint start, GLsizei count, GLsizei instances, unsigned int *outStreamOffset) argument
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimateElement.cpp148 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = targetElement->instancesForElement(); local
149 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator end = instances.end();
150 for (WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator it = instances.begin(); it != end; ++it) {
232 // If the target element has instances, update them as well, w/o requiring the <use> tree to be rebuilt.
233 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = targetElement->instancesForElement(); local
234 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator end = instances.end();
235 for (WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator it = instances.begin(); it != end; ++it) {
252 // If the target element has instances, update them as well, w/o requiring the <use> tree to be rebuilt.
253 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = targetElement->instancesForElement(); local
254 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator end = instances
280 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = targetElement->instancesForElement(); local
[all...]
/external/chromium_org/chrome/browser/
H A Dsite_details.h24 std::vector<content::SiteInstance*> instances; member in struct:SiteData
H A Dsite_details.cc33 for (size_t i = 0; i < site_data->instances.size(); ++i) {
34 if (instance->IsRelatedSiteInstance(site_data->instances[i])) {
35 primary = site_data->instances[i];
42 site_data->instances.push_back(instance);
/external/smack/src/org/jivesoftware/smackx/
H A DGatewayManager.java30 private static Map<Connection,GatewayManager> instances = field in class:GatewayManager
125 synchronized(instances){
126 if(instances.containsKey(connection)){
127 return instances.get(connection);
130 instances.put(connection, instance);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLayoutInflater.java22 private static AppSingletonizer<LayoutInflater> instances = new LayoutInflaterAppSingletonizer(); field in class:ShadowLayoutInflater
33 return bind(instances.getInstance(context), context);
/external/chromium_org/content/browser/worker_host/
H A Dworker_service_impl.cc160 iter->instances().begin(); instance != iter->instances().end();
165 iter->instances().begin();
166 if (first_instance == iter->instances().end())
382 // Remove any queued instances of this worker and copy over the filter to
456 iter->instances().begin();
457 cur_instance != iter->instances().end(); ++cur_instance) {
486 // coalesces queued instances after starting a shared worker, so we
506 iter->instances().begin();
507 if (first_instance == iter->instances()
545 const WorkerProcessHost::Instances& instances = (*iter)->instances(); local
[all...]

Completed in 3360 milliseconds

12345