Home | History | Annotate | Download | only in providers

Lines Matching refs:RENDITION

2167         public static final String RENDITION = "rendition";
2195 public static int parseRendition(String rendition) {
2196 if (TextUtils.equals(rendition, SIMPLE_STRING)) {
2198 } else if (TextUtils.equals(rendition, BEST_STRING)) {
2202 throw new IllegalArgumentException(String.format("Unknown rendition %s", rendition));
2205 public static String toString(int rendition) {
2206 if (rendition == BEST) {
2208 } else if (rendition == SIMPLE) {
2212 throw new IllegalArgumentException(String.format("Unknown rendition %d", rendition));