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

1 2 3 4

  /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
  /frameworks/base/core/java/android/gesture/
Learner.java 37 * Retrieve all the instances
39 * @return instances
51 ArrayList<Instance> instances = mInstances; local
52 int count = instances.size();
54 Instance instance = instances.get(i);
56 instances.remove(instance);
63 * Remove all the instances of a category
69 final ArrayList<Instance> instances = mInstances; local
70 final int count = instances.size();
73 final Instance instance = instances.get(i)
    [all...]
InstanceLearner.java 46 ArrayList<Instance> instances = getInstances(); local
47 int count = instances.size();
50 Instance sample = instances.get(i);
  /external/smack/src/org/jivesoftware/smackx/
GatewayManager.java 30 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/smack/src/org/jivesoftware/smackx/carbons/
CarbonManager.java 48 private static Map<Connection, CarbonManager> instances = field in class:CarbonManager
66 instances.put(connection, this);
77 CarbonManager carbonManager = instances.get(connection);
  /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...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLayoutInflater.java 22 private static AppSingletonizer<LayoutInflater> instances = new LayoutInflaterAppSingletonizer(); field in class:ShadowLayoutInflater
33 return bind(instances.getInstance(context), context);
  /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/content/public/android/javatests/src/org/chromium/content/common/
CleanupReferenceTest.java 78 ReferredObject[] instances = new ReferredObject[INSTANCE_COUNT]; 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/smack/src/org/jivesoftware/smack/
PrivacyListManager.java 45 // Keep the list of instances of this class.
46 private static Map<Connection, PrivacyListManager> instances = Collections field in class:PrivacyListManager
89 instances.put(connection, this);
95 instances.remove(connection);
165 return instances.get(connection);
  /external/smack/src/org/jivesoftware/smackx/ping/
PingManager.java 63 private static Map<Connection, PingManager> instances = field in class:PingManager
145 instances.put(connection, this);
150 PingManager pingManager = instances.get(connection);
  /external/smack/src/org/jivesoftware/smackx/receipts/
DeliveryReceiptManager.java 44 private static Map<Connection, DeliveryReceiptManager> instances = field in class:DeliveryReceiptManager
64 instances.put(connection, this);
78 DeliveryReceiptManager receiptManager = instances.get(connection);
  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 57 * <p>This factory will remember previously created <code>Log</code> instances
202 * The {@link org.apache.commons.logging.Log} instances that have
205 protected Hashtable instances = new Hashtable(); field in class:LogFactoryImpl
217 * implementation class that will be used to create new instances.
331 Log instance = (Log) instances.get(name);
334 instances.put(name, instance);
344 * instances returned by this factory. This is useful in environments
352 instances.clear();
520 * new {@link org.apache.commons.logging.Log} instances.</p>
    [all...]
  /external/chromium_org/chrome/browser/metrics/
plugin_metrics_provider.cc 67 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 = 0 local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateElement.cpp 148 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.end()
280 const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instances = targetElement->instancesForElement(); local
    [all...]
  /external/stlport/test/unit/
deque_test.cpp 327 deque<IncompleteClass> instances; member in class:IncompleteClass
list_test.cpp 465 list<IncompleteClass> instances; member in class:IncompleteClass
  /ndk/tests/device/test-gnustl-full/unit/
deque_test.cpp 327 deque<IncompleteClass> instances; member in class:IncompleteClass
list_test.cpp 465 list<IncompleteClass> instances; member in class:IncompleteClass
  /ndk/tests/device/test-stlport/unit/
deque_test.cpp 327 deque<IncompleteClass> instances; member in class:IncompleteClass
list_test.cpp 465 list<IncompleteClass> instances; member in class:IncompleteClass
  /packages/providers/CalendarProvider/
maketests.py 103 instances = [] variable
107 instances.append((startTime,endTime))
109 instances = map(fixInstance, instances) variable
110 instances.sort()
122 for i in instances:

Completed in 704 milliseconds

1 2 3 4