HomeSort by relevance Sort by last modified time
    Searched defs:instances (Results 26 - 50 of 94) sorted by null

12 3 4

  /external/smack/src/org/jivesoftware/smack/packet/
XMPPError.java 360 private static Map<Condition, ErrorSpecification> instances = errorSpecifications(); field in class:XMPPError.ErrorSpecification
369 Map<Condition, ErrorSpecification> instances = new HashMap<Condition, ErrorSpecification>(22); local
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.put(Condition.jid_malformed, new XMPPError.ErrorSpecification
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
ServiceDiscoveryManager.java 61 private static Map<Connection, ServiceDiscoveryManager> instances = field in class:ServiceDiscoveryManager
100 return instances.get(connection);
182 instances.put(connection, this);
192 instances.remove(connection);
  /external/smack/src/org/jivesoftware/smackx/commands/
AdHocCommandManager.java 74 private static Map<Connection, AdHocCommandManager> instances = field in class:AdHocCommandManager
98 return instances.get(connection);
107 * The Connection that this instances of AdHocCommandManager manages
158 * new instances of the command.
162 * @param factory a factory to create new instances of the command.
264 instances.put(connection, this);
271 instances.remove(connection);
276 instances.remove(connection);
282 instances.put(connection, AdHocCommandManager.this);
  /external/chromium_org/content/browser/devtools/
worker_devtools_manager.cc 335 const WorkerProcessHost::Instances& instances = process->instances(); local
336 for (WorkerProcessHost::Instances::const_iterator i = instances.begin();
337 i != instances.end(); ++i) {
  /external/chromium_org/content/browser/worker_host/
worker_process_host.h 194 typedef std::list<WorkerInstance> Instances;
195 const Instances& instances() const { return instances_; } function in class:content::WorkerProcessHost
206 Instances& mutable_instances() { return instances_; }
259 Instances instances_;
worker_service_impl.cc 159 for (WorkerProcessHost::Instances::const_iterator instance =
160 iter->instances().begin(); instance != iter->instances().end();
164 WorkerProcessHost::Instances::const_iterator first_instance =
165 iter->instances().begin();
166 if (first_instance == iter->instances().end())
271 for (WorkerProcessHost::Instances::iterator i = queued_workers_.begin();
316 for (WorkerProcessHost::Instances::iterator i = queued_workers_.begin();
363 for (WorkerProcessHost::Instances::iterator iter = queued_workers_.begin();
382 // Remove any queued instances of this worker and copy over the filter t
545 const WorkerProcessHost::Instances& instances = (*iter)->instances(); 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/core/svg/
SVGAnimateMotionElement.cpp 305 // ...except in case where we have additional instances in <use> trees.
306 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = targetElement->instancesForElement(); local
307 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator end = instances.end();
308 for (WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator it = instances.begin(); it != end; ++it) {
SVGUseElement.cpp 680 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = instancesForElement(); local
681 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator end = instances.end();
682 for (WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >::const_iterator it = instances.begin(); it != end; ++it) {
SVGElement.cpp 347 // Invalidate all instances associated with us.
531 WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = ensureSVGRareData()->elementInstances(); local
532 ASSERT(!instances.contains(instance));
534 instances.add(instance);
545 WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = svgRareData()->elementInstances();
546 ASSERT(instances.contains(instance));
548 instances.remove(instance);
791 static inline void collectInstancesForSVGElement(SVGElement* element, WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances)
799 instances = element->instancesForElement();
824 WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> > instances; local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAppWidgetManager.java 27 private static AppSingletonizer<AppWidgetManager> instances = new AppSingletonizer<AppWidgetManager>(AppWidgetManager.class) { field in class:ShadowAppWidgetManager
67 return instances.getInstance(context);
  /external/stlport/test/unit/
map_test.cpp 448 map<IncompleteClass, IncompleteClass> instances; member in class:IncompleteClass
set_test.cpp 501 set<IncompleteClass> instances; member in class:IncompleteClass
vector_test.cpp 495 vector<IncompleteClass> instances; member in class:IncompleteClass
  /ndk/tests/device/test-gnustl-full/unit/
map_test.cpp 448 map<IncompleteClass, IncompleteClass> instances; member in class:IncompleteClass
set_test.cpp 501 set<IncompleteClass> instances; member in class:IncompleteClass
vector_test.cpp 495 vector<IncompleteClass> instances; member in class:IncompleteClass
  /ndk/tests/device/test-stlport/unit/
map_test.cpp 448 map<IncompleteClass, IncompleteClass> instances; member in class:IncompleteClass
set_test.cpp 501 set<IncompleteClass> instances; member in class:IncompleteClass
vector_test.cpp 495 vector<IncompleteClass> instances; member in class:IncompleteClass
  /external/smack/src/org/jivesoftware/smackx/entitycaps/
EntityCapsManager.java 83 private static Map<Connection, EntityCapsManager> instances = Collections field in class:EntityCapsManager
233 instances.put(connection, this);
239 instances.remove(weakRefConnection.get());
339 EntityCapsManager entityCapsManager = instances.get(connection);
  /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;
2114 Cursor instances = getInstances(timeZone, rangeStart, rangeEnd, projection, local
2120 Cursor instances; local
2436 Cursor instances = getInstances(timeZone, "2003-08-05T00:00:00", "2003-08-31T11:59:59", local
2521 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
2710 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
2879 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
2967 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
3062 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
3311 Cursor instances = mContentResolver.query(uri, projection, where, null, local
3365 Cursor instances = mContentResolver.query(uri, projection, where, null, local
3399 Cursor instances = getInstances(timeZone, startWhen, endWhen, local
3561 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::__anon23962::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...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
RemoteDevices.java 240 ArrayList<BluetoothMasInstance> instances) {
244 if (instances != null) intent.putExtra(BluetoothDevice.EXTRA_MAS_INSTANCE, instances);
377 debugLog("deviceMasInstancesFoundCallback: found " + name.length + " instances");
379 ArrayList<BluetoothMasInstance> instances = new ArrayList<BluetoothMasInstance>(); local
387 instances.add(inst);
390 sendMasInstanceIntent(device, instances);

Completed in 1733 milliseconds

12 3 4