/dports/www/trafficserver/trafficserver-9.1.1/proxy/ |
H A D | ControlMatcher.h | 164 template <class Data> class BaseMatcher 169 ~BaseMatcher() { delete[] data_array; } in ~BaseMatcher() 179 template <class Data, class MatchResult> class UrlMatcher : protected BaseMatcher<Data> 181 typedef BaseMatcher<Data> super; 205 template <class Data, class MatchResult> class RegexMatcher : protected BaseMatcher<Data> 207 typedef BaseMatcher<Data> super; 232 typedef BaseMatcher<Data> super; 245 template <class Data, class MatchResult> class HostMatcher : protected BaseMatcher<Data> 247 typedef BaseMatcher<Data> super; 276 template <class Data, class MatchResult> class IpMatcher : protected BaseMatcher<Data> [all …]
|
/dports/textproc/py-pyhamcrest/PyHamcrest-2.0.2/doc/ |
H A D | custom_matchers.rst | 20 from hamcrest.core.base_matcher import BaseMatcher 23 class IsGivenDayOfWeek(BaseMatcher): 43 :py:meth:`~hamcrest.core.base_matcher.BaseMatcher._matches` method - which 79 can override the :py:meth:`~hamcrest.core.base_matcher.BaseMatcher.describe_mismatch` 81 :py:meth:`~hamcrest.core.base_matcher.BaseMatcher.describe_mismatch` implementation 103 :py:meth:`~hamcrest.core.base_matcher.BaseMatcher.describe_match`.
|
/dports/www/py-betamax/betamax-0.8.1/betamax/matchers/ |
H A D | method.py | 2 from .base import BaseMatcher 5 class MethodMatcher(BaseMatcher):
|
H A D | host.py | 2 from .base import BaseMatcher 6 class HostMatcher(BaseMatcher):
|
H A D | path.py | 2 from .base import BaseMatcher 6 class PathMatcher(BaseMatcher):
|
H A D | headers.py | 2 from .base import BaseMatcher 5 class HeadersMatcher(BaseMatcher):
|
H A D | body.py | 2 from .base import BaseMatcher 7 class BodyMatcher(BaseMatcher):
|
H A D | digest_auth.py | 2 from .base import BaseMatcher 6 class DigestAuthMatcher(BaseMatcher):
|
H A D | query.py | 4 from .base import BaseMatcher 15 class QueryMatcher(BaseMatcher):
|
H A D | uri.py | 2 from .base import BaseMatcher 7 class URIMatcher(BaseMatcher):
|
/dports/textproc/py-pyhamcrest/PyHamcrest-2.0.2/src/hamcrest/library/collection/ |
H A D | issequence_containing.py | 3 from hamcrest.core.base_matcher import BaseMatcher 16 class IsSequenceContaining(BaseMatcher[Sequence[T]]): 39 class IsSequenceContainingEvery(BaseMatcher[Sequence[T]]):
|
H A D | is_empty.py | 3 from hamcrest.core.base_matcher import BaseMatcher 12 class IsEmpty(BaseMatcher[Sized]):
|
H A D | isin.py | 3 from hamcrest.core.base_matcher import BaseMatcher 14 class IsIn(BaseMatcher[T]):
|
/dports/textproc/py-pyhamcrest/PyHamcrest-2.0.2/tests/hamcrest_unit_test/core/ |
H A D | nevermatch.py | 1 from hamcrest.core.base_matcher import BaseMatcher 8 class NeverMatch(BaseMatcher):
|
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Routing/ |
H A D | RedirectableUrlMatcher.php | 14 use Symfony\Component\Routing\Matcher\RedirectableUrlMatcher as BaseMatcher; alias 19 class RedirectableUrlMatcher extends BaseMatcher
|
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Routing/ |
H A D | RedirectableUrlMatcher.php | 14 use Symfony\Component\Routing\Matcher\RedirectableUrlMatcher as BaseMatcher; alias 19 class RedirectableUrlMatcher extends BaseMatcher
|
/dports/devel/py-zconfig/ZConfig-3.0.4/ZConfig/ |
H A D | matcher.py | 21 class BaseMatcher: class 230 class SectionMatcher(BaseMatcher): 237 BaseMatcher.__init__(self, info, type, handlers) 243 class SchemaMatcher(BaseMatcher): 245 BaseMatcher.__init__(self, schema, schema, []) 250 v = BaseMatcher.finish(self)
|
/dports/textproc/py-pyhamcrest/PyHamcrest-2.0.2/src/hamcrest/core/core/ |
H A D | isnone.py | 3 from hamcrest.core.base_matcher import BaseMatcher 14 class IsNone(BaseMatcher[Optional[Any]]):
|
H A D | isanything.py | 3 from hamcrest.core.base_matcher import BaseMatcher 12 class IsAnything(BaseMatcher[Any]):
|
H A D | isequal.py | 3 from hamcrest.core.base_matcher import BaseMatcher 12 class IsEqual(BaseMatcher[Any]):
|
H A D | isinstanceof.py | 3 from hamcrest.core.base_matcher import BaseMatcher 13 class IsInstanceOf(BaseMatcher[object]):
|
/dports/textproc/py-pyhamcrest/PyHamcrest-2.0.2/src/hamcrest/library/text/ |
H A D | substringmatcher.py | 3 from hamcrest.core.base_matcher import BaseMatcher 11 class SubstringMatcher(BaseMatcher[str], metaclass=ABCMeta):
|
/dports/textproc/py-pyhamcrest/PyHamcrest-2.0.2/tests/hamcrest_unit_test/ |
H A D | base_matcher_test.py | 16 class FailingBaseMatcher(BaseMatcher): 24 class PassingBaseMatcher(BaseMatcher):
|
/dports/textproc/py-pyhamcrest/PyHamcrest-2.0.2/src/hamcrest/library/object/ |
H A D | hasstring.py | 1 from hamcrest.core.base_matcher import BaseMatcher 11 class HasString(BaseMatcher[object]):
|
/dports/databases/db18/db-18.1.40/test/java/compat/src/com/sleepycat/util/test/ |
H A D | GreaterThan.java | 10 import org.hamcrest.BaseMatcher; 15 public class GreaterThan extends BaseMatcher<Number> {
|