Home
last modified time | relevance | path

Searched refs:oldType (Results 1 – 8 of 8) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/util/
DTestUtilities.java515 String oldType = type.equals("region") ? "territory" : type; in checkStandardCodes() local
516 Set<String> allCodes = sc.getAvailableCodes(oldType); in checkStandardCodes()
528 String oldType = type.equals("region") ? "territory" : type; in checkStandardCodes() local
529 Set<String> goodCodes = sc.getGoodAvailableCodes(oldType); in checkStandardCodes()
534 List<String> sdata = sc.getFullData(oldType, tag); in checkStandardCodes()
564 String oldType = type.equals("region") ? "territory" : type; in checkStandardCodes() local
566 String aliasType = oldType.equals("grandfathered") ? "language" : oldType; in checkStandardCodes()
586 Set<String> goodCodes = sc.getAvailableCodes(oldType); in checkStandardCodes()
592 List<String> sdata = sc.getFullData(oldType, tag); in checkStandardCodes()
599 ….println("\t\t\t<variable id=\"$" + oldType + "\" type=\"list\">" + allCodeString + "</variable>"); in checkStandardCodes()
/external/antlr/tool/src/main/java/org/antlr/tool/
DAssignTokenTypesBehavior.java252 int oldType = oldTypeI; in assignStringTypes() local
253 if ( oldType<Label.MIN_TOKEN_TYPE ) { in assignStringTypes()
/external/desugar/java/com/google/devtools/build/android/desugar/
DBytecodeTypeInference.java671 private void replaceUninitializedTypeInStack(InferredType oldType, InferredType newType) { in replaceUninitializedTypeInStack() argument
672 checkArgument(oldType.isUninitialized(), "The old type is NOT uninitialized. %s", oldType); in replaceUninitializedTypeInStack() local
675 if (type.equals(oldType)) { in replaceUninitializedTypeInStack()
/external/deqp-deps/glslang/glslang/MachineIndependent/
DParseHelper.cpp4142 TType& oldType = *member->type; in redeclareBuiltinBlock() local
4144 if (! newType.sameElementType(oldType)) in redeclareBuiltinBlock()
4146 if (oldType.isArray() != newType.isArray()) in redeclareBuiltinBlock()
4148 …else if (! oldType.getQualifier().isPerView() && ! oldType.sameArrayness(newType) && oldType.isSiz… in redeclareBuiltinBlock()
4150 else if (! oldType.getQualifier().isPerView() && newType.isArray()) in redeclareBuiltinBlock()
4153 if (oldType.getQualifier().isPerView() && ! newType.getQualifier().isPerView()) in redeclareBuiltinBlock()
4155 else if (! oldType.getQualifier().isPerView() && newType.getQualifier().isPerView()) in redeclareBuiltinBlock()
4158 if (oldType.getArraySizes()->getNumDims() != newType.getArraySizes()->getNumDims()) in redeclareBuiltinBlock()
4165 oldType.getArraySizes()->setDimSize(1, innerDimSize); in redeclareBuiltinBlock()
4168 … if (oldType.getQualifier().isPerPrimitive() && ! newType.getQualifier().isPerPrimitive()) in redeclareBuiltinBlock()
[all …]
/external/jdiff/src/jdiff/
DHTMLReportGenerator.java1213 String oldType = null; in writeCtorChangedTableEntry() local
1224 oldType = memberDiff.oldType_; in writeCtorChangedTableEntry()
1225 if (oldType.compareTo("void") == 0) in writeCtorChangedTableEntry()
1226 oldType = ""; in writeCtorChangedTableEntry()
1230 oldMemberRef + ".html#" + className + "(" + oldType + in writeCtorChangedTableEntry()
/external/skia/src/sksl/
DSkSLIRGenerator.cpp1931 const Type& oldType = ((TypeReference&) *base).fValue; in convertIndex() local
1933 Type* newType = new Type(oldType.name() + "[" + to_string(size) + "]", in convertIndex()
1934 Type::kArray_Kind, oldType, size); in convertIndex()
2180 const Type& oldType = ((TypeReference&) *base).fValue; in convertSuffixExpression() local
2181 Type* newType = new Type(oldType.name() + "[]", Type::kArray_Kind, oldType, in convertSuffixExpression()
/external/skqp/src/sksl/
DSkSLIRGenerator.cpp1881 const Type& oldType = ((TypeReference&) *base).fValue; in convertIndex() local
1883 Type* newType = new Type(oldType.name() + "[" + to_string(size) + "]", in convertIndex()
1884 Type::kArray_Kind, oldType, size); in convertIndex()
2116 const Type& oldType = ((TypeReference&) *base).fValue; in convertSuffixExpression() local
2117 Type* newType = new Type(oldType.name() + "[]", Type::kArray_Kind, oldType, in convertSuffixExpression()
/external/clang/lib/Sema/
DTreeTransform.h5729 const AttributedType *oldType = TL.getTypePtr(); in TransformAttributedType() local
5738 modifiedType != oldType->getModifiedType()) { in TransformAttributedType()
5742 = getDerived().TransformType(oldType->getEquivalentType()); in TransformAttributedType()
5748 if (auto nullability = oldType->getImmediateNullability()) { in TransformAttributedType()
5756 result = SemaRef.Context.getAttributedType(oldType->getAttrKind(), in TransformAttributedType()