Home
last modified time | relevance | path

Searched refs:TYPE_UNSET (Results 1 – 14 of 14) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/
DCue.java49 @IntDef({TYPE_UNSET, ANCHOR_TYPE_START, ANCHOR_TYPE_MIDDLE, ANCHOR_TYPE_END})
53 public static final int TYPE_UNSET = Integer.MIN_VALUE; field in Cue
78 @IntDef({TYPE_UNSET, LINE_TYPE_FRACTION, LINE_TYPE_NUMBER})
99 TYPE_UNSET,
122 TYPE_UNSET,
291 /* lineType= */ TYPE_UNSET, in Cue()
292 /* lineAnchor= */ TYPE_UNSET, in Cue()
294 /* positionAnchor= */ TYPE_UNSET, in Cue()
376 /* verticalType= */ TYPE_UNSET); in Cue()
415 /* textSizeType= */ TYPE_UNSET, in Cue()
[all …]
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlRegion.java40 /* lineType= */ Cue.TYPE_UNSET, in TtmlRegion()
41 /* lineAnchor= */ Cue.TYPE_UNSET, in TtmlRegion()
44 /* textSizeType= */ Cue.TYPE_UNSET, in TtmlRegion()
DTtmlStyle.java102 verticalType = Cue.TYPE_UNSET; in TtmlStyle()
252 if (chaining && verticalType == Cue.TYPE_UNSET && ancestor.verticalType != Cue.TYPE_UNSET) { in inherit()
/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DSubtitleViewUtils.java25 if (cue.textSizeType == Cue.TYPE_UNSET || cue.textSize == Cue.DIMEN_UNSET) { in resolveCueTextSize()
45 case Cue.TYPE_UNSET: in resolveTextSize()
DSubtitleWebView.java181 case Cue.TYPE_UNSET: in updateWebView()
215 case Cue.TYPE_UNSET: in updateWebView()
274 case Cue.TYPE_UNSET: in convertVerticalTypeToCss()
311 case Cue.TYPE_UNSET: in anchorTypeToTranslatePercent()
DSubtitlePainter.java350 case Cue.TYPE_UNSET: in setupTextLayout()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/ssa/
DSsaDecoder.java376 return Cue.TYPE_UNSET; in toLineAnchor()
379 return Cue.TYPE_UNSET; in toLineAnchor()
399 return Cue.TYPE_UNSET; in toPositionAnchor()
402 return Cue.TYPE_UNSET; in toPositionAnchor()
414 case Cue.TYPE_UNSET: in computeDefaultLineOrPosition()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/webvtt/
DWebvttCueParser.java420 return Cue.TYPE_UNSET; in parseLineAnchor()
447 return Cue.TYPE_UNSET; in parsePositionAnchor()
460 return Cue.TYPE_UNSET; in parseVerticalAttribute()
765 positionAnchor = Cue.TYPE_UNSET; in WebvttCueInfoBuilder()
768 verticalType = Cue.TYPE_UNSET; in WebvttCueInfoBuilder()
780 this.positionAnchor != Cue.TYPE_UNSET in toCueBuilder()
879 case Cue.TYPE_UNSET: in deriveMaxSize()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/subrip/
DSubripDecoder.java254 case Cue.TYPE_UNSET: in getFractionalPositionForAnchorType()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/tx3g/
DTx3gDecoder.java160 Cue.TYPE_UNSET, in decode()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/cea/
DCea608Decoder.java628 @Nullable Cue cue = cueBuilders.get(i).build(/* forcedPositionAnchor= */ Cue.TYPE_UNSET); in getDisplayCues()
906 if (forcedPositionAnchor != Cue.TYPE_UNSET) { in build()
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/text/webvtt/
DWebvttDecoderTest.java200 assertThat(firstCue.verticalType).isEqualTo(Cue.TYPE_UNSET); in decodeWithPositioning()
285 assertThat(thirdCue.verticalType).isEqualTo(Cue.TYPE_UNSET); in decodeWithVertical()
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/text/ttml/
DTtmlStyleTest.java94 .isEqualTo(Cue.TYPE_UNSET); in inheritStyle()
DTtmlDecoderTest.java589 assertThat(thirdCue.verticalType).isEqualTo(Cue.TYPE_UNSET); in verticalText()