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

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Sources.java 11 public interface Sources {
14 * Gets all sources.
38 * Updates the list of sources.
  /packages/apps/Contacts/src/com/android/contacts/model/
Sources.java 51 public class Sources extends BroadcastReceiver implements 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(); local
72 if (sources == null) {
73 sources = new Sources(context)
    [all...]

Completed in 223 milliseconds