Searched refs:matchers (Results 1 - 9 of 9) sorted by relevance

/freebsd-12-stable/gnu/usr.bin/grep/
H A Dgrep.h25 /* Grep.c expects the matchers vector to be terminated
34 } const matchers[];
39 /* The following flags are exported from grep for the matchers
H A Dgrep.c1207 error (2, 0, _("conflicting matchers specified"));
1211 /* Go through the matchers vector and look for the specified matcher.
1221 for (i = 0; matchers[i].compile; i++)
1222 if (strcmp (name, matchers[i].name) == 0)
1224 compile = matchers[i].compile;
1225 execute = matchers[i].execute;
H A Dsearch.c1295 struct matcher const matchers[] = { variable
/freebsd-12-stable/lib/googletest/gmock/
H A DMakefile21 MAIN_INCS+= gmock/gmock-matchers.h
24 MAIN_INCS+= gmock/gmock-generated-matchers.h
26 MAIN_INCS+= gmock/gmock-more-matchers.h
40 INTERNAL_CUSTOM_INCS+= gmock/internal/custom/gmock-matchers.h
/freebsd-12-stable/contrib/googletest/googlemock/test/
H A Dgmock-internal-utils_test.cc311 tuple<> matchers; local
314 EXPECT_TRUE(TupleMatches(matchers, values));
318 tuple<Matcher<int> > matchers(Eq(1));
322 EXPECT_TRUE(TupleMatches(matchers, values1));
323 EXPECT_FALSE(TupleMatches(matchers, values2));
327 tuple<Matcher<int>, Matcher<char> > matchers(Eq(1), Eq('a'));
333 EXPECT_TRUE(TupleMatches(matchers, values1));
334 EXPECT_FALSE(TupleMatches(matchers, values2));
335 EXPECT_FALSE(TupleMatches(matchers, values3));
336 EXPECT_FALSE(TupleMatches(matchers, values
[all...]
/freebsd-12-stable/contrib/googletest/googlemock/
H A DMakefile.am33 include/gmock/gmock-generated-matchers.h \
35 include/gmock/gmock-matchers.h \
37 include/gmock/gmock-more-matchers.h \
47 include/gmock/internal/custom/gmock-matchers.h \
97 src/gmock-matchers.cc \
140 include/gmock/gmock-generated-matchers.h.pump \
/freebsd-12-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h33 // This file implements some commonly used argument matchers. More
34 // matchers can be defined by the user implementing the
74 // is impossible if we pass matchers by pointers. It also eases
797 // This overload handles polymorphic matchers and values only since
798 // monomorphic matchers are handled by the next one.
804 // This overload handles monomorphic matchers.
871 // Value cannot be passed by const reference, because some matchers take a
911 // TuplePrefix<N>::ExplainMatchFailuresTo(matchers, values, os)
912 // describes failures in matching the first N fields of matchers
916 static void ExplainMatchFailuresTo(const MatcherTuple& matchers, argument
983 ExplainMatchFailureTupleTo(const MatcherTuple& matchers, const ValueTuple& values, ::std::ostream* os) argument
1730 AllOfMatcherImpl(std::vector<Matcher<T> > matchers) argument
1794 VariadicMatcher(const Args&.... matchers) argument
1866 AnyOfMatcherImpl(std::vector<Matcher<T> > matchers) argument
3845 MatcherVec matchers; local
3875 MatcherVec matchers; local
4921 ::std::vector<internal::BoundSecondMatcher<Tuple2Matcher, Second> > matchers; local
5189 AllOf( const Args&.... matchers) argument
5196 AnyOf( const Args&.... matchers) argument
5204 ElementsAre(const Args&.... matchers) argument
5213 UnorderedElementsAre(const Args&.... matchers) argument
[all...]
H A Dgmock-spec-builders.h38 // ON_CALL(mock_object, Method(argument-matchers))
47 // EXPECT_CALL(mock_object, Method(argument-matchers))
48 // .With(multi-argument-matchers)
71 #include "gmock/gmock-matchers.h"
303 const ArgumentMatcherTuple& matchers)
305 matchers_(matchers),
338 // Returns true iff the given arguments match the matchers.
354 // ON_CALL(mock_object, Method(matchers))
362 // matchers => matchers_
1057 // Returns the matchers fo
302 OnCallSpec(const char* a_file, int a_line, const ArgumentMatcherTuple& matchers) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp675 /// Conditions that form a common prefix of all the matchers contained.
678 /// All the nested matchers, sharing a common prefix.
681 /// An owning collection for any auxiliary matchers created while optimizing
682 /// nested matchers contained.
686 /// Add a matcher to the collection of nested matchers if it meets the
711 /// matchers, so moving them out after finalize() is not supported.
716 /// Could be used to move out the matchers added previously, unless finalize()
717 /// has been already called. If any of the matchers are moved out, the group
719 iterator_range<std::vector<Matcher *>::iterator> matchers() { function in class:__anon5929::final
746 /// All the nested matchers, representin
771 iterator_range<std::vector<Matcher *>::iterator> matchers() { function in class:__anon5929::SwitchMatcher
[all...]

Completed in 91 milliseconds