Searched refs:WildcardPattern (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/lib2to3/ |
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)
|
D | pytree.py | 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,
|
D | refactor.py | 64 if isinstance(pat, pytree.WildcardPattern):
|
/third_party/nghttp2/src/ |
D | shrpx_tls.h | 125 struct WildcardPattern { struct 174 std::vector<WildcardPattern> wildcard_patterns_;
|
D | shrpx_config.h | 823 struct WildcardPattern { struct 824 WildcardPattern(const StringRef &host) : host(host) {} in WildcardPattern() argument 841 std::vector<WildcardPattern> wildcard_patterns; argument
|
D | shrpx_tls.cc | 1520 WildcardPattern *wpat; in add_cert()
|
D | shrpx_config.cc | 1233 [&host](const WildcardPattern &wp) { return wp.host == host; }); in parse_mapping()
|
/third_party/python/Lib/lib2to3/tests/ |
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"),
|