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

1 2

  /external/webkit/WebCore/platform/win/
WindowMessageBroadcaster.cpp 40 static InstanceMap instances; local
41 return instances;
  /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);
  /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/webkit/WebCore/svg/
SVGAnimateTransformElement.cpp 165 // ...except in case where we have additional instances in <use> trees.
166 const HashSet<SVGElementInstance*>& instances = targetElement->instancesForElement(); local
168 const HashSet<SVGElementInstance*>::const_iterator end = instances.end();
169 for (HashSet<SVGElementInstance*>::const_iterator it = instances.begin(); it != end; ++it) {
SVGAnimateMotionElement.cpp 217 // ...except in case where we have additional instances in <use> trees.
218 const HashSet<SVGElementInstance*>& instances = targetElement->instancesForElement(); local
219 const HashSet<SVGElementInstance*>::const_iterator end = instances.end();
220 for (HashSet<SVGElementInstance*>::const_iterator it = instances.begin(); it != end; ++it) {
SVGElement.cpp 157 HashSet<SVGElementInstance*>& instances = ensureRareSVGData()->elementInstances(); local
158 ASSERT(!instances.contains(instance));
160 instances.add(instance);
168 HashSet<SVGElementInstance*>& instances = rareSVGData()->elementInstances(); local
169 ASSERT(instances.contains(instance));
171 instances.remove(instance);
  /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/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
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/
deque_test.cpp 327 deque<IncompleteClass> instances; member in class:IncompleteClass
list_test.cpp 465 list<IncompleteClass> instances; member in class:IncompleteClass
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/
deque_test.cpp 327 deque<IncompleteClass> instances; member in class:IncompleteClass
list_test.cpp 465 list<IncompleteClass> instances; member in class:IncompleteClass
map_test.cpp 448 map<IncompleteClass, IncompleteClass> instances; member in class:IncompleteClass
set_test.cpp 501 set<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:
  /frameworks/base/services/java/com/android/server/
AppWidgetService.java 85 ArrayList<AppWidgetId> instances = new ArrayList<AppWidgetId>(); field in class:AppWidgetService.Provider
96 ArrayList<AppWidgetId> instances = new ArrayList<AppWidgetId>(); field in class:AppWidgetService.Host
218 pw.print(" instances.size="); pw.print(host.instances.size());
235 host.instances.add(id);
284 final int N = host.instances.size();
286 AppWidgetId id = host.instances.get(i);
289 host.instances.clear();
297 host.instances.remove(id);
304 p.instances.remove(id)
436 ArrayList<AppWidgetId> instances = p.instances; local
475 ArrayList<AppWidgetId> instances = host.instances; local
    [all...]

Completed in 315 milliseconds

1 2