Searched defs:Sources (Results 1 - 2 of 2) sorted by relevance

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSources.java11 public interface Sources { interface
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DSources.java51 public class Sources extends BroadcastReceiver implements OnAccountsUpdateListener { class in inherits:BroadcastReceiver,OnAccountsUpdateListener
52 private static final String TAG = "Sources";
63 private static SoftReference<Sources> sInstance = null;
66 * Requests the singleton instance of {@link Sources} with data bound from
70 public static synchronized Sources getInstance(Context context) {
71 Sources sources = sInstance == null ? null : sInstance.get();
73 sources = new Sources(context);
74 sInstance = new SoftReference<Sources>(sources);
82 private Sources(Context context) { method in class:Sources
112 public Sources(ContactsSourc method in class:Sources
[all...]

Completed in 96 milliseconds