Home
last modified time | relevance | path

Searched refs:WildcardPattern (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/lib2to3/
Dpatcomp.py82 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)
Dpytree.py571 if isinstance(item, WildcardPattern):
605 class WildcardPattern(BasePattern): class
665 if (self.min <= 1 and isinstance(subpattern, WildcardPattern) and
667 return WildcardPattern(subpattern.content,
Drefactor.py64 if isinstance(pat, pytree.WildcardPattern):
/third_party/nghttp2/src/
Dshrpx_tls.h125 struct WildcardPattern { struct
174 std::vector<WildcardPattern> wildcard_patterns_;
Dshrpx_config.h823 struct WildcardPattern { struct
824 WildcardPattern(const StringRef &host) : host(host) {} in WildcardPattern() argument
841 std::vector<WildcardPattern> wildcard_patterns; argument
Dshrpx_tls.cc1520 WildcardPattern *wpat; in add_cert()
Dshrpx_config.cc1233 [&host](const WildcardPattern &wp) { return wp.host == host; }); in parse_mapping()
/third_party/python/Lib/lib2to3/tests/
Dtest_pytree.py411 pw = pytree.WildcardPattern([[pn], [pl, pl]], name="pw")
446 pw = pytree.WildcardPattern([[pa, pb, pc], [pd, pe],
464 pytree.WildcardPattern(name="args"),