/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkPhysicalDevice.cpp | 595 VkPhysicalDeviceProperties properties = { in getProperties() 608 snprintf(properties.deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE, in getProperties() 611 return properties; in getProperties() 614 static const VkPhysicalDeviceProperties properties = getProperties(); in getProperties() local 615 return properties; in getProperties() 619 static void getIdProperties(T *properties) in getIdProperties() argument 621 memset(properties->deviceUUID, 0, VK_UUID_SIZE); in getIdProperties() 622 memset(properties->driverUUID, 0, VK_UUID_SIZE); in getIdProperties() 623 memset(properties->deviceLUID, 0, VK_LUID_SIZE); in getIdProperties() 625 memcpy(properties in getIdProperties() 638 getMaintenance3Properties(T *properties) getMaintenance3Properties() argument 650 getMultiviewProperties(T *properties) getMultiviewProperties() argument 662 getPointClippingProperties(T *properties) getPointClippingProperties() argument 673 getProtectedMemoryProperties(T *properties) getProtectedMemoryProperties() argument 837 VkExternalMemoryProperties *properties = &pExternalBufferProperties->externalMemoryProperties; getProperties() local 928 getDriverProperties(T *properties) getDriverProperties() argument 952 getFloatControlsProperties(T *properties) getFloatControlsProperties() argument 990 getDescriptorIndexingProperties(T *properties) getDescriptorIndexingProperties() argument 1027 getDepthStencilResolveProperties(T *properties) getDepthStencilResolveProperties() argument 1058 getSamplerFilterMinmaxProperties(T *properties) getSamplerFilterMinmaxProperties() argument 1070 getTimelineSemaphoreProperties(T *properties) getTimelineSemaphoreProperties() argument 1750 VkQueueFamilyProperties properties = {}; getQueueFamilyProperties() local [all...] |
H A D | VkPhysicalDevice.hpp | 49 void getProperties(VkPhysicalDeviceIDProperties *properties) const; 50 void getProperties(VkPhysicalDeviceMaintenance3Properties *properties) const; 51 void getProperties(VkPhysicalDeviceMultiviewProperties *properties) const; 52 void getProperties(VkPhysicalDevicePointClippingProperties *properties) const; 53 void getProperties(VkPhysicalDeviceProtectedMemoryProperties *properties) const; 54 void getProperties(VkPhysicalDeviceSubgroupProperties *properties) const; 55 void getProperties(const VkExternalMemoryHandleTypeFlagBits *handleType, VkExternalImageFormatProperties *properties) const; 56 void getProperties(const VkExternalMemoryHandleTypeFlagBits *handleType, VkExternalBufferProperties *properties) const; 57 void getProperties(VkSamplerYcbcrConversionImageFormatProperties *properties) const; 59 void getProperties(VkPhysicalDevicePresentationPropertiesANDROID *properties) cons [all...] |
/third_party/skia/third_party/externals/angle2/src/gpu_info_util/ |
H A D | SystemInfo_vulkan.cpp | 162 VkPhysicalDeviceProperties properties; in GetSystemInfoVulkanWithICD() local 163 pfnGetPhysicalDeviceProperties(physicalDevices[i], &properties); in GetSystemInfoVulkanWithICD() 166 gpu.vendorId = properties.vendorID; in GetSystemInfoVulkanWithICD() 167 gpu.deviceId = properties.deviceID; in GetSystemInfoVulkanWithICD() 168 // Need to parse/re-format properties.driverVersion. in GetSystemInfoVulkanWithICD() 172 switch (properties.vendorID) in GetSystemInfoVulkanWithICD() 176 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD() 177 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD() 181 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD() 182 gpu.detailedDriverVersion.major = properties in GetSystemInfoVulkanWithICD() [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
H A D | AdapterDiscoveryTests.cpp | 60 wgpu::AdapterProperties properties; in TEST() local 61 adapter.GetProperties(&properties); in TEST() 63 EXPECT_EQ(properties.backendType, wgpu::BackendType::Vulkan); in TEST() 64 EXPECT_EQ(properties.adapterType, wgpu::AdapterType::CPU); in TEST() 65 EXPECT_TRUE(gpu_info::IsSwiftshader(properties.vendorID, properties.deviceID)); in TEST() 78 wgpu::AdapterProperties properties; in TEST() local 79 adapter.GetProperties(&properties); in TEST() 81 EXPECT_EQ(properties.backendType, wgpu::BackendType::Vulkan); in TEST() 96 wgpu::AdapterProperties properties; in TEST() local 125 wgpu::AdapterProperties properties; TEST() local 144 wgpu::AdapterProperties properties; TEST() local 178 wgpu::AdapterProperties properties; TEST() local 219 wgpu::AdapterProperties properties; TEST() local 242 wgpu::AdapterProperties properties; TEST() local 255 wgpu::AdapterProperties properties; TEST() local [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | number_mapper.cpp | 22 UnlocalizedNumberFormatter NumberPropertyMapper::create(const DecimalFormatProperties& properties, in create() argument 26 return NumberFormatter::with().macros(oldToNew(properties, symbols, warehouse, nullptr, status)); in create() 29 UnlocalizedNumberFormatter NumberPropertyMapper::create(const DecimalFormatProperties& properties, in create() argument 36 properties, symbols, warehouse, &exportedProperties, status)); in create() 39 MacroProps NumberPropertyMapper::oldToNew(const DecimalFormatProperties& properties, in oldToNew() argument 57 if (!properties.currencyPluralInfo.fPtr.isNull()) { in oldToNew() 58 macros.rules = properties.currencyPluralInfo.fPtr->getPluralRules(); in oldToNew() 65 warehouse.affixProvider.setTo(properties, status); in oldToNew() 73 !properties.currency.isNull() || in oldToNew() 74 !properties in oldToNew() 319 setTo(const DecimalFormatProperties& properties, UErrorCode& status) setTo() argument 461 setTo(const CurrencyPluralInfo& cpi, const DecimalFormatProperties& properties, UErrorCode& status) setTo() argument [all...] |
H A D | decimfmt.cpp | 98 fields->properties.currencyPluralInfo.fPtr.adoptInstead(cpi.orphan()); in DecimalFormat() 129 if (value == fields->properties.parseAllInput) { return; } in setParseAllInput() 130 fields->properties.parseAllInput = value; in setParseAllInput() 375 if (UBOOL_TO_BOOL(enabled) == fields->properties.groupingUsed) { return; } in setGroupingUsed() 377 fields->properties.groupingUsed = enabled; in setGroupingUsed() 385 if (UBOOL_TO_BOOL(value) == fields->properties.parseIntegerOnly) { return; } in setParseIntegerOnly() 387 fields->properties.parseIntegerOnly = value; in setParseIntegerOnly() 396 if (!fields->properties.parseMode.isNull() && mode == fields->properties.parseMode.getNoError()) { return; } in setLenient() 398 fields->properties in setLenient() [all...] |
H A D | number_patternstring.cpp | 33 DecimalFormatProperties properties; in parseToProperties() local 34 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding, status); in parseToProperties() 35 return properties; in parseToProperties() 44 PatternParser::parseToExistingProperties(const UnicodeString& pattern, DecimalFormatProperties& properties, in parseToExistingProperties() argument 46 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding, status); in parseToExistingProperties() 507 DecimalFormatProperties& properties, in parseToExistingPropertiesImpl() 511 // TODO: Only overwrite the properties that "saveToProperties" normally touches? in parseToExistingPropertiesImpl() 512 properties.clear(); in parseToExistingPropertiesImpl() 519 patternInfoToProperties(properties, patternInfo, ignoreRounding, status); in parseToExistingPropertiesImpl() 523 PatternParser::patternInfoToProperties(DecimalFormatProperties& properties, ParsedPatternInf argument 506 parseToExistingPropertiesImpl(const UnicodeString& pattern, DecimalFormatProperties& properties, IgnoreRounding ignoreRounding, UErrorCode& status) parseToExistingPropertiesImpl() argument 714 propertiesToPatternString(const DecimalFormatProperties& properties, UErrorCode& status) propertiesToPatternString() argument [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | number_mapper.cpp | 22 UnlocalizedNumberFormatter NumberPropertyMapper::create(const DecimalFormatProperties& properties, in create() argument 26 return NumberFormatter::with().macros(oldToNew(properties, symbols, warehouse, nullptr, status)); in create() 29 UnlocalizedNumberFormatter NumberPropertyMapper::create(const DecimalFormatProperties& properties, in create() argument 36 properties, symbols, warehouse, &exportedProperties, status)); in create() 39 MacroProps NumberPropertyMapper::oldToNew(const DecimalFormatProperties& properties, in oldToNew() argument 57 if (!properties.currencyPluralInfo.fPtr.isNull()) { in oldToNew() 58 macros.rules = properties.currencyPluralInfo.fPtr->getPluralRules(); in oldToNew() 65 warehouse.affixProvider.setTo(properties, status); in oldToNew() 73 !properties.currency.isNull() || in oldToNew() 74 !properties in oldToNew() 319 setTo(const DecimalFormatProperties& properties, UErrorCode& status) setTo() argument 461 setTo(const CurrencyPluralInfo& cpi, const DecimalFormatProperties& properties, UErrorCode& status) setTo() argument [all...] |
H A D | decimfmt.cpp | 98 fields->properties.currencyPluralInfo.fPtr.adoptInstead(cpi.orphan()); in DecimalFormat() 129 if (value == fields->properties.parseAllInput) { return; } in setParseAllInput() 130 fields->properties.parseAllInput = value; in setParseAllInput() 375 if (UBOOL_TO_BOOL(enabled) == fields->properties.groupingUsed) { return; } in setGroupingUsed() 377 fields->properties.groupingUsed = enabled; in setGroupingUsed() 385 if (UBOOL_TO_BOOL(value) == fields->properties.parseIntegerOnly) { return; } in setParseIntegerOnly() 387 fields->properties.parseIntegerOnly = value; in setParseIntegerOnly() 396 if (!fields->properties.parseMode.isNull() && mode == fields->properties.parseMode.getNoError()) { return; } in setLenient() 398 fields->properties in setLenient() [all...] |
H A D | number_patternstring.cpp | 33 DecimalFormatProperties properties; in parseToProperties() local 34 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding, status); in parseToProperties() 35 return properties; in parseToProperties() 44 PatternParser::parseToExistingProperties(const UnicodeString& pattern, DecimalFormatProperties& properties, in parseToExistingProperties() argument 46 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding, status); in parseToExistingProperties() 507 DecimalFormatProperties& properties, in parseToExistingPropertiesImpl() 511 // TODO: Only overwrite the properties that "saveToProperties" normally touches? in parseToExistingPropertiesImpl() 512 properties.clear(); in parseToExistingPropertiesImpl() 519 patternInfoToProperties(properties, patternInfo, ignoreRounding, status); in parseToExistingPropertiesImpl() 523 PatternParser::patternInfoToProperties(DecimalFormatProperties& properties, ParsedPatternInf argument 506 parseToExistingPropertiesImpl(const UnicodeString& pattern, DecimalFormatProperties& properties, IgnoreRounding ignoreRounding, UErrorCode& status) parseToExistingPropertiesImpl() argument 714 propertiesToPatternString(const DecimalFormatProperties& properties, UErrorCode& status) propertiesToPatternString() argument [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | DecimalFormat.java | 64 * the specification for more information on how all the properties in DecimalFormat fit together. 107 * <p>A DecimalFormat object encapsulates a set of <em>properties</em> and a set of 108 * <em>symbols</em>. Grouping size, rounding mode, and affixes are examples of properties. Locale 112 * setters in this class to set custom values for the properties. 139 * <p>A <em>pattern string</em> is a way to serialize some of the available properties for decimal 140 * formatting. However, not all properties are capable of being serialized into a pattern string; 267 // properties should be final, but clone won't work if we make it final. 275 /* final */ transient DecimalFormatProperties properties; field in DecimalFormat 291 * The effective properties as exported from the formatter object. Volatile because threads may 324 properties in DecimalFormat() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | DecimalFormat.java | 65 * the specification for more information on how all the properties in DecimalFormat fit together. 108 * <p>A DecimalFormat object encapsulates a set of <em>properties</em> and a set of 109 * <em>symbols</em>. Grouping size, rounding mode, and affixes are examples of properties. Locale 113 * setters in this class to set custom values for the properties. 140 * <p>A <em>pattern string</em> is a way to serialize some of the available properties for decimal 141 * formatting. However, not all properties are capable of being serialized into a pattern string; 267 // properties should be final, but clone won't work if we make it final. 275 /* final */ transient DecimalFormatProperties properties; field in DecimalFormat 291 * The effective properties as exported from the formatter object. Volatile because threads may 323 properties in DecimalFormat() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
H A D | PatternStringParser.java | 49 DecimalFormatProperties properties = new DecimalFormatProperties(); in parseToProperties() 50 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding); in parseToProperties() 51 return properties; in parseToProperties() 59 * Parses a pattern string into an existing property bag. All properties that can be encoded into a 66 * @param properties 75 DecimalFormatProperties properties, in parseToExistingProperties() 77 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding); in parseToExistingProperties() 80 public static void parseToExistingProperties(String pattern, DecimalFormatProperties properties) { in parseToExistingProperties() argument 81 parseToExistingProperties(pattern, properties, PatternStringParser.IGNORE_ROUNDING_NEVER); in parseToExistingProperties() 571 DecimalFormatProperties properties, in parseToExistingPropertiesImpl() 73 parseToExistingProperties( String pattern, DecimalFormatProperties properties, int ignoreRounding) parseToExistingProperties() argument 569 parseToExistingPropertiesImpl( String pattern, DecimalFormatProperties properties, int ignoreRounding) parseToExistingPropertiesImpl() argument 586 patternInfoToProperties( DecimalFormatProperties properties, ParsedPatternInfo patternInfo, int _ignoreRounding) patternInfoToProperties() argument [all...] |
H A D | PropertiesAffixPatternProvider.java | 13 public static AffixPatternProvider forProperties(DecimalFormatProperties properties) { in forProperties() argument 14 if (properties.getCurrencyPluralInfo() == null) { in forProperties() 15 return new PropertiesAffixPatternProvider(properties); in forProperties() 17 return new CurrencyPluralInfoAffixProvider(properties.getCurrencyPluralInfo(), properties); in forProperties() 21 PropertiesAffixPatternProvider(DecimalFormatProperties properties) { in PropertiesAffixPatternProvider() argument 31 // Convenience: Extract the properties into local variables. in PropertiesAffixPatternProvider() 36 String ppo = AffixUtils.escape(properties.getPositivePrefix()); in PropertiesAffixPatternProvider() 37 String pso = AffixUtils.escape(properties.getPositiveSuffix()); in PropertiesAffixPatternProvider() 38 String npo = AffixUtils.escape(properties in PropertiesAffixPatternProvider() [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | number_mapper.cpp | 22 UnlocalizedNumberFormatter NumberPropertyMapper::create(const DecimalFormatProperties& properties, in create() argument 26 return NumberFormatter::with().macros(oldToNew(properties, symbols, warehouse, nullptr, status)); in create() 29 UnlocalizedNumberFormatter NumberPropertyMapper::create(const DecimalFormatProperties& properties, in create() argument 36 properties, symbols, warehouse, &exportedProperties, status)); in create() 39 MacroProps NumberPropertyMapper::oldToNew(const DecimalFormatProperties& properties, in oldToNew() argument 57 if (!properties.currencyPluralInfo.fPtr.isNull()) { in oldToNew() 58 macros.rules = properties.currencyPluralInfo.fPtr->getPluralRules(); in oldToNew() 65 warehouse.affixProvider.setTo(properties, status); in oldToNew() 73 !properties.currency.isNull() || in oldToNew() 74 !properties in oldToNew() 315 setTo(const DecimalFormatProperties& properties, UErrorCode& status) setTo() argument 450 setTo(const CurrencyPluralInfo& cpi, const DecimalFormatProperties& properties, UErrorCode& status) setTo() argument [all...] |
H A D | decimfmt.cpp | 98 fields->properties.currencyPluralInfo.fPtr.adoptInstead(cpi.orphan()); in DecimalFormat() 129 if (value == fields->properties.parseAllInput) { return; } in setParseAllInput() 130 fields->properties.parseAllInput = value; in setParseAllInput() 375 if (UBOOL_TO_BOOL(enabled) == fields->properties.groupingUsed) { return; } in setGroupingUsed() 377 fields->properties.groupingUsed = enabled; in setGroupingUsed() 385 if (UBOOL_TO_BOOL(value) == fields->properties.parseIntegerOnly) { return; } in setParseIntegerOnly() 387 fields->properties.parseIntegerOnly = value; in setParseIntegerOnly() 396 if (!fields->properties.parseMode.isNull() && mode == fields->properties.parseMode.getNoError()) { return; } in setLenient() 398 fields->properties in setLenient() [all...] |
H A D | number_patternstring.cpp | 33 DecimalFormatProperties properties; in parseToProperties() local 34 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding, status); in parseToProperties() 35 return properties; in parseToProperties() 44 PatternParser::parseToExistingProperties(const UnicodeString& pattern, DecimalFormatProperties& properties, in parseToExistingProperties() argument 46 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding, status); in parseToExistingProperties() 462 DecimalFormatProperties& properties, in parseToExistingPropertiesImpl() 466 // TODO: Only overwrite the properties that "saveToProperties" normally touches? in parseToExistingPropertiesImpl() 467 properties.clear(); in parseToExistingPropertiesImpl() 474 patternInfoToProperties(properties, patternInfo, ignoreRounding, status); in parseToExistingPropertiesImpl() 478 PatternParser::patternInfoToProperties(DecimalFormatProperties& properties, ParsedPatternInf argument 461 parseToExistingPropertiesImpl(const UnicodeString& pattern, DecimalFormatProperties& properties, IgnoreRounding ignoreRounding, UErrorCode& status) parseToExistingPropertiesImpl() argument 666 propertiesToPatternString(const DecimalFormatProperties& properties, UErrorCode& status) propertiesToPatternString() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkQueryUtil.cpp | 100 vector<VkPhysicalDeviceGroupProperties> properties; in enumeratePhysicalDeviceGroups() local 106 properties.resize(numDeviceGroups, initVulkanStructure()); in enumeratePhysicalDeviceGroups() 107 VK_CHECK(vk.enumeratePhysicalDeviceGroups(instance, &numDeviceGroups, &properties[0])); in enumeratePhysicalDeviceGroups() 109 if ((size_t)numDeviceGroups != properties.size()) in enumeratePhysicalDeviceGroups() 112 return properties; in enumeratePhysicalDeviceGroups() 118 vector<VkQueueFamilyProperties> properties; in getPhysicalDeviceQueueFamilyProperties() local 124 properties.resize(numQueues); in getPhysicalDeviceQueueFamilyProperties() 125 vk.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &numQueues, &properties[0]); in getPhysicalDeviceQueueFamilyProperties() 127 if ((size_t)numQueues != properties.size()) in getPhysicalDeviceQueueFamilyProperties() 131 return properties; in getPhysicalDeviceQueueFamilyProperties() 192 VkPhysicalDeviceProperties2 properties = initVulkanStructure(&vulkan11properties); getPhysicalDeviceVulkan11Properties() local 202 VkPhysicalDeviceProperties2 properties = initVulkanStructure(&vulkan12properties); getPhysicalDeviceVulkan12Properties() local 230 VkPhysicalDeviceProperties2 properties = initVulkanStructure(&vulkanSC10properties); getPhysicalDeviceVulkanSC10Properties() local 240 VkPhysicalDeviceProperties properties; getPhysicalDeviceProperties() local 250 VkPhysicalDeviceMemoryProperties properties; getPhysicalDeviceMemoryProperties() local 277 VkFormatProperties properties; getPhysicalDeviceFormatProperties() local 287 VkImageFormatProperties properties; getPhysicalDeviceImageFormatProperties() local 299 vector<VkSparseImageFormatProperties> properties; getPhysicalDeviceSparseImageFormatProperties() local 413 vector<VkLayerProperties> properties; enumerateInstanceLayerProperties() local 430 vector<VkExtensionProperties> properties; enumerateInstanceExtensionProperties() local 447 vector<VkLayerProperties> properties; enumerateDeviceLayerProperties() local 464 vector<VkExtensionProperties> properties; enumerateDeviceExtensionProperties() local [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/ |
H A D | PatternStringParser.java | 51 DecimalFormatProperties properties = new DecimalFormatProperties(); in parseToProperties() 52 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding); in parseToProperties() 53 return properties; in parseToProperties() 61 * Parses a pattern string into an existing property bag. All properties that can be encoded into a 68 * @param properties 77 DecimalFormatProperties properties, in parseToExistingProperties() 79 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding); in parseToExistingProperties() 82 public static void parseToExistingProperties(String pattern, DecimalFormatProperties properties) { in parseToExistingProperties() argument 83 parseToExistingProperties(pattern, properties, PatternStringParser.IGNORE_ROUNDING_NEVER); in parseToExistingProperties() 528 DecimalFormatProperties properties, in parseToExistingPropertiesImpl() 75 parseToExistingProperties( String pattern, DecimalFormatProperties properties, int ignoreRounding) parseToExistingProperties() argument 526 parseToExistingPropertiesImpl( String pattern, DecimalFormatProperties properties, int ignoreRounding) parseToExistingPropertiesImpl() argument 543 patternInfoToProperties( DecimalFormatProperties properties, ParsedPatternInfo patternInfo, int _ignoreRounding) patternInfoToProperties() argument [all...] |
H A D | PropertiesAffixPatternProvider.java | 16 public static AffixPatternProvider forProperties(DecimalFormatProperties properties) { in forProperties() argument 17 if (properties.getCurrencyPluralInfo() == null) { in forProperties() 18 return new PropertiesAffixPatternProvider(properties); in forProperties() 20 return new CurrencyPluralInfoAffixProvider(properties.getCurrencyPluralInfo(), properties); in forProperties() 24 PropertiesAffixPatternProvider(DecimalFormatProperties properties) { in PropertiesAffixPatternProvider() argument 34 // Convenience: Extract the properties into local variables. in PropertiesAffixPatternProvider() 39 String ppo = AffixUtils.escape(properties.getPositivePrefix()); in PropertiesAffixPatternProvider() 40 String pso = AffixUtils.escape(properties.getPositiveSuffix()); in PropertiesAffixPatternProvider() 41 String npo = AffixUtils.escape(properties in PropertiesAffixPatternProvider() [all...] |
/third_party/node/test/fixtures/wpt/user-timing/resources/ |
H A D | webperftestharness.js | 57 function test_attribute_exists(parent_name, attribute_name, properties) 60 wp_test(function() { assert_not_equals(performanceNamespace[parent_name][attribute_name], undefined, msg); }, msg, properties); 63 function test_enum(parent_name, enum_name, value, properties) 66 wp_test(function() { assert_not_equals(performanceNamespace[parent_name][enum_name], undefined, msg); }, msg, properties); 69 wp_test(function() { assert_equals(performanceNamespace[parent_name][enum_name], value, msg); }, msg, properties); 72 function test_timing_order(attribute_name, greater_than_attribute, properties) 76 wp_test(function() { assert_true(performanceNamespace.timing[attribute_name] > 0, msg); }, msg, properties); 80 wp_test(function() { assert_true(performanceNamespace.timing[attribute_name] >= performanceNamespace.timing[greater_than_attribute], msg); }, msg, properties); 83 function test_timing_greater_than(attribute_name, greater_than, properties) 86 test_greater_than(performanceNamespace.timing[attribute_name], greater_than, msg, properties); [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
H A D | NumberPropertyMapper.java | 39 DecimalFormatProperties properties, in create() 41 MacroProps macros = oldToNew(properties, symbols, null); in create() 47 DecimalFormatProperties properties, in create() 50 MacroProps macros = oldToNew(properties, symbols, exportedProperties); in create() 61 DecimalFormatProperties properties = PatternStringParser.parseToProperties(pattern); in create() 62 return create(properties, symbols); in create() 70 * @param properties 75 * A property bag in which to store validated properties. Used by some DecimalFormat 80 DecimalFormatProperties properties, in oldToNew() 96 PluralRules rules = properties in oldToNew() 38 create( DecimalFormatProperties properties, DecimalFormatSymbols symbols) create() argument 46 create( DecimalFormatProperties properties, DecimalFormatSymbols symbols, DecimalFormatProperties exportedProperties) create() argument 79 oldToNew( DecimalFormatProperties properties, DecimalFormatSymbols symbols, DecimalFormatProperties exportedProperties) oldToNew() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/ |
H A D | NumberPropertyMapper.java | 40 DecimalFormatProperties properties, in create() 42 MacroProps macros = oldToNew(properties, symbols, null); in create() 48 DecimalFormatProperties properties, in create() 51 MacroProps macros = oldToNew(properties, symbols, exportedProperties); in create() 62 DecimalFormatProperties properties = PatternStringParser.parseToProperties(pattern); in create() 63 return create(properties, symbols); in create() 71 * @param properties 76 * A property bag in which to store validated properties. Used by some DecimalFormat 81 DecimalFormatProperties properties, in oldToNew() 97 PluralRules rules = properties in oldToNew() 39 create( DecimalFormatProperties properties, DecimalFormatSymbols symbols) create() argument 47 create( DecimalFormatProperties properties, DecimalFormatSymbols symbols, DecimalFormatProperties exportedProperties) create() argument 80 oldToNew( DecimalFormatProperties properties, DecimalFormatSymbols symbols, DecimalFormatProperties exportedProperties) oldToNew() argument [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | NumberFormatDataDrivenTest.java | 467 DecimalFormatProperties properties) { in propertiesFromTuple() 469 properties.setMinimumIntegerDigits(tuple.minIntegerDigits); in propertiesFromTuple() 472 properties.setMaximumIntegerDigits(tuple.maxIntegerDigits); in propertiesFromTuple() 475 properties.setMinimumFractionDigits(tuple.minFractionDigits); in propertiesFromTuple() 478 properties.setMaximumFractionDigits(tuple.maxFractionDigits); in propertiesFromTuple() 481 properties.setCurrency(tuple.currency); in propertiesFromTuple() 484 properties.setMinimumGroupingDigits(tuple.minGroupingDigits); in propertiesFromTuple() 490 properties.setMinimumSignificantDigits(tuple.minSigDigits); in propertiesFromTuple() 493 properties.setMaximumSignificantDigits(tuple.maxSigDigits); in propertiesFromTuple() 496 properties in propertiesFromTuple() 465 propertiesFromTuple( DataDrivenNumberFormatTestData tuple, DecimalFormatProperties properties) propertiesFromTuple() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | NumberFormatDataDrivenTest.java | 470 DecimalFormatProperties properties) { in propertiesFromTuple() 472 properties.setMinimumIntegerDigits(tuple.minIntegerDigits); in propertiesFromTuple() 475 properties.setMaximumIntegerDigits(tuple.maxIntegerDigits); in propertiesFromTuple() 478 properties.setMinimumFractionDigits(tuple.minFractionDigits); in propertiesFromTuple() 481 properties.setMaximumFractionDigits(tuple.maxFractionDigits); in propertiesFromTuple() 484 properties.setCurrency(tuple.currency); in propertiesFromTuple() 487 properties.setMinimumGroupingDigits(tuple.minGroupingDigits); in propertiesFromTuple() 493 properties.setMinimumSignificantDigits(tuple.minSigDigits); in propertiesFromTuple() 496 properties.setMaximumSignificantDigits(tuple.maxSigDigits); in propertiesFromTuple() 499 properties in propertiesFromTuple() 468 propertiesFromTuple( DataDrivenNumberFormatTestData tuple, DecimalFormatProperties properties) propertiesFromTuple() argument [all...] |