Searched refs:WildcardPattern (Results 1 - 9 of 9) sorted by relevance
/third_party/python/Lib/lib2to3/ |
H A D | patcomp.py | 82 p = pytree.WildcardPattern([[a] for a in alts], min=1, max=1) 89 p = pytree.WildcardPattern([units], min=1, max=1) 132 pattern = pytree.WildcardPattern([[pattern]], min=min, max=max) 170 return pytree.WildcardPattern([[subpattern]], min=0, max=1)
|
H A D | pytree.py | 427 - WildcardPattern matches a sequence of nodes of variable length. 571 if isinstance(item, WildcardPattern): 605 class WildcardPattern(BasePattern): class 665 if (self.min <= 1 and isinstance(subpattern, WildcardPattern) and 667 return WildcardPattern(subpattern.content,
|
H A D | refactor.py | 64 if isinstance(pat, pytree.WildcardPattern):
|
/third_party/nghttp2/src/ |
H A D | shrpx_tls.h | 147 struct WildcardPattern { struct 196 std::vector<WildcardPattern> wildcard_patterns_;
|
H A D | shrpx_config.h | 958 struct WildcardPattern { struct 959 WildcardPattern(const StringRef &host) : host(host) {} in WildcardPattern() function 976 std::vector<WildcardPattern> wildcard_patterns;
|
H A D | shrpx_tls.cc | 2009 WildcardPattern *wpat; in add_cert()
|
H A D | shrpx_config.cc | 1373 [&host](const WildcardPattern &wp) { return wp.host == host; }); in parse_mapping()
|
/third_party/python/Lib/lib2to3/tests/ |
H A D | test_pytree.py | 411 pw = pytree.WildcardPattern([[pn], [pl, pl]], name="pw") 446 pw = pytree.WildcardPattern([[pa, pb, pc], [pd, pe], 464 pytree.WildcardPattern(name="args"),
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 5081 class WildcardPattern { 5091 WildcardPattern( std::string const& pattern, CaseSensitive::Choice caseSensitivity ); 5092 virtual ~WildcardPattern() = default; 5129 WildcardPattern m_wildcardPattern; 15405 WildcardPattern::WildcardPattern( std::string const& pattern, 15420 bool WildcardPattern::matches( std::string const& str ) const { 15435 std::string WildcardPattern::normaliseString( std::string const& str ) const {
|
Completed in 44 milliseconds