Searched refs:referent (Results 1 - 6 of 6) sorted by relevance

/packages/apps/TV/common/src/com/android/tv/common/
H A DWeakHandler.java40 * Constructs a new handler with a weak reference to the given referent using the provided
44 * @param ref the referent to track
52 * Constructs a new handler with a weak reference to the given referent.
54 * @param ref the referent to track
65 T referent = mRef.get();
66 if (referent == null) {
69 handleMessage(msg, referent);
78 * @param referent the referent. Guaranteed to be non null.
80 protected abstract void handleMessage(Message msg, @NonNull T referent); argument
[all...]
/packages/apps/TV/src/com/android/tv/util/
H A DImageLoader.java103 * Creates an callback keeping a weak reference to {@code referent}.
105 * <p> If the "referent" is no longer valid, it no longer makes sense to run the
106 * callback. The referent is the View, or Activity or whatever that actually needs to
107 * receive the Bitmap. If the referent has been GC, then no need to run the callback.
109 public ImageLoaderCallback(T referent) { argument
110 mWeakReference = new WeakReference<>(referent);
117 T referent = mWeakReference.get();
118 if (referent != null) {
119 onBitmapLoaded(referent, bitmap);
128 public abstract void onBitmapLoaded(T referent, argument
[all...]
/packages/apps/TV/src/com/android/tv/dvr/ui/
H A DRecordingCardView.java165 RecordingCardImageLoaderCallback(RecordingCardView referent, String uri) { argument
166 super(referent);
/packages/apps/TV/src/com/android/tv/recommendation/
H A DRecommendationDataManager.java604 protected void handleMessage(Message msg, @NonNull RecommendationDataManager referent) { } argument
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 590 milliseconds