Home
last modified time | relevance | path

Searched refs:lastType (Results 1 – 18 of 18) sorted by relevance

/external/fonttools/Lib/fontTools/pens/
DreverseContourPen.py58 lastType, lastPts = contour[-1]
66 contour[-1] = (lastType,
73 secondType, secondPts = lastType, lastPts
81 contour[-1] = (lastType,
86 contour[-1] = (lastType, tuple(lastPts[:-1]) + (firstOnCurve,))
/external/llvm-project/clang/utils/TableGen/
DClangTypeNodesEmitter.cpp95 void emitLastNodeInvocation(TypeNode lastType);
138 TypeNode lastType; in emitNodeInvocations() local
170 lastType = type; in emitNodeInvocations()
173 emitLastNodeInvocation(lastType); in emitNodeInvocations()
/external/cldr/tools/java/org/unicode/cldr/util/
DExtractCollationRules.java25 String lastType = ""; in set() local
39 if (!type.equals(lastType)) { in set()
40 lastType = type; in set()
41 type_rules.put(lastType, rules.toString()); in set()
91 type_rules.put(lastType, rules.toString()); in set()
DDtdDataCheck.java245 DtdType lastType = null; in main() local
255 if (lastType != type) { in main()
256 if (lastType != null) { in main()
257 showAll(lastType, allElements); in main()
259 lastType = type; in main()
278 showAll(lastType, allElements); in main()
DStandardCodes.java1157 LstrType lastType = null;
1209 lastType = rest.equals("grandfathered") ?
1211 subtagData = CldrUtility.get(result2, lastType);
1213 result2.put(lastType, subtagData = new TreeMap<>());
1228 languageCount.add(lastType, 1);
1234 languageCount.add(lastType, 1);
DICUServiceBuilder.java449 String lastType; in getArray() local
451 lastType = itemNames != null && i < itemNames.length ? itemNames[i] : String.valueOf(i); in getArray()
452 String item = cldrFile.getWinningValueWithBailey(prefix + lastType + postfix); in getArray()
460 …+ prefix + lastType + postfix + " - result.size=" + result.size() + ", less than acceptable minimu… in getArray()
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
DIcuDataDumper.java119 private LineType lastType = LineType.COMMENT; field in IcuDataDumper.IcuDataParser
152 checkState(lastType == LineType.GROUP_END); in parse()
180 checkState(match.getType().isValidTransitionFrom(lastType), in processLine()
181 "invalid state transition: %s --//-> %s", lastType, match.getType()); in processLine() local
258 lastType = match.getType(); in processLine()
352 boolean isValidTransitionFrom(LineType lastType) { in isValidTransitionFrom() argument
353 return TRANSITIONS.get(this).contains(lastType); in isValidTransitionFrom()
/external/turbine/java/com/google/turbine/parse/
DVariableInitializerParser.java280 int lastType = -1; in dropBracks() local
286 lastType = ltIndices.removeLast(); in dropBracks()
294 this.tokens = tokens.subList(0, lastType); in dropBracks()
/external/gptfdisk/
Dparttypes.cc23 AType* PartType::lastType = NULL; member in PartType
380 lastType->next = tempType; in AddType()
382 lastType = tempType; in AddType()
Dparttypes.h36 static AType* lastType; // Pointer to last entry in the list variable
/external/cldr/tools/java/org/unicode/cldr/test/
DCheckNumbers.java255 String lastType = parts.getAttributeValue(-1, "type"); in handleCheck() local
258 if (lastType != null && !lastType.equals("standard")) { in handleCheck()
259 Matcher matcher = ALLOWED_INTEGER.matcher(lastType); in handleCheck()
/external/llvm-project/lld/lib/ReaderWriter/MachO/
DMachONormalizedFileBinaryWriter.cpp1188 BindType lastType = (BindType)0; in buildBindInfo() local
1212 if (lastType != entry.kind) { in buildBindInfo()
1214 lastType = entry.kind; in buildBindInfo()
/external/deqp/modules/gles31/functional/
Des31fSSBOLayoutTests.cpp163 const glu::VarType& lastType = lastVar.getType(); in generateBlock() local
164 …const bool isUnsizedArr = lastType.isArrayType() && (lastType.getArraySize() == glu::VarType::UN… in generateBlock()
/external/deqp/external/vulkancts/modules/vulkan/ssbo/
DvktSSBOLayoutTests.cpp195 const glu::VarType& lastType = lastVar.getType(); in generateBlock() local
196 …const bool isUnsizedArr = lastType.isArrayType() && (lastType.getArraySize() == glu::VarType::UN… in generateBlock()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DMeasureUnitTest.java2242 String lastType = null; in testAUnit() local
2246 if (!type.equals(lastType)) { in testAUnit()
2248 lastType = type; in testAUnit()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DMeasureUnitTest.java2239 String lastType = null; in testAUnit() local
2243 if (!type.equals(lastType)) { in testAUnit()
2245 lastType = type; in testAUnit()
/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()