Home
last modified time | relevance | path

Searched refs:linethrough (Results 1 – 3 of 3) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlStyle.java80 @OptionalBoolean private int linethrough; field in TtmlStyle
94 linethrough = UNSPECIFIED; in TtmlStyle()
120 return linethrough == ON; in isLinethrough()
123 public TtmlStyle setLinethrough(boolean linethrough) { in setLinethrough() argument
124 this.linethrough = linethrough ? ON : OFF; in setLinethrough()
226 if (linethrough == UNSPECIFIED) { in inherit()
227 linethrough = ancestor.linethrough; in inherit()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/webvtt/
DWebvttCssStyle.java91 @OptionalBoolean private int linethrough; field in WebvttCssStyle
116 linethrough = UNSPECIFIED; in reset()
194 return linethrough == ON; in isLinethrough()
197 public WebvttCssStyle setLinethrough(boolean linethrough) { in setLinethrough() argument
198 this.linethrough = linethrough ? ON : OFF; in setLinethrough()
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/text/ttml/
DTtmlStyleTest.java139 public void linethrough() { in linethrough() method in TtmlStyleTest