Home
last modified time | relevance | path

Searched refs:propertyType (Results 1 – 21 of 21) sorted by relevance

/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/
DvkDeviceProperties.inl58 …PhysicalDeviceSubgroupProperties>(VkPhysicalDeviceSubgroupProperties& propertyType, const AllPrope… argument
60 propertyType.subgroupSize = allPropertiesBlobs.vk11.subgroupSize;
61 propertyType.supportedStages = allPropertiesBlobs.vk11.subgroupSupportedStages;
62 propertyType.supportedOperations = allPropertiesBlobs.vk11.subgroupSupportedOperations;
63 propertyType.quadOperationsInAllStages = allPropertiesBlobs.vk11.subgroupQuadOperationsInAllStages;
65 …vicePointClippingProperties>(VkPhysicalDevicePointClippingProperties& propertyType, const AllPrope… argument
67 propertyType.pointClippingBehavior = allPropertiesBlobs.vk11.pointClippingBehavior;
69 …ysicalDeviceMultiviewProperties>(VkPhysicalDeviceMultiviewProperties& propertyType, const AllPrope… argument
71 propertyType.maxMultiviewViewCount = allPropertiesBlobs.vk11.maxMultiviewViewCount;
72 propertyType.maxMultiviewInstanceIndex = allPropertiesBlobs.vk11.maxMultiviewInstanceIndex;
[all …]
/third_party/jsframework/mock-generate/src/declaration-node/
DpropertySignatureDeclaration.ts31 const propertyType = node.type; constant
39 if (propertyType !== undefined) {
40 …propertyTypeName = sourceFile.text.substring(propertyType.pos, propertyType.end).trimStart().trimE…
41 kind = propertyType.kind;
DpropertyDeclaration.ts46 const propertyType = node.type; constant
47 if (propertyType !== undefined) {
48 …propertyTypeName = sourceFile.text.substring(propertyType.pos, propertyType.end).trimStart().trimE…
49 kind = propertyType.kind;
/third_party/icu/tools/unicodetools/com/ibm/rbm/
DRBxliffImporter.java122 String propertyType = property_elem.getAttribute("prop-type"); in importDoc() local
123 if (propertyType != null) { in importDoc()
126 if (propertyType.equals("name")) { in importDoc()
129 else if (propertyType.equals("manager")) { in importDoc()
132 else if (propertyType.equals("language")) { in importDoc()
135 else if (propertyType.equals("country")) { in importDoc()
138 else if (propertyType.equals("variant")) { in importDoc()
312 String propertyType = property_elem.getAttribute("prop-type"); in parseTranslationUnit() local
313 if (propertyType != null) { in parseTranslationUnit()
316 if (propertyType.equals("creator")) { in parseTranslationUnit()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/winrt/
DInspectableNativeWindow.cpp179 ABI::Windows::Foundation::PropertyType propertyType = in GetOptionalSizePropertyValue() local
196 result = propertyValue->get_Type(&propertyType); in GetOptionalSizePropertyValue()
200 propertyType == ABI::Windows::Foundation::PropertyType::PropertyType_Size) in GetOptionalSizePropertyValue()
245 ABI::Windows::Foundation::PropertyType propertyType = in GetOptionalSinglePropertyValue() local
262 result = propertyValue->get_Type(&propertyType); in GetOptionalSinglePropertyValue()
266 propertyType == ABI::Windows::Foundation::PropertyType::PropertyType_Single) in GetOptionalSinglePropertyValue()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/winrt/
DInspectableNativeWindow.cpp179 ABI::Windows::Foundation::PropertyType propertyType = in GetOptionalSizePropertyValue() local
196 result = propertyValue->get_Type(&propertyType); in GetOptionalSizePropertyValue()
200 propertyType == ABI::Windows::Foundation::PropertyType::PropertyType_Size) in GetOptionalSizePropertyValue()
245 ABI::Windows::Foundation::PropertyType propertyType = in GetOptionalSinglePropertyValue() local
262 result = propertyValue->get_Type(&propertyType); in GetOptionalSinglePropertyValue()
266 propertyType == ABI::Windows::Foundation::PropertyType::PropertyType_Single) in GetOptionalSinglePropertyValue()
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dno-unnecessary-condition.ts495 propertyType: ts.Type,
497 if (propertyType.isUnion()) {
498 return propertyType.types.some(type =>
502 if (propertyType.isNumberLiteral() || propertyType.isStringLiteral()) {
506 propertyType.value.toString(),
512 const typeName = getTypeName(checker, propertyType);
537 const propertyType = getNodeType(node.property);
538 return isNullablePropertyType(type, propertyType);
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkDeviceProperties.hpp83 void initPropertyFromBlob(PropertyType& propertyType, const AllPropertiesBlobs& allPropertiesBlobs);
86 void initPropertyFromBlobWrapper(PropertyType& propertyType, const AllPropertiesBlobs& allPropertie… in initPropertyFromBlobWrapper() argument
88 initPropertyFromBlob<PropertyType>(propertyType, allPropertiesBlobs); in initPropertyFromBlobWrapper()
/third_party/typescript_eslint/packages/eslint-plugin/src/util/
DisTypeReadonly.ts103 const propertyType = nullThrows( constant
110 if (seenTypes.has(propertyType)) {
115 isTypeReadonlyRecurser(checker, propertyType, seenTypes) ===
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/src/
Dsceneio.cpp219 string propertyType = in.substr(startIndex, endIndex - startIndex); in importSceneFromTXTHelper() local
220 propertyType = decodeEscapesequences(propertyType); in importSceneFromTXTHelper()
227 node->mNodeValues[propertyName] = make_pair(propertyType, propertyValue); in importSceneFromTXTHelper()
/third_party/flutter/flutter/packages/flutter_driver/test/src/
Dextension_test.dart298 expect(stringProperty['propertyType'], 'String');
329 expect(stringProperty['propertyType'], 'String');
/third_party/flutter/flutter/packages/flutter/test/foundation/
Ddiagnostics_test.dart169 expect(json['propertyType'], equals(property.propertyType.toString()));
1541 expect(simple.propertyType, equals(Color));
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Ddiagnostics.dart2564 json['propertyType'] = propertyType.toString();
2643 /// [value] is null, but it also means that the [propertyType] is only as
2650 Type get propertyType => T;
/third_party/typescript/src/compiler/
Dchecker.ts5143 …const propertyType = propertyIsReverseMapped && context.flags & NodeBuilderFlags.InReverseMappedTy…
5165 …bolFlags.Function | SymbolFlags.Method) && !getPropertiesOfObjectType(propertyType).length && !isR…
5166 …const signatures = getSignaturesOfType(filterType(propertyType, t => !(t.flags & TypeFlags.Undefin…
5180 …propertyTypeNode = propertyType ? serializeTypeForDeclaration(context, propertyType, propertySymbo…
10767 inferredProp.propertyType = getTypeOfSymbol(prop);
12985 function createTypedPropertyDescriptorType(propertyType: Type): Type {
12986 … return createTypeFromGenericGlobalType(getGlobalTypedPropertyDescriptorType(), [propertyType]);
19831 function transformTypeOfMembers(type: Type, f: (propertyType: Type) => Type) {
20340 … return inferReverseMappedType(symbol.propertyType, symbol.mappedType, symbol.constraintType);
24577 const propertyType = getTypeOfPropertyOfContextualType(type, symbolName);
[all …]
Dtypes.ts4871 propertyType: Type;
/third_party/typescript/lib/
DtypingsInstaller.js48512 … var propertyType = propertyIsReverseMapped && context.flags & 33554432 /* InReverseMappedType */ ?
48534 …(16 /* Function */ | 8192 /* Method */) && !getPropertiesOfObjectType(propertyType).length && !isR…
48535 …var signatures = getSignaturesOfType(filterType(propertyType, function (t) { return !(t.flags & 32…
48550 …propertyTypeNode = propertyType ? serializeTypeForDeclaration(context, propertyType, propertySymbo…
53560 inferredProp.propertyType = getTypeOfSymbol(prop);
55580 function createTypedPropertyDescriptorType(propertyType) { argument
55581 … return createTypeFromGenericGlobalType(getGlobalTypedPropertyDescriptorType(), [propertyType]);
62489 … return inferReverseMappedType(symbol.propertyType, symbol.mappedType, symbol.constraintType);
66462 var propertyType = getTypeOfPropertyOfContextualType(type, symbolName_3);
66463 if (propertyType) {
[all …]
Dtsc.js39883 var propertyType = propertyIsReverseMapped && context.flags & 33554432 ?
39905 …if (propertySymbol.flags & (16 | 8192) && !getPropertiesOfObjectType(propertyType).length && !isRe…
39906 …var signatures = getSignaturesOfType(filterType(propertyType, function (t) { return !(t.flags & 32…
39921 …propertyTypeNode = propertyType ? serializeTypeForDeclaration(context, propertyType, propertySymbo…
44185 inferredProp.propertyType = getTypeOfSymbol(prop);
45984 function createTypedPropertyDescriptorType(propertyType) { argument
45985 … return createTypeFromGenericGlobalType(getGlobalTypedPropertyDescriptorType(), [propertyType]);
52046 … return inferReverseMappedType(symbol.propertyType, symbol.mappedType, symbol.constraintType);
55468 var propertyType = getTypeOfPropertyOfContextualType(type, symbolName_3);
55469 if (propertyType) {
[all …]
Dtsserver.js48523 … var propertyType = propertyIsReverseMapped && context.flags & 33554432 /* InReverseMappedType */ ?
48545 …(16 /* Function */ | 8192 /* Method */) && !getPropertiesOfObjectType(propertyType).length && !isR…
48546 …var signatures = getSignaturesOfType(filterType(propertyType, function (t) { return !(t.flags & 32…
48561 …propertyTypeNode = propertyType ? serializeTypeForDeclaration(context, propertyType, propertySymbo…
53571 inferredProp.propertyType = getTypeOfSymbol(prop);
55591 function createTypedPropertyDescriptorType(propertyType) { argument
55592 … return createTypeFromGenericGlobalType(getGlobalTypedPropertyDescriptorType(), [propertyType]);
62500 … return inferReverseMappedType(symbol.propertyType, symbol.mappedType, symbol.constraintType);
66473 var propertyType = getTypeOfPropertyOfContextualType(type, symbolName_3);
66474 if (propertyType) {
[all …]
DtypescriptServices.js48717 … var propertyType = propertyIsReverseMapped && context.flags & 33554432 /* InReverseMappedType */ ?
48739 …(16 /* Function */ | 8192 /* Method */) && !getPropertiesOfObjectType(propertyType).length && !isR…
48740 …var signatures = getSignaturesOfType(filterType(propertyType, function (t) { return !(t.flags & 32…
48755 …propertyTypeNode = propertyType ? serializeTypeForDeclaration(context, propertyType, propertySymbo…
53765 inferredProp.propertyType = getTypeOfSymbol(prop);
55785 function createTypedPropertyDescriptorType(propertyType) { argument
55786 … return createTypeFromGenericGlobalType(getGlobalTypedPropertyDescriptorType(), [propertyType]);
62694 … return inferReverseMappedType(symbol.propertyType, symbol.mappedType, symbol.constraintType);
66667 var propertyType = getTypeOfPropertyOfContextualType(type, symbolName_3);
66668 if (propertyType) {
[all …]
Dtsserverlibrary.js48717 … var propertyType = propertyIsReverseMapped && context.flags & 33554432 /* InReverseMappedType */ ?
48739 …(16 /* Function */ | 8192 /* Method */) && !getPropertiesOfObjectType(propertyType).length && !isR…
48740 …var signatures = getSignaturesOfType(filterType(propertyType, function (t) { return !(t.flags & 32…
48755 …propertyTypeNode = propertyType ? serializeTypeForDeclaration(context, propertyType, propertySymbo…
53765 inferredProp.propertyType = getTypeOfSymbol(prop);
55785 function createTypedPropertyDescriptorType(propertyType) { argument
55786 … return createTypeFromGenericGlobalType(getGlobalTypedPropertyDescriptorType(), [propertyType]);
62694 … return inferReverseMappedType(symbol.propertyType, symbol.mappedType, symbol.constraintType);
66667 var propertyType = getTypeOfPropertyOfContextualType(type, symbolName_3);
66668 if (propertyType) {
[all …]
Dtypescript.js48717 … var propertyType = propertyIsReverseMapped && context.flags & 33554432 /* InReverseMappedType */ ?
48739 …(16 /* Function */ | 8192 /* Method */) && !getPropertiesOfObjectType(propertyType).length && !isR…
48740 …var signatures = getSignaturesOfType(filterType(propertyType, function (t) { return !(t.flags & 32…
48755 …propertyTypeNode = propertyType ? serializeTypeForDeclaration(context, propertyType, propertySymbo…
53765 inferredProp.propertyType = getTypeOfSymbol(prop);
55785 function createTypedPropertyDescriptorType(propertyType) { argument
55786 … return createTypeFromGenericGlobalType(getGlobalTypedPropertyDescriptorType(), [propertyType]);
62694 … return inferReverseMappedType(symbol.propertyType, symbol.mappedType, symbol.constraintType);
66667 var propertyType = getTypeOfPropertyOfContextualType(type, symbolName_3);
66668 if (propertyType) {
[all …]