Home
last modified time | relevance | path

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

/external/fonttools/Lib/fontTools/pens/
DreverseContourPen.py60 lastType, lastPts = contour[-1]
68 contour[-1] = (lastType,
75 secondType, secondPts = lastType, lastPts
83 contour[-1] = (lastType,
88 contour[-1] = (lastType, tuple(lastPts[:-1]) + (firstOnCurve,))
/external/cldr/tools/java/org/unicode/cldr/util/
DExtractCollationRules.java33 String lastType = ""; in set() local
47 if (!type.equals(lastType)) { in set()
48 lastType = type; in set()
49 type_rules.put(lastType, rules.toString()); in set()
99 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()
DICUServiceBuilder.java436 String lastType; in getArray() local
438 lastType = itemNames != null && i < itemNames.length ? itemNames[i] : String.valueOf(i); in getArray()
439 String item = cldrFile.getWinningValueWithBailey(prefix + lastType + postfix); in getArray()
447 …+ prefix + lastType + postfix + " - result.size=" + result.size() + ", less than acceptable minimu… in getArray()
DStandardCodes.java1127 LstrType lastType = null;
1179 subtagData = CldrUtility.get(result2, lastType = LstrType.valueOf(rest));
1196 languageCount.add(lastType, 1);
1202 languageCount.add(lastType, 1);
/external/turbine/java/com/google/turbine/parse/
DVariableInitializerParser.java284 int lastType = -1; in dropBracks() local
287 lastType = ltIndices.removeLast(); in dropBracks()
295 this.tokens = tokens.subList(0, lastType); in dropBracks()
/external/gptfdisk/
Dparttypes.cc23 AType* PartType::lastType = NULL; member in PartType
252 lastType->next = tempType; in AddType()
254 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.java222 String lastType = parts.getAttributeValue(-1, "type"); in handleCheck() local
225 if (lastType != null && !lastType.equals("standard")) { in handleCheck()
226 Matcher matcher = ALLOWED_INTEGER.matcher(lastType); in handleCheck()
/external/syzkaller/vendor/golang.org/x/text/unicode/bidi/
Dcore.go447 lastType := types[length-1]
448 if lastType.in(LRI, RLI, FSI) {
/external/deqp/modules/gles31/functional/
Des31fSSBOLayoutTests.cpp161 const glu::VarType& lastType = lastVar.getType(); in generateBlock() local
162 …const bool isUnsizedArr = lastType.isArrayType() && (lastType.getArraySize() == glu::VarType::UN… in generateBlock()
/external/deqp/external/vulkancts/modules/vulkan/ssbo/
DvktSSBOLayoutTests.cpp183 const glu::VarType& lastType = lastVar.getType(); in generateBlock() local
184 …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.java1605 String lastType = null; in testAUnit() local
1609 if (!type.equals(lastType)) { in testAUnit()
1611 lastType = type; in testAUnit()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DMeasureUnitTest.java1602 String lastType = null; in testAUnit() local
1606 if (!type.equals(lastType)) { in testAUnit()
1608 lastType = type; in testAUnit()
/external/clang/include/clang/AST/
DDecl.h2604 static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } in classofKind()