/external/catch2/include/internal/ |
D | catch_wildcard_pattern.cpp | 16 WildcardPattern::WildcardPattern( std::string const& pattern, in WildcardPattern() function in Catch::WildcardPattern 31 bool WildcardPattern::matches( std::string const& str ) const { in matches() 46 std::string WildcardPattern::adjustCase( std::string const& str ) const { in adjustCase()
|
D | catch_wildcard_pattern.h | 16 class WildcardPattern { 26 WildcardPattern( std::string const& pattern, CaseSensitive::Choice caseSensitivity ); 27 virtual ~WildcardPattern() = default;
|
D | catch_test_spec.h | 38 WildcardPattern m_wildcardPattern;
|
/external/python/cpython3/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):
|
/external/python/cpython2/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 | 605 if isinstance(item, WildcardPattern): 639 class WildcardPattern(BasePattern): class 699 if (self.min <= 1 and isinstance(subpattern, WildcardPattern) and 701 return WildcardPattern(subpattern.content,
|
D | refactor.py | 67 if isinstance(pat, pytree.WildcardPattern):
|
/external/antlr/runtime/Ruby/lib/antlr3/tree/ |
D | wizard.rb | 246 node = WildcardPattern.new( wildcard_payload ) 311 class WildcardPattern < Pattern; end class in ANTLR3.AST.Wizard 406 if pattern.nil? or pattern.flat_list? or pattern.is_a?( WildcardPattern ) 424 unless pattern.is_a? WildcardPattern
|
/external/python/cpython3/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"),
|
/external/python/cpython2/Lib/lib2to3/tests/ |
D | test_pytree.py | 433 pw = pytree.WildcardPattern([[pn], [pl, pl]], name="pw") 468 pw = pytree.WildcardPattern([[pa, pb, pc], [pd, pe], 486 pytree.WildcardPattern(name="args"),
|
/external/bcc/tests/cc/ |
D | catch.hpp | 3114 class WildcardPattern { class 3124 WildcardPattern( std::string const& pattern, CaseSensitive::Choice caseSensitivity ) in WildcardPattern() function in Catch::WildcardPattern 3138 virtual ~WildcardPattern(); 3190 WildcardPattern m_wildcardPattern; 10234 WildcardPattern::~WildcardPattern() {} in ~WildcardPattern()
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 4481 class WildcardPattern { class 4491 WildcardPattern( std::string const& pattern, CaseSensitive::Choice caseSensitivity ); 4492 virtual ~WildcardPattern() = default; 4523 WildcardPattern m_wildcardPattern; 12680 WildcardPattern::WildcardPattern( std::string const& pattern, in WildcardPattern() function in Catch::WildcardPattern 12695 bool WildcardPattern::matches( std::string const& str ) const { in matches() 12710 std::string WildcardPattern::adjustCase( std::string const& str ) const { in adjustCase()
|