HomeSort by relevance Sort by last modified time
    Searched refs:favorite (Results 1 - 12 of 12) sorted by null

  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/models/
Song.java 43 @SerializedName("favorite") private boolean mFavorite = false;
92 public void setFavorite(boolean favorite) {
93 mFavorite = favorite;
  /test/vts/web/dashboard/src/main/java/com/android/vts/servlet/
ShowPreferencesServlet.java 120 for (Entity favorite : datastore.prepare(q).asIterable()) {
121 UserFavoriteEntity favoriteEntity = UserFavoriteEntity.fromEntity(favorite);
125 subscriptionEntityMap.put(favoriteEntity.testKey, favorite);
128 // Query for the tests specified by the user favorite entities
183 UserFavoriteEntity favorite = new UserFavoriteEntity(currentUser, test.getKey()); local
184 newSubscriptions.add(favorite.toEntity());
DashboardMainServlet.java 160 for (Entity favorite : datastore.prepare(q).asIterable()) {
161 Key testKey = (Key) favorite.getProperty(UserFavoriteEntity.TEST_KEY);
  /test/vts/web/dashboard/src/main/java/com/android/vts/util/
EmailHelper.java 66 for (Entity favorite : datastore.prepare(favoritesQuery).asIterable()) {
67 UserFavoriteEntity favoriteEntity = UserFavoriteEntity.fromEntity(favorite);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/model/
MusicProvider.java 157 public void setFavorite(String musicId, boolean favorite) {
158 if (favorite) {
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/model/
MusicProvider.java 157 public void setFavorite(String musicId, boolean favorite) {
158 if (favorite) {
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 305 TextView textView = (TextView) inflater.inflate(R.layout.favorite, group, false);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
MusicService.java 440 LogHelper.i(TAG, "onCustomAction: favorite for current track");
446 // playback state needs to be updated because the "Favorite" icon on the
447 // custom action will change to reflect the new favorite state.
461 // on the app: favorite playlist, "I'm feeling lucky", most recent, etc.
642 // Set appropriate "Favorite" icon on Custom action:
648 LogHelper.d(TAG, "updatePlaybackState, setting Favorite custom action of music ",
649 musicId, " current favorite=", mMusicProvider.isFavorite(musicId));
650 stateBuilder.addCustomAction(CUSTOM_ACTION_THUMBS_UP, getString(R.string.favorite),
    [all...]
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaBrowserServiceSupport.java 481 Log.i(TAG, "onCustomAction: favorite for current track");
487 // playback state needs to be updated because the "Favorite" icon on the
488 // custom action will change to reflect the new favorite state.
502 // on the app: favorite playlist, "I'm feeling lucky", most recent, etc.
680 // Set appropriate "Favorite" icon on Custom action:
686 Log.d(TAG, "updatePlaybackState, setting Favorite custom action of music "
687 + musicId + " current favorite=" + mMusicProvider.isFavorite(musicId));
688 stateBuilder.addCustomAction(CUSTOM_ACTION_THUMBS_UP, getString(R.string.favorite),
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Launcher.java 1432 BubbleTextView favorite = (BubbleTextView) getLayoutInflater().inflate(R.layout.app_icon, local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java 1086 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false); local
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 211 int visible, boolean autoAdd, boolean favorite) {
217 values.put(Groups.FAVORITES, favorite ? 1 : 0);
    [all...]

Completed in 637 milliseconds