Searched refs:RATING_HEART (Results 1 - 2 of 2) sorted by path

/frameworks/base/media/java/android/media/
H A DRating.java25 * A rating is defined by its rating style (see {@link #RATING_HEART},
45 public final static int RATING_HEART = 1; field in class:Rating
122 * @param ratingStyle one of {@link #RATING_HEART}, {@link #RATING_THUMB_UP_DOWN},
129 case RATING_HEART:
143 * Create and return a new Rating instance with a rating style of {@link #RATING_HEART},
149 return new Rating(RATING_HEART, hasHeart ? 1.0f : 0.0f);
224 * @return one of {@link #RATING_HEART}, {@link #RATING_THUMB_UP_DOWN},
235 * if the rating style is not {@link #RATING_HEART} or if it is unrated.
238 if (mRatingStyle != RATING_HEART) {
/frameworks/support/v4/java/android/support/v4/media/
H A DRatingCompat.java30 * A rating is defined by its rating style (see {@link #RATING_HEART},
42 @IntDef({RATING_NONE, RATING_HEART, RATING_THUMB_UP_DOWN, RATING_3_STARS, RATING_4_STARS,
65 public final static int RATING_HEART = 1; field in class:RatingCompat
143 * @param ratingStyle one of {@link #RATING_HEART}, {@link #RATING_THUMB_UP_DOWN},
150 case RATING_HEART:
164 * Create and return a new Rating instance with a rating style of {@link #RATING_HEART},
170 return new RatingCompat(RATING_HEART, hasHeart ? 1.0f : 0.0f);
246 * @return one of {@link #RATING_HEART}, {@link #RATING_THUMB_UP_DOWN},
258 * if the rating style is not {@link #RATING_HEART} or if it is unrated.
261 if (mRatingStyle != RATING_HEART) {
[all...]

Completed in 60 milliseconds