Lines Matching defs:tracker

38  * To use a media tracker, create an instance of
77 * MediaTracker tracker;
87 * tracker = new MediaTracker(this);
90 * tracker.addImage(bg, 0);
94 * tracker.addImage(anim[i], 1);
116 * tracker.waitForID(0);
117 * tracker.waitForID(1);
152 * if ((tracker.statusAll(false) & MediaTracker.ERRORED) != 0) {
158 * if (tracker.statusID(1, false) == MediaTracker.COMPLETE) {
172 * tracked by a media tracker where the image will
195 * Creates a media tracker to track images for a given component.
205 * tracker. The image will eventually be rendered at its default
216 * by this media tracker. The image will eventually be
262 * Checks to see if all images being tracked by this media tracker
285 * Checks to see if all images being tracked by this media tracker
325 * by this media tracker had an error during
344 * media tracker that have encountered
375 * Starts loading all images tracked by this media tracker. This
395 * Starts loading all images tracked by this media tracker. This
441 * status of all media that are tracked by this media tracker.
477 * Checks to see if all images tracked by this media tracker that
501 * Checks to see if all images tracked by this media tracker that
544 * media tracker with the specified identifier.
570 * tracker with the specified identifier
606 * Starts loading all images tracked by this media tracker with the
626 * Starts loading all images tracked by this media tracker with the
674 * tracked by this media tracker.
713 * Removes the specified image from this media tracker.
743 * ID of this media tracker.
774 * width, height, and ID from this media tracker.
813 MediaTracker tracker;
821 tracker = mt;
876 tracker.setDone();
908 int flags = tracker.target.checkImage(image, width, height, null);
922 if (tracker.target.prepareImage(image, width, height, this)) {