/third_party/typescript/tests/baselines/reference/ |
D | tsxUnionSpread.types | 6 export type CatInfo = { type: 'Cat'; subType: string; }; 9 >subType : string 32 return { type: 'Cat', subType: 'Large' }; 33 >{ type: 'Cat', subType: 'Large' } : { type: "Cat"; subType: string; } 36 >subType : string 51 var props2:AnimalInfo = { type: 'Cat', subType: 'Large' }; 53 >{ type: 'Cat', subType: 'Large' } : { type: "Cat"; subType: string; } 56 >subType : string
|
D | tsxUnionSpread.symbols | 9 export type CatInfo = { type: 'Cat'; subType: string; }; 12 >subType : Symbol(subType, Decl(index.tsx, 4, 36)) 39 return { type: 'Cat', subType: 'Large' }; 41 >subType : Symbol(subType, Decl(index.tsx, 14, 25)) 54 var props2:AnimalInfo = { type: 'Cat', subType: 'Large' }; 58 >subType : Symbol(subType, Decl(index.tsx, 20, 38))
|
D | tsxUnionSpread.js | 6 export type CatInfo = { type: 'Cat'; subType: string; }; 16 return { type: 'Cat', subType: 'Large' }; 22 var props2:AnimalInfo = { type: 'Cat', subType: 'Large' }; 33 return { type: 'Cat', subType: 'Large' }; 37 var props2 = { type: 'Cat', subType: 'Large' }; property
|
D | typeGuardFunction.js | 29 var subType: C; variable 30 if(isA(subType)) { 31 subType.propC; 125 var subType; 126 if (isA(subType)) { 127 subType.propC; field
|
D | typeGuardFunction.types | 58 var subType: C; 59 >subType : C 61 if(isA(subType)) { 62 >isA(subType) : boolean 64 >subType : C 66 subType.propC; 67 >subType.propC : number 68 >subType : C
|
D | typeGuardFunction.symbols | 66 var subType: C; 67 >subType : Symbol(subType, Decl(typeGuardFunction.ts, 27, 3)) 70 if(isA(subType)) { 72 >subType : Symbol(subType, Decl(typeGuardFunction.ts, 27, 3)) 74 subType.propC; 75 >subType.propC : Symbol(C.propC, Decl(typeGuardFunction.ts, 8, 19)) 76 >subType : Symbol(subType, Decl(typeGuardFunction.ts, 27, 3))
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
D | MeasureUnit.java | 64 protected final String subType; field in MeasureUnit 72 protected MeasureUnit(String type, String subType) { in MeasureUnit() argument 74 this.subType = subType; in MeasureUnit() 89 return subType; in getSubtype() 99 return 31 * type.hashCode() + subType.hashCode(); in hashCode() 114 return type.equals(c.type) && subType.equals(c.subType); in equals() 122 return type + "-" + subType; in toString() 175 public static MeasureUnit internalGetInstance(String type, String subType) { in internalGetInstance() argument 176 if (type == null || subType == null) { in internalGetInstance() 180 if (!ASCII.containsAll(type) || !ASCII_HYPHEN_DIGITS.containsAll(subType)) { in internalGetInstance() [all …]
|
D | Currency.java | 459 return subType; in getCurrencyCode() 476 UResourceBundle numCode = codeMap.get(subType); in getNumericCode() 567 return names.getSymbol(subType); in getName() 569 return names.getNarrowSymbol(subType); in getName() 571 return names.getFormalSymbol(subType); in getName() 573 return names.getVariantSymbol(subType); in getName() 575 return names.getName(subType); in getName() 633 return names.getPluralName(subType, pluralCount); in getName() 885 CurrencyDigits digits = info.currencyDigits(subType, Usage); in getDefaultFractionDigits() 907 CurrencyDigits digits = info.currencyDigits(subType, Usage); in getRoundingIncrement() [all …]
|
D | NoUnit.java | 48 NoUnit(String subType) { in NoUnit() argument 49 super("none", subType); in NoUnit()
|
D | TimeUnit.java | 43 return new MeasureUnitProxy(type, subType); in writeReplace()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | MeasureUnit.java | 67 protected final String subType; field in MeasureUnit 373 protected MeasureUnit(String type, String subType) { in MeasureUnit() argument 375 this.subType = subType; in MeasureUnit() 419 subType = null; in MeasureUnit() 441 return subType; in getSubtype() 625 return 31 * type.hashCode() + subType.hashCode(); in hashCode() 652 … String result = measureUnitImpl == null ? type + "-" + subType : measureUnitImpl.getIdentifier(); in toString() 710 public static MeasureUnit internalGetInstance(String type, String subType) { in internalGetInstance() argument 711 if (type == null || subType == null) { in internalGetInstance() 715 if (!ASCII.containsAll(type) || !ASCII_HYPHEN_DIGITS.containsAll(subType)) { in internalGetInstance() [all …]
|
D | Currency.java | 480 return subType; in getCurrencyCode() 498 UResourceBundle numCode = codeMap.get(subType); in getNumericCode() 594 return names.getSymbol(subType); in getName() 596 return names.getNarrowSymbol(subType); in getName() 598 return names.getFormalSymbol(subType); in getName() 600 return names.getVariantSymbol(subType); in getName() 602 return names.getName(subType); in getName() 662 return names.getPluralName(subType, pluralCount); in getName() 916 CurrencyDigits digits = info.currencyDigits(subType, Usage); in getDefaultFractionDigits() 940 CurrencyDigits digits = info.currencyDigits(subType, Usage); in getRoundingIncrement() [all …]
|
D | TimeUnit.java | 44 return new MeasureUnitProxy(type, subType); in writeReplace()
|
/third_party/typescript/tests/cases/compiler/ |
D | tsxUnionSpread.tsx | 7 export type CatInfo = { type: 'Cat'; subType: string; }; 17 return { type: 'Cat', subType: 'Large' }; 23 var props2:AnimalInfo = { type: 'Cat', subType: 'Large' };
|
/third_party/typescript/tests/cases/conformance/expressions/typeGuards/ |
D | typeGuardFunction.ts | 29 var subType: C; variable 30 if(isA(subType)) { 31 subType.propC;
|
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
D | RubyDescriptorPool.java | 147 RubyDescriptor subType = (RubyDescriptor) lookup(context, in buildFileDescriptor() local 149 rubyFieldDescriptor.setSubType(subType); in buildFileDescriptor() 152 RubyEnumDescriptor subType = (RubyEnumDescriptor) lookup(context, in buildFileDescriptor() local 154 rubyFieldDescriptor.setSubType(subType); in buildFileDescriptor()
|
D | RubyFieldDescriptor.java | 130 return subType; in getSubType() 238 this.subType = rubyDescriptor; in setSubType() 272 private IRubyObject subType; field in RubyFieldDescriptor
|
/third_party/jsframework/runtime/main/extend/systemplugin/ohos/ |
D | bundleManager.js | 41 subType: "[PC preview] unknown sub type", property 189 subType: "[PC preview] unknown sub type", property 287 subType: " [PC preview] unknown bundle.AbilitySubType", property 468 subType: "[PC preview] unknown bundle.AbilitySubType", property 535 subType: "[PC preview] unknown bundle.AbilitySubType", property 647 subType: "[PC preview] unknown sub type", property 745 subType: " [PC preview] unknown bundle.AbilitySubType", property 829 subType: "[PC preview] unknown sub type", property
|
/third_party/weex-loader/deps/weex-styler/ |
D | index.js | 238 var subType = declaration.type 242 if (subType !== 'declaration') { 373 var subType = declaration.type 377 if (subType !== 'declaration') { 452 var subType = declaration.type 456 if (subType !== 'declaration') {
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/bundle/ |
D | abilityInfo.js | 33 subType: AbilitySubType, property
|
/third_party/jsframework/runtime/main/extend/systemplugin/ |
D | distributedSchedule.js | 61 subType: "[PC Preview] unknow subType", property
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fUniformLocationTests.cpp | 328 const glu::VarType subType = glu::getVarType(uniformInfo.type, subTypeIter.getPath()); in genShaderSources() local 329 const glu::DataType scalarType = glu::getDataTypeScalarType(subType.getBasicType()); in genShaderSources() 349 << getFirstComponentName(subType) << "), " << expectValue << ");\n"; in genShaderSources() 353 << getFirstComponentName(subType) << "), " << expectValue << ");\n"; in genShaderSources()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | BuildSPIRV.cpp | 738 SpirvType subType = type; in declareType() local 739 subType.arraySizes = type.arraySizes.first(type.arraySizes.size() - 1); in declareType() 740 subType.typeSpec.onArrayElementSelection(subType.block != nullptr, in declareType() 741 !subType.arraySizes.empty()); in declareType() 743 const spirv::IdRef subTypeId = getSpirvTypeData(subType, block).id; in declareType()
|
/third_party/glslang/glslang/MachineIndependent/ |
D | iomapper.cpp | 452 TType subType(type, 0); in operator ()() local 453 subType.appendMangledName(mangleName1); in operator ()() 484 TType subType(ent2->second.symbol->getType(), 0); in operator ()() local 485 subType.appendMangledName(mangleName2); in operator ()() 553 TType subType(ent2->second.symbol->getType(), 0); in operator ()() local 554 subType.appendMangledName(mangleName2); in operator ()()
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_update.js | 463 subType: BusinessSubType property
|