Home
last modified time | relevance | path

Searched refs:instances (Results 1 – 25 of 38) sorted by relevance

12

/frameworks/base/core/java/android/gesture/
DLearner.java51 ArrayList<Instance> instances = mInstances; in removeInstance() local
52 int count = instances.size(); in removeInstance()
54 Instance instance = instances.get(i); in removeInstance()
56 instances.remove(instance); in removeInstance()
69 final ArrayList<Instance> instances = mInstances; in removeInstances() local
70 final int count = instances.size(); in removeInstances()
73 final Instance instance = instances.get(i); in removeInstances()
80 instances.removeAll(toDelete); in removeInstances()
DInstanceLearner.java46 ArrayList<Instance> instances = getInstances(); in classify() local
47 int count = instances.size(); in classify()
50 Instance sample = instances.get(i); in classify()
/frameworks/base/services/java/com/android/server/
DAppWidgetService.java94 ArrayList<AppWidgetId> instances = new ArrayList<AppWidgetId>(); field in AppWidgetService.Provider
105 ArrayList<AppWidgetId> instances = new ArrayList<AppWidgetId>(); field in AppWidgetService.Host
250 pw.print(" instances.size="); pw.print(host.instances.size()); in dumpHost()
332 host.instances.add(id); in allocateAppWidgetId()
384 final int N = host.instances.size(); in deleteHostLocked()
386 AppWidgetId id = host.instances.get(i); in deleteHostLocked()
389 host.instances.clear(); in deleteHostLocked()
401 host.instances.remove(id); in deleteAppWidgetLocked()
408 p.instances.remove(id); in deleteAppWidgetLocked()
415 if (p.instances.size() == 0) { in deleteAppWidgetLocked()
[all …]
/frameworks/base/core/java/android/os/
DStrictMode.java1391 long instances = VMDebug.countInstancesOfClass(klass, false); in conditionallyCheckInstanceCounts() local
1392 if (instances <= limit) { in conditionallyCheckInstanceCounts()
1395 Throwable tr = new InstanceCountViolation(klass, instances, limit); in conditionallyCheckInstanceCounts()
1906 long instances = VMDebug.countInstancesOfClass(klass, false); in decrementExpectedActivityCount() local
1907 if (instances > limit) { in decrementExpectedActivityCount()
1908 Throwable tr = new InstanceCountViolation(klass, instances, limit); in decrementExpectedActivityCount()
2125 public InstanceCountViolation(Class klass, long instances, int limit) { in InstanceCountViolation() argument
2126 super(klass.toString() + "; instances=" + instances + "; limit=" + limit); in InstanceCountViolation()
2129 mInstances = instances; in InstanceCountViolation()
/frameworks/base/docs/html/guide/topics/testing/
Dservice_testing.jd124 rest of the system. If you don't provide your own instances of these objects before you
126 instances and inject them into the Service. You can override this behavior by creating and
127 injecting your own instances before starting the Service
/frameworks/base/docs/html/guide/developing/tools/
Dadb.jd52 …n sets up connections to all running emulator/device instances. It locates emulator/device instanc…
63 …ator instances, you can use adb commands to control and access those instances. Because the server…
81 <p>Before issuing adb commands, it is helpful to know what emulator/device instances are connected …
121 <p>If multiple emulator/device instances are running, you need to specify a target instance when is…
125 …code>devices</code> command to obtain the serial numbers of running emulator/device instances. </p>
209 <td>Prints a list of all attached emulator/device instances.</td>
383 …cify the full path to the database you want to explore. Emulator/device instances store SQLite3 da…
Dsqlite3.jd24 Emulator/device instances store SQLite3 databases in the directory
DMonkeyImage.jd16 You do not need to create new instances of <code>MonkeyImage</code>. Instead, use
/frameworks/base/docs/html/guide/developing/debugging/
Ddebugging-devtools.jd47 When you change this option, any currently running instances of the selected application will
/frameworks/base/docs/html/guide/developing/devices/
Demulator.jd144 depending on your needs, you can start multiple emulator instances and run your
147 instances, and you can set up network redirections that allow emulators to send
509 <p>You can define the default verbose output options used by emulator instances in the Android envi…
935 or other emulator instances on the network. Instead, it sees only that it is
976 instances. That means that if you have two instances running concurrently on
978 IP address of 10.0.2.15. The instances are isolated by a router and can
980 let emulator instances communicate over TCP/UDP, see <a
1198 …sequent instances use port numbers increasing by two &mdash; for example, 5556/5557, 5558/5559, an…
1200 …or console, you must specify a valid console port. If multiple emulator instances are running, you…
1204 …ode>adb devices</code> command, which prints a list of running emulator instances and their consol…
[all …]
/frameworks/base/docs/html/resources/articles/
Ddrawable-mutations.jd66 changes the opacity of all the other instances. Even worse, working
Dlistview-backgrounds.jd38 enabled by default on all instances of <code>ListView</code>. I mentioned
Dlayout-tricks-merge.jd61 root tag and tags in XML layouts always represent view instances.</p>
Dgestures.jd92 Prediction instances, each with a name - the same name you entered in
/frameworks/base/tools/layoutlib/create/
DREADME.txt81 The output of the analyzer is a set of ASM ClassReader instances which are then
/frameworks/base/docs/html/guide/topics/fundamentals/
Dloaders.jd71 android.content.Loader} instances. This helps an application manage
143 android.content.Loader} instances within an {@link android.app.Activity} or
Dtasks-and-back-stack.jd297 each instance can belong to different tasks, and one task can have multiple instances.</dd>
303 belong to different tasks, and one task can have multiple instances (but only if the the
/frameworks/base/docs/html/guide/topics/manifest/
Dactivity-element.jd406 can be instantiated multiple times. The instances can belong to any task
520 application that defined it, so all instances of the activity run in the same
521 process. However, if this flag is set to "{@code true}", instances of the
522 activity can run in multiple processes, allowing the system to create instances
Dprovider-element.jd184 every client process &mdash; "{@code true}" if instances can run in multiple
/frameworks/base/docs/html/guide/topics/admin/
Ddevice-admin.jd384 one or more {@link android.app.admin.DeviceAdminReceiver} instances</dd>
507 or more {@link android.app.admin.DeviceAdminReceiver} instances. </p>
/frameworks/base/docs/html/sdk/
DOLD_RELEASENOTES.jd164 …<li>Voice/sms are automatically forwarded to other emulator instances running on the same machine,…
371 …e>-data</code> option when starting secondary emulators, to allow those instances to save their da…
/frameworks/base/docs/html/guide/practices/design/
Dseamlessness.jd150 object instances.</p>
Dperformance.jd96 <p>Thus, you should avoid creating object instances you don't need to. Some
/frameworks/base/docs/html/guide/basics/
Dappmodel.jd224 instances are made only from the main thread of the process they are running in.</p>
/frameworks/base/docs/html/guide/topics/appwidgets/
Dindex.jd421 adds two instances of your App Widget, this is only called the first time.
424 for all App Widget instances, then this is a good place to do it.</dd>
504 instances of the App Widget. For example, if the update schedule is defined to

12