Home
last modified time | relevance | path

Searched refs:styleIndex (Results 1 – 12 of 12) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/ssa/
DSsaDialogueFormat.java37 public final int styleIndex; field in SsaDialogueFormat
42 int startTimeIndex, int endTimeIndex, int styleIndex, int textIndex, int length) { in SsaDialogueFormat() argument
45 this.styleIndex = styleIndex; in SsaDialogueFormat()
59 int styleIndex = C.INDEX_UNSET; in fromFormatLine() local
72 styleIndex = i; in fromFormatLine()
80 ? new SsaDialogueFormat(startTimeIndex, endTimeIndex, styleIndex, textIndex, keys.length) in fromFormatLine()
DSsaDecoder.java258 styles != null && format.styleIndex != C.INDEX_UNSET in parseDialogueLine()
259 ? styles.get(lineValues[format.styleIndex].trim()) in parseDialogueLine()
/external/skia/gm/
Dinversepaths.cpp97 for (size_t styleIndex = 0; styleIndex < SK_ARRAY_COUNT(styles); variable
98 styleIndex++) {
111 paint.setStyle(styles[styleIndex].fPaintStyle);
112 paint.setPathEffect(styles[styleIndex].fPathEffect);
/external/skqp/gm/
Dinversepaths.cpp100 for (size_t styleIndex = 0; styleIndex < SK_ARRAY_COUNT(styles); variable
101 styleIndex++) {
114 paint.setStyle(styles[styleIndex].fPaintStyle);
115 paint.setPathEffect(styles[styleIndex].fPathEffect);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DTimeUnitTest.java250 for ( int styleIndex = 0; styleIndex < styles.length; ++styleIndex ) { in TestGreek()
254 … timeUnitFormat = new TimeUnitFormat(new ULocale(locales[locIndex]), styles[styleIndex]); in TestGreek()
259 + ", style: " + styles[styleIndex] in TestGreek()
DMeasureUnitTest.java2222 for ( int styleIndex = 0; styleIndex < styles.length; ++styleIndex ) { in TestGreek()
2225 … MeasureFormat fmt = MeasureFormat.getInstance(new ULocale(locales[locIndex]), styles[styleIndex]); in TestGreek()
2229 + ", style: " + styles[styleIndex] in TestGreek()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTimeUnitTest.java247 for ( int styleIndex = 0; styleIndex < styles.length; ++styleIndex ) { in TestGreek()
251 … timeUnitFormat = new TimeUnitFormat(new ULocale(locales[locIndex]), styles[styleIndex]); in TestGreek()
256 + ", style: " + styles[styleIndex] in TestGreek()
DMeasureUnitTest.java2219 for ( int styleIndex = 0; styleIndex < styles.length; ++styleIndex ) { in TestGreek()
2222 … MeasureFormat fmt = MeasureFormat.getInstance(new ULocale(locales[locIndex]), styles[styleIndex]); in TestGreek()
2226 + ", style: " + styles[styleIndex] in TestGreek()
/external/icu/icu4c/source/test/intltest/
Dtufmtts.cpp381 for ( unsigned int styleIndex = 0; in testGreekWithFallback() local
382 styleIndex < UPRV_LENGTHOF(styles); in testGreekWithFallback()
383 ++styleIndex ) { in testGreekWithFallback()
398 … LocalPointer<TimeUnitFormat> tfmt(new TimeUnitFormat(l, styles[styleIndex], status)); in testGreekWithFallback()
427 …ocale: " + UnicodeString(locales[locIndex]) + " style: " + (int)styles[styleIndex] + " units: " + … in testGreekWithFallback()
Dmeasfmttest.cpp2889 for ( int32_t styleIndex = 0; styleIndex < UPRV_LENGTHOF(styles); ++styleIndex ) { in TestGreek() local
2895 MeasureFormat fmt(locales[locIndex], styles[styleIndex], status); in TestGreek()
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DResourceTypes.java831 final short styleIndex; field in ResourceTypes.ResXMLTree_attrExt
844 this.styleIndex = buf.getShort(offset + 18); in ResXMLTree_attrExt()
860 private short styleIndex; field in ResourceTypes.ResXMLTree_attrExt.Writer
898 styleIndex = (short) (i + 1); in write()
910 styleIndexWriter.write(styleIndex); in write()
DResXMLParser.java512 final int idx = dtohs((new ResXMLTree_attrExt(mTree.mBuffer.buf, mCurExt)).styleIndex); in indexOfStyle()