HomeSort by relevance Sort by last modified time
    Searched defs:mAttachedViews (Results 1 - 2 of 2) sorted by null

  /packages/apps/Messaging/src/com/android/messaging/ui/
AsyncImageView.java 415 private final HashSet<AsyncImageView> mAttachedViews;
418 mAttachedViews = new HashSet<AsyncImageView>();
422 mAttachedViews.add(view);
426 mAttachedViews.remove(view);
450 for (final AsyncImageView view : mAttachedViews) {
453 mAttachedViews.clear();
  /frameworks/base/core/java/android/widget/
DateTimeView.java 414 private final ArrayList<DateTimeView> mAttachedViews = new ArrayList<DateTimeView>();
442 synchronized (mAttachedViews) {
443 final boolean register = mAttachedViews.isEmpty();
444 mAttachedViews.add(v);
452 synchronized (mAttachedViews) {
453 final boolean removed = mAttachedViews.remove(v);
456 if (removed && mAttachedViews.isEmpty()) {
463 synchronized (mAttachedViews) {
464 final int count = mAttachedViews.size();
466 DateTimeView view = mAttachedViews.get(i)
    [all...]

Completed in 103 milliseconds