Home
last modified time | relevance | path

Searched refs:rubyText (Results 1 – 5 of 5) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/span/
DRubySpan.java77 public final String rubyText; field in RubySpan
82 public RubySpan(String rubyText, @Position int position) { in RubySpan() argument
83 this.rubyText = rubyText; in RubySpan()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlRenderUtil.java132 String rubyText; in applyStylesToSpan() local
134 rubyText = Util.castNonNull(textNode.getChild(0).text); in applyStylesToSpan()
147 new RubySpan(rubyText, rubyPosition), start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); in applyStylesToSpan()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/webvtt/
DWebvttCueParser.java590 CharSequence rubyText = text.subSequence(adjustedRubyTextStart, adjustedRubyTextEnd); in applyRubySpans() local
593 new RubySpan(rubyText.toString(), RubySpan.POSITION_OVER), in applyRubySpans()
597 deletedCharCount += rubyText.length(); in applyRubySpans()
/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DSpannedToHtmlConverter.java177 return "<rt>" + escapeHtml(rubySpan.rubyText) + "</rt></ruby>"; in getClosingTag()
/external/exoplayer/tree/testutils/src/main/java/com/google/android/exoplayer2/testutil/truth/
DSpannedSubject.java1064 spanTextsAndPositions.add(new TextAndPosition(span.rubyText, span.position)); in withTextAndPosition()
1065 if (span.rubyText.equals(text)) { in withTextAndPosition()