Home
last modified time | relevance | path

Searched refs:firstType (Results 1 – 10 of 10) sorted by relevance

/external/fonttools/Lib/fontTools/pens/
DreverseContourPen.py37 firstType, firstPts = contour.pop(0)
38 assert firstType in ("moveTo", "qCurveTo"), (
39 "invalid initial segment type: %r" % firstType)
41 if firstType == "qCurveTo":
52 if firstType == "moveTo":
56 yield firstType, firstPts
62 yield firstType, firstPts
85 yield firstType, (lastOnCurve,)
/external/llvm-project/lld/COFF/
DInputFiles.cpp804 CVTypeArray::Iterator firstType = types.begin(); in initializeDependencies() local
805 if (firstType == types.end()) in initializeDependencies()
818 if (firstType->kind() == LF_TYPESERVER2) { in initializeDependencies()
820 TypeDeserializer::deserializeAs<TypeServer2Record>(firstType->data())); in initializeDependencies()
828 if (firstType->kind() == LF_PRECOMP) { in initializeDependencies()
830 TypeDeserializer::deserializeAs<PrecompRecord>(firstType->data())); in initializeDependencies()
833 debugTypes = debugTypes.drop_front(firstType->RecordData.size()); in initializeDependencies()
/external/javapoet/src/main/java/com/squareup/javapoet/
DTypeSpec.java240 boolean firstType = true; in emit()
242 if (!firstType) codeWriter.emit(","); in emit()
244 firstType = false; in emit()
250 boolean firstType = true; in emit()
252 if (!firstType) codeWriter.emit(","); in emit()
254 firstType = false; in emit()
/external/cldr/tools/java/org/unicode/cldr/util/
DLenientDateParser.java386 Type firstType; field in LenientDateParser.SoFar
390 firstType = null; in clear()
395 return "{" + firstType + ", " + haveSoFarSet + "}"; in toString()
399 if (firstType != null) { in setFirstType()
405 firstType = hasDate ? Type.YEAR : Type.HOUR; in setFirstType()
417 if (firstType != null) { in setFirstType()
420 firstType = Type.YEAR; in setFirstType()
422 firstType = Type.HOUR; in setFirstType()
/external/cldr/tools/java/org/unicode/cldr/test/
DDateOrder.java173 FormatType firstType = FormatType.getType(first);
178 if (!otherType.isLessImportantThan(firstType)) {
/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
1387 if (firstType == C.TRACK_TYPE_UNKNOWN) { in checkContentTypeConsistency()
1390 return firstType; in checkContentTypeConsistency()
1392 Assertions.checkState(firstType == secondType); in checkContentTypeConsistency()
1393 return firstType; in checkContentTypeConsistency()
/external/doclava/src/com/google/doclava/
DInfoBuilder.java706 boolean firstType = true; in buildFields()
710 if (firstType) { in buildFields()
711 firstType = false; in buildFields()
/external/libxkbcommon/src/x11/
Dkeymap.c329 FAIL_UNLESS(reply->firstType == 0); in get_types()
/external/clang/include/clang/AST/
DDecl.h2604 static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } in classofKind()
/external/llvm-project/clang/include/clang/AST/
DDecl.h3117 static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } in classofKind()