Searched refs:matcher (Results 1 - 25 of 68) sorted by relevance

123

/netbsd-current/external/gpl2/grep/dist/src/
H A Dgrepmat.c8 char const *matcher; variable
H A Dgrep.h29 extern struct matcher struct
37 extern char const *matcher;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/guile/lib/gdb/
H A Dprinting.scm28 (define-public (prepend-pretty-printer! obj matcher)
31 (assert-type (pretty-printer? matcher) matcher SCM_ARG1
34 (set-pretty-printers! (cons matcher (pretty-printers))))
37 obj (cons matcher (objfile-pretty-printers obj))))
40 obj (cons matcher (progspace-pretty-printers obj))))
45 (define-public (append-pretty-printer! obj matcher)
48 (assert-type (pretty-printer? matcher) matcher SCM_ARG1
51 (set-pretty-printers! (append! (pretty-printers) (list matcher))))
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/guile/lib/gdb/
H A Dprinting.scm28 (define-public (prepend-pretty-printer! obj matcher)
31 (assert-type (pretty-printer? matcher) matcher SCM_ARG1
34 (set-pretty-printers! (cons matcher (pretty-printers))))
37 obj (cons matcher (objfile-pretty-printers obj))))
40 obj (cons matcher (progspace-pretty-printers obj))))
45 (define-public (append-pretty-printer! obj matcher)
48 (assert-type (pretty-printer? matcher) matcher SCM_ARG1
51 (set-pretty-printers! (append! (pretty-printers) (list matcher))))
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
H A Dxmethod.py55 registered xmethod matcher to match the object type and method name.
61 name: The name of the matcher.
62 enabled: A boolean indicating if the matcher is enabled.
68 This attribute is None if the matcher chooses not have any
180 name: Name of the xmethod matcher.
216 def _validate_xmethod_matcher(matcher):
217 if not hasattr(matcher, "match"):
218 return TypeError("Xmethod matcher is missing method: match")
219 if not hasattr(matcher, "name"):
220 return TypeError("Xmethod matcher i
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/python/lib/gdb/
H A Dxmethod.py49 registered xmethod matcher to match the object type and method name.
55 name: The name of the matcher.
56 enabled: A boolean indicating if the matcher is enabled.
62 This attribute is None if the matcher chooses not have any
174 name: Name of the xmethod matcher.
213 def _validate_xmethod_matcher(matcher):
214 if not hasattr(matcher, "match"):
215 return TypeError("Xmethod matcher is missing method: match")
216 if not hasattr(matcher, "name"):
217 return TypeError("Xmethod matcher i
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/command/
H A Dxmethods.py38 <matcher matching regular expression>,
60 validate_xm_regexp("matcher name", matcher_name_regexp),
95 matcher_re: The regular expression to match the xmethod matcher
132 for matcher in xm_dict[locus_str]:
133 print (" %s%s" % (matcher.name, get_status_string(matcher)))
134 if not matcher.methods:
136 for m in matcher.methods:
144 for matcher in matchers:
147 # matcher an
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/
H A Dxmethods.py38 <matcher matching regular expression>,
61 validate_xm_regexp("matcher name", matcher_name_regexp),
96 matcher_re: The regular expression to match the xmethod matcher
133 for matcher in xm_dict[locus_str]:
134 print(" %s%s" % (matcher.name, get_status_string(matcher)))
135 if not matcher.methods:
137 for m in matcher.methods:
145 for matcher in matchers:
148 # matcher an
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.guile/
H A Dscm-section-script.scm46 (lambda (matcher val)
H A Dscm-frame-args.scm60 (lambda (matcher val)
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.guile/
H A Dscm-section-script.scm46 (lambda (matcher val)
H A Dscm-frame-args.scm60 (lambda (matcher val)
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-matchers.h84 // To implement a matcher Foo for type T, define:
124 // polymorphic matcher (i.e. something that can be converted to a
131 // M can be a polymorphic matcher, in which case we want to use
136 // polymorphic matcher because it'll be ambiguous if T has an implicit
155 // M is a polymorphic matcher or Matcher<T> has an implicit constructor
157 // matcher.
166 // matcher. It's a value of a type implicitly convertible to T. Use direct
167 // initialization to create a matcher.
175 // polymorphic matcher Eq(value) in this case.
178 // only fall back to the polymorphic Eq() matcher afterward
244 Cast(const Matcher<T>& matcher) argument
254 MatcherCast(const M& matcher) argument
282 Cast(const Matcher<U>& matcher) argument
342 MatchPrintAndExplain(Value& value, const Matcher<T>& matcher, MatchResultListener* listener) argument
392 typename std::tuple_element<N - 1, MatcherTuple>::type matcher = local
976 NotMatcherImpl(const Matcher<T>& matcher) argument
1003 NotMatcher(InnerMatcher matcher) argument
1266 MatcherAsPredicate(M matcher) argument
1322 const Matcher<const T&> matcher = SafeMatcherCast<const T&>(matcher_); local
1357 MakePredicateFormatterFromMatcher(M matcher) argument
1599 PointeeMatcher(const InnerMatcher& matcher) argument
1622 Impl(const InnerMatcher& matcher) argument
1664 WhenDynamicCastToMatcherBase(const Matcher<To>& matcher) argument
1697 WhenDynamicCastToMatcher(const Matcher<To>& matcher) argument
1712 WhenDynamicCastToMatcher(const Matcher<To&>& matcher) argument
1733 FieldMatcher(FieldType Class::*field, const Matcher<const FieldType&>& matcher) argument
1737 FieldMatcher(const std::string& field_name, FieldType Class::*field, const Matcher<const FieldType&>& matcher) argument
1801 PropertyMatcher(Property property, const Matcher<RefToConstProperty>& matcher) argument
1806 PropertyMatcher(const std::string& property_name, Property property, const Matcher<RefToConstProperty>& matcher) argument
1896 ResultOfMatcher(Callable callable, InnerMatcher matcher) argument
1916 Impl(const CallableStorageType& callable, const M& matcher) argument
2172 WhenSortedByMatcher(const Comparator& comparator, const ContainerMatcher& matcher) argument
2193 Impl(const Comparator& comparator, const ContainerMatcher& matcher) argument
3327 VariantMatcher(::testing::Matcher<const T&> matcher) argument
3388 AnyCastMatcher(const ::testing::Matcher<const T&>& matcher) argument
3739 Field( FieldType Class::*field, const FieldMatcher& matcher) argument
3753 Field( const std::string& field_name, FieldType Class::*field, const FieldMatcher& matcher) argument
3784 Property(const std::string& property_name, PropertyType (Class::*property)() const, const PropertyMatcher& matcher) argument
3809 Property(const std::string& property_name, PropertyType (Class::*property)() const &, const PropertyMatcher& matcher) argument
3827 ResultOf( Callable callable, InnerMatcher matcher) argument
4190 Contains(M matcher) argument
4340 Each(M matcher) argument
4367 Matches(M matcher) argument
4373 Value(const T& value, M matcher) argument
4380 ExplainMatchResult( M matcher, const T& value, MatchResultListener* listener) argument
4396 DescribeMatcher(const M& matcher, bool negation = false) argument
4526 Args( InnerMatcher&& matcher) argument
4540 AllArgs(const InnerMatcher& matcher) argument
4558 AnyWith( const Matcher<const T&>& matcher) argument
4569 VariantWith( const Matcher<const T&>& matcher) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest-death-test.cc380 Matcher<const std::string&> matcher, const char* file,
383 statement, std::move(matcher), file, line, test);
399 DeathTestImpl(const char* a_statement, Matcher<const std::string&> matcher) argument
401 matcher_(std::move(matcher)),
439 // A matcher that's expected to match the stderr output by the child process.
559 // matcher_: A matcher that's expected to match the stderr output by the child
651 WindowsDeathTest(const char* a_statement, Matcher<const std::string&> matcher, argument
653 : DeathTestImpl(a_statement, std::move(matcher)),
815 FuchsiaDeathTest(const char* a_statement, Matcher<const std::string&> matcher, argument
817 : DeathTestImpl(a_statement, std::move(matcher)),
379 Create(const char* statement, Matcher<const std::string&> matcher, const char* file, int line, DeathTest** test) argument
1089 ForkingDeathTest(const char* a_statement, Matcher<const std::string&> matcher) argument
1112 NoExecDeathTest(const char* a_statement, Matcher<const std::string&> matcher) argument
1167 ExecDeathTest(const char* a_statement, Matcher<const std::string&> matcher, const char* file, int line) argument
1466 Create(const char* statement, Matcher<const std::string&> matcher, const char* file, int line, DeathTest** test) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h83 static bool Create(const char* statement, Matcher<const std::string&> matcher,
150 Matcher<const std::string&> matcher, const char* file,
157 bool Create(const char* statement, Matcher<const std::string&> matcher,
166 // and interpreted as a regex (rather than an Eq matcher) for legacy
183 Matcher<const ::std::string&> matcher) {
184 return matcher;
182 MakeDeathTestMatcher( Matcher<const ::std::string&> matcher) argument
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/
H A Dthompson.d519 auto matcher = fwdMatcher(t.pc, end, me - ms, subCounters.get(t.pc, 0));
521 auto matcher = bwdMatcher(t.pc, end, me - ms, subCounters.get(t.pc, 0));
522 matcher.backrefed = backrefed.empty ? t.matches : backrefed;
524 auto mRes = matcher.matchOneShot(t.matches.ptr[ms .. me], IRL!(IR.LookbehindStart));
525 freelist = matcher.freelist;
526 subCounters[t.pc] = matcher.genCounter;
547 auto matcher = bwdMatcher(t.pc, end, me - ms, subCounters.get(t.pc, 0));
549 auto matcher = fwdMatcher(t.pc, end, me - ms, subCounters.get(t.pc, 0));
550 matcher.backrefed = backrefed.empty ? t.matches : backrefed;
551 auto mRes = matcher
[all...]
/netbsd-current/external/gpl2/diffutils/dist/lib/
H A Dexclude.c170 int (*matcher) PARAMS ((char const *, char const *, int)) =
174 bool matched = ((*matcher) (pattern, f, options) == 0);
180 matched = ((*matcher) (pattern, p + 1, options) == 0);
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
H A Dthompson.d519 auto matcher = fwdMatcher(t.pc, end, subCounters.get(t.pc, 0));
521 auto matcher = bwdMatcher(t.pc, end, subCounters.get(t.pc, 0));
522 matcher.re.ngroup = me - ms;
523 matcher.backrefed = backrefed.empty ? t.matches : backrefed;
525 auto mRes = matcher.matchOneShot(t.matches.ptr[ms .. me], IRL!(IR.LookbehindStart));
526 freelist = matcher.freelist;
527 subCounters[t.pc] = matcher.genCounter;
548 auto matcher = bwdMatcher(t.pc, end, subCounters.get(t.pc, 0));
550 auto matcher = fwdMatcher(t.pc, end, subCounters.get(t.pc, 0));
551 matcher
[all...]
/netbsd-current/external/bsd/elftosb/dist/common/
H A DSourceFile.cpp135 //! FixedMatcher string matcher instance and uses the createDataSource()
139 FixedMatcher matcher(section);
140 return createDataSource(matcher);
/netbsd-current/external/apache2/llvm/lib/libLLVMSparcCodeGen/
H A DMakefile27 SparcGenAsmMatcher.inc|-gen-asm-matcher \
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dinline-frame.c107 auto matcher = [target, &filter_ptid] (const inline_state &state) local
115 matcher);
123 auto matcher = [target, &filter_ptid] (const inline_state &state) local
131 matcher);
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dinline-frame.c107 auto matcher = [target, &filter_ptid] (const inline_state &state) local
115 matcher);
123 auto matcher = [target, &filter_ptid] (const inline_state &state) local
131 matcher);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/
H A Dpy-xmethods.c82 invoke_match_method (PyObject *matcher, PyObject *py_obj_type, argument
87 gdbpy_ref<> enabled_field (PyObject_GetAttrString (matcher,
97 /* Return 'None' if the matcher is not enabled. */
101 gdbpy_ref<> match_method (PyObject_GetAttrString (matcher,
110 return PyObject_CallMethodObjArgs (matcher, py_match_method_name,
143 This could be done differently by iterating over each objfile's matcher
225 gdbpy_ref<> matcher (PyIter_Next (list_iter.get ()));
226 if (matcher == NULL)
236 gdbpy_ref<> match_result (invoke_match_method (matcher.get (),
/netbsd-current/external/gpl3/gdb/dist/gdb/python/
H A Dpy-xmethods.c82 invoke_match_method (PyObject *matcher, PyObject *py_obj_type, argument
87 gdbpy_ref<> enabled_field (PyObject_GetAttrString (matcher,
97 /* Return 'None' if the matcher is not enabled. */
101 gdbpy_ref<> match_method (PyObject_GetAttrString (matcher,
110 return PyObject_CallMethodObjArgs (matcher, py_match_method_name,
143 This could be done differently by iterating over each objfile's matcher
225 gdbpy_ref<> matcher (PyIter_Next (list_iter.get ()));
226 if (matcher == NULL)
236 gdbpy_ref<> match_result (invoke_match_method (matcher.get (),
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dmsggrep.c83 matcher_t *matcher; member in struct:grep_task
191 gt->matcher = &matcher_grep;
234 grep_task[grep_pass].matcher = &matcher_egrep;
287 grep_task[grep_pass].matcher = &matcher_fgrep;
447 gt->matcher->compile (gt->patterns, gt->patterns_size,
670 gt->matcher->execute (gt->compiled_patterns, str, len,

Completed in 421 milliseconds

123