Home | History | Annotate | Download | only in media

Lines Matching refs:endChar

112      * for Blinking Text or Highlight Text. endChar is the end offset
126 public final int endChar;
131 * @param endChar the offset of the end character.
133 public CharPos(int startChar, int endChar) {
135 this.endChar = endChar;
180 public final int endChar;
217 * @param endChar the offset of the end character which applys this style
225 public Style(int startChar, int endChar, int fontId,
229 this.endChar = endChar;
274 * specified by startChar and endChar.
280 * specified by startChar and endChar.
292 public final int endChar;
297 * the characters between startChar and endChar.
299 * the characters between startChar and endChar.
301 * @param endChar the offset of the end character to be highlighted.
303 public Karaoke(int startTimeMs, int endTimeMs, int startChar, int endChar) {
307 this.endChar = endChar;
325 public final int endChar;
341 * @param endChar the offset of the end character.
345 public HyperText(int startChar, int endChar, String url, String alt) {
347 this.endChar = endChar;
534 int endChar = -1;
549 endChar = parcel.readInt();
583 Style style = new Style(startChar, endChar, fontId, isBold,
618 int endChar = parcel.readInt();
619 CharPos pos = new CharPos(startChar, endChar);
637 int endChar = parcel.readInt();
639 startChar, endChar);
653 int endChar = parcel.readInt();
662 HyperText hyperText = new HyperText(startChar, endChar, urlString, altString);
676 int endChar = parcel.readInt();
677 CharPos blinkingPos = new CharPos(startChar, endChar);