Home
last modified time | relevance | path

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

/external/fonttools/Lib/fontTools/pens/
DreverseContourPen.py70 secondType, secondPts = contour[0]
73 secondType, secondPts = lastType, lastPts
78 if secondType == "lineTo" and firstPts != secondPts:
/external/cldr/tools/java/org/unicode/cldr/test/
DCheckDates.java633 int secondType = path.lastIndexOf("[@type=\""); in getLastType() local
634 if (secondType < 0) { in getLastType()
637 secondType += 8; in getLastType()
638 int secondEnd = path.indexOf("\"]", secondType); in getLastType()
642 return path.substring(secondType, secondEnd); in getLastType()
646 int secondType = path.indexOf("\"]/"); in getMainType() local
647 if (secondType < 0) { in getMainType()
650 secondType += 3; in getMainType()
651 int secondEnd = path.indexOf("/", secondType); in getMainType()
655 return path.substring(secondType, secondEnd); in getMainType()
/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/
DDashManifestParser.java1386 private static int checkContentTypeConsistency(int firstType, int secondType) { in checkContentTypeConsistency() argument
1388 return secondType; in checkContentTypeConsistency()
1389 } else if (secondType == C.TRACK_TYPE_UNKNOWN) { in checkContentTypeConsistency()
1392 Assertions.checkState(firstType == secondType); in checkContentTypeConsistency()