/third_party/node/deps/icu-small/source/i18n/ |
H A D | measunit_extra.cpp | 466 Token(int32_t match) : fMatch(match) {} 635 int32_t match = -1; 648 match = fTrie.getValue(); 657 if (match < 0) { 662 return Token(match); 859 // In case the base unit identifier did not match any entry. 872 // In case the reciprocal of the base unit identifier did not match any entry. 888 // In case the simplified base unit identifier did not match any entry. 901 // If there is no match a [all...] |
/third_party/python/Lib/ |
H A D | dataclasses.py | 221 # String regex that string annotations for ClassVar or InitVar must match. 676 # - a_module is the module we want to match 677 # - a_type is the type in that module we want to match 705 match = _MODULE_IDENTIFIER_RE.match(annotation) 706 if match: 708 module_name = match.group(1) 718 if ns and is_type_predicate(ns.get(match.group(2)), a_module): 1134 match cls.__dict__.get('__slots__'):
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | measunit_extra.cpp | 470 Token(int32_t match) : fMatch(match) {} 639 int32_t match = -1; 652 match = fTrie.getValue(); 661 if (match < 0) { 666 return Token(match);
|
/third_party/python/Lib/logging/ |
H A D | config.py | 293 m = IDENTIFIER.match(s) 326 # equivalents, whereas strings which match a conversion format are converted 416 m = self.WORD_PATTERN.match(rest) 424 m = self.DOT_PATTERN.match(rest) 428 m = self.INDEX_PATTERN.match(rest) 431 if not self.DIGIT_PATTERN.match(idx): 464 m = self.CONVERT_PATTERN.match(value)
|
/kernel/linux/linux-5.10/arch/sparc/mm/ |
H A D | init_64.c | 803 * by version mis-match tests in mmu_context.h). 901 unsigned long match; member 911 u64 match; member 955 if ((start & p->mask) == p->match) { in memblock_nid_range_sun4u() 964 WARN_ONCE(1, "addr[%Lx] doesn't match a NUMA node rule. Some memory will be owned by node 0.", in memblock_nid_range_sun4u() 1003 if ((pa_start & m->mask) == m->match) { in memblock_nid_range() 1004 m_match = m->match; in memblock_nid_range() 1020 if ((pa_start & m->mask) == m->match) { in memblock_nid_range() 1021 m_match = m->match; in memblock_nid_range() 1037 * Each latency group has match an in memblock_nid_range() [all...] |
/kernel/linux/linux-6.6/arch/sparc/mm/ |
H A D | init_64.c | 819 * by version mis-match tests in mmu_context.h). 917 unsigned long match; member 927 u64 match; member 971 if ((start & p->mask) == p->match) { in memblock_nid_range_sun4u() 980 WARN_ONCE(1, "addr[%Lx] doesn't match a NUMA node rule. Some memory will be owned by node 0.", in memblock_nid_range_sun4u() 1019 if ((pa_start & m->mask) == m->match) { in memblock_nid_range() 1020 m_match = m->match; in memblock_nid_range() 1036 if ((pa_start & m->mask) == m->match) { in memblock_nid_range() 1037 m_match = m->match; in memblock_nid_range() 1053 * Each latency group has match an in memblock_nid_range() [all...] |
/applications/standard/systemui/ |
H A D | gradlew.bat | 48 echo Please set the JAVA_HOME variable in your environment to match the 62 echo Please set the JAVA_HOME variable in your environment to match the
|
/base/telephony/sms_mms/frameworks/native/mms/include/ |
H A D | mms_header.h | 72 bool SetOctetValuePartData(uint8_t fieldId, uint8_t value, bool &match);
73 bool SetOctetValuePortionData(uint8_t fieldId, uint8_t value, bool &match);
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/include/operation/ |
H A D | photo_displayname_operation.h | 90 std::smatch match;
in ParseBurstDisplayName() local 91 if (!std::regex_search(displayName, match, pattern)) {
in ParseBurstDisplayName()
|
/foundation/communication/wifi/wifi/application/wifi_direct_demo/ |
H A D | gradlew.bat | 47 echo Please set the JAVA_HOME variable in your environment to match the 61 echo Please set the JAVA_HOME variable in your environment to match the
|
/kernel/linux/linux-5.10/drivers/base/ |
H A D | driver.c | 38 * @s: NUL-terminated string, new driver name to force a match, pass empty 134 * @data: Data to pass to match function 135 * @match: Callback function to check device 139 * determined by the @match callback. 141 * The callback should return 0 if the device doesn't match and non-zero 147 int (*match)(struct device *dev, const void *data)) in driver_find_device() 158 if (match(dev, data) && get_device(dev)) in driver_find_device()
|
/kernel/linux/linux-5.10/drivers/fpga/ |
H A D | fpga-region.c | 23 int (*match)(struct device *, const void *)) in fpga_region_class_find() 27 dev = class_find_device(fpga_region_class, start, data, match); in fpga_region_class_find()
|
/kernel/linux/linux-5.10/drivers/phy/marvell/ |
H A D | phy-berlin-usb.c | 165 const struct of_device_id *match = in phy_berlin_usb_probe() local 185 priv->pll_divider = *((u32 *)match->data); in phy_berlin_usb_probe()
|
/kernel/linux/linux-5.10/drivers/pinctrl/berlin/ |
H A D | berlin-bg2cd.c | 175 const struct of_device_id *match = in berlin2cd_pinctrl_probe() local 178 return berlin_pinctrl_probe(pdev, match->data); in berlin2cd_pinctrl_probe()
|
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | xt_sctp.c | 17 MODULE_DESCRIPTION("Xtables: SCTP protocol packet match"); 174 .match = sctp_mt, 183 .match = sctp_mt,
|
H A D | xt_addrtype.c | 3 * iptables module to match inet_addr_type() of an ip. 28 MODULE_DESCRIPTION("Xtables: address type match"); 205 .match = addrtype_mt_v0, 213 .match = addrtype_mt_v1,
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | nvmem-consumer.h | 94 int (*match)(struct device *dev, const void *data)); 232 int (*match)(struct device *dev, const void *data)) in nvmem_device_find()
|
/kernel/linux/linux-6.6/include/linux/spi/ |
H A D | spi-mem.h | 231 * @adjust_op_size: shrink the data xfer of an operation to match controller's 259 * @poll_status: poll memory device status until (status & mask) == match or 288 u16 mask, u16 match, 391 u16 mask, u16 match,
|
/kernel/linux/linux-6.6/drivers/fpga/ |
H A D | fpga-region.c | 23 int (*match)(struct device *, const void *)) in fpga_region_class_find() 27 dev = class_find_device(&fpga_region_class, start, data, match); in fpga_region_class_find()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/sfc/ |
H A D | tc.h | 133 * match space is in use by another Outer Rule. 137 * @EFX_TC_EM_PSEUDO_MASK: registered by an encap match which includes a 138 * match on an optional field (currently ip_tos and/or udp_sport), 139 * to prevent an overlapping encap match _without_ optional fields. 140 * The pseudo encap match may be referenced again by an encap match 141 * with different values for these fields, but all masks must match the 161 u32 fw_id; /* index of this entry in firmware encap match table */ 194 struct efx_tc_match match; member 202 struct efx_tc_match match; member [all...] |
/kernel/linux/linux-6.6/drivers/pinctrl/berlin/ |
H A D | berlin-bg2cd.c | 175 const struct of_device_id *match = in berlin2cd_pinctrl_probe() local 178 return berlin_pinctrl_probe(pdev, match->data); in berlin2cd_pinctrl_probe()
|
/kernel/linux/linux-6.6/drivers/phy/marvell/ |
H A D | phy-berlin-usb.c | 165 const struct of_device_id *match = in phy_berlin_usb_probe() local 183 priv->pll_divider = *((u32 *)match->data); in phy_berlin_usb_probe()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/imx/ipuv3/ |
H A D | dw_hdmi-imx.c | 223 const struct of_device_id *match = of_match_node(dw_hdmi_imx_dt_ids, np); in dw_hdmi_imx_probe() local 240 hdmi->hdmi = dw_hdmi_probe(pdev, match->data); in dw_hdmi_imx_probe()
|
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | xt_sctp.c | 16 MODULE_DESCRIPTION("Xtables: SCTP protocol packet match"); 173 .match = sctp_mt, 182 .match = sctp_mt,
|
H A D | xt_addrtype.c | 3 * iptables module to match inet_addr_type() of an ip. 28 MODULE_DESCRIPTION("Xtables: address type match"); 205 .match = addrtype_mt_v0, 213 .match = addrtype_mt_v1,
|