Searched refs:secondType (Results 1 – 3 of 3) sorted by relevance
70 secondType, secondPts = contour[0]73 secondType, secondPts = lastType, lastPts78 if secondType == "lineTo" and firstPts != secondPts:
633 int secondType = path.lastIndexOf("[@type=\""); in getLastType() local634 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() local647 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()
1386 private static int checkContentTypeConsistency(int firstType, int secondType) { in checkContentTypeConsistency() argument1388 return secondType; in checkContentTypeConsistency()1389 } else if (secondType == C.TRACK_TYPE_UNKNOWN) { in checkContentTypeConsistency()1392 Assertions.checkState(firstType == secondType); in checkContentTypeConsistency()