Home
last modified time | relevance | path

Searched refs:subType (Results 1 – 25 of 57) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
DtsxUnionSpread.types6 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
DtsxUnionSpread.symbols9 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))
DtsxUnionSpread.js6 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
DtypeGuardFunction.js29 var subType: C; variable
30 if(isA(subType)) {
31 subType.propC;
125 var subType;
126 if (isA(subType)) {
127 subType.propC; field
DtypeGuardFunction.types58 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
DtypeGuardFunction.symbols66 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/
DMeasureUnit.java64 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 …]
DCurrency.java459 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 …]
DNoUnit.java48 NoUnit(String subType) { in NoUnit() argument
49 super("none", subType); in NoUnit()
DTimeUnit.java43 return new MeasureUnitProxy(type, subType); in writeReplace()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DMeasureUnit.java67 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 …]
DCurrency.java480 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 …]
DTimeUnit.java44 return new MeasureUnitProxy(type, subType); in writeReplace()
/third_party/typescript/tests/cases/compiler/
DtsxUnionSpread.tsx7 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/
DtypeGuardFunction.ts29 var subType: C; variable
30 if(isA(subType)) {
31 subType.propC;
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
DRubyDescriptorPool.java147 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()
DRubyFieldDescriptor.java130 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/
DbundleManager.js41 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/
Dindex.js238 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/
DabilityInfo.js33 subType: AbilitySubType, property
/third_party/jsframework/runtime/main/extend/systemplugin/
DdistributedSchedule.js61 subType: "[PC Preview] unknow subType", property
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fUniformLocationTests.cpp328 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/
DBuildSPIRV.cpp738 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/
Diomapper.cpp452 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/
Dohos_update.js463 subType: BusinessSubType property

123