HomeSort by: relevance | last modified time | path
    Searched refs:matcher (Results 1 - 25 of 63) sorted by relevancy

1 2 3

  /src/external/gpl2/grep/dist/src/
grepmat.c 8 char const *matcher; variable
grep.h 29 extern struct matcher struct
37 extern char const *matcher;
  /src/external/gpl3/gdb/dist/gdb/guile/lib/gdb/
printing.scm 28 (define-public (prepend-pretty-printer! obj matcher)
29 "Add MATCHER to the beginning of the pretty-printer list for OBJ.
30 If OBJ is #f, add MATCHER to the global list."
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)
46 "Add MATCHER to the end of the pretty-printer list for OBJ
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/guile/lib/gdb/
printing.scm 28 (define-public (prepend-pretty-printer! obj matcher)
29 "Add MATCHER to the beginning of the pretty-printer list for OBJ.
30 If OBJ is #f, add MATCHER to the global list."
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)
46 "Add MATCHER to the end of the pretty-printer list for OBJ
    [all...]
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/
xmethod.py 49 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.
209 # object if MATCHER is not having the requisite attributes in the proper
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")
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
xmethod.py 49 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.
209 # object if MATCHER is not having the requisite attributes in the proper
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")
    [all...]
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/
xmethods.py 39 <matcher matching regular expression>,
62 validate_xm_regexp("matcher name", matcher_name_regexp),
97 matcher_re: The regular expression to match the xmethod matcher
134 for matcher in xm_dict[locus_str]:
135 print(" %s%s" % (matcher.name, get_status_string(matcher)))
136 if not matcher.methods:
138 for m in matcher.methods:
146 for matcher in matchers:
149 # matcher and move on
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/command/
xmethods.py 39 <matcher matching regular expression>,
62 validate_xm_regexp("matcher name", matcher_name_regexp),
97 matcher_re: The regular expression to match the xmethod matcher
134 for matcher in xm_dict[locus_str]:
135 print(" %s%s" % (matcher.name, get_status_string(matcher)))
136 if not matcher.methods:
138 for m in matcher.methods:
146 for matcher in matchers:
149 # matcher and move on
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.guile/
scm-section-script.scm 46 (lambda (matcher val)
scm-frame-args.scm 60 (lambda (matcher val)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.guile/
scm-section-script.scm 46 (lambda (matcher val)
scm-frame-args.scm 60 (lambda (matcher val)
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-matchers.h 38 // Matcher, class MatcherInterface, and others.
84 // To implement a matcher Foo for type T, define:
87 // 2. a factory function that creates a Matcher<T> object from a
91 // to write "v" instead of "Eq(v)" where a Matcher is expected, which
93 // ownership management as Matcher objects can now be copied like
124 // polymorphic matcher (i.e. something that can be converted to a
125 // Matcher but is not one yet; for example, Eq(value)) or a value (for
130 static Matcher<T> Cast(const M& polymorphic_matcher_or_value) {
131 // M can be a polymorphic matcher, in which case we want to use
132 // its conversion operator to create Matcher<T>. Or it can be a valu
392 typename std::tuple_element<N - 1, MatcherTuple>::type matcher = local
1322 const Matcher<const T&> matcher = SafeMatcherCast<const T&>(matcher_); local
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-death-test-internal.h 83 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
168 inline Matcher<const ::std::string&> MakeDeathTestMatcher(
172 inline Matcher<const ::std::string&> MakeDeathTestMatcher(const char* regex) {
175 inline Matcher<const ::std::string&> MakeDeathTestMatcher
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 380 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)
401 matcher_(std::move(matcher)),
439 // A matcher that's expected to match the stderr output by the child process.
440 Matcher<const std::string&> matcher_;
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
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
thompson.d 519 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.matchOneShot(t.matches.ptr[ms .. me], IRL!(IR.LookaheadStart))
    [all...]
  /src/external/gpl2/diffutils/dist/lib/
exclude.c 170 int (*matcher) PARAMS ((char const *, char const *, int)) =
174 bool matched = ((*matcher) (pattern, f, options) == 0);
180 matched = ((*matcher) (pattern, p + 1, options) == 0);
  /src/external/bsd/elftosb/dist/common/
SourceFile.cpp 135 //! FixedMatcher string matcher instance and uses the createDataSource()
139 FixedMatcher matcher(section);
140 return createDataSource(matcher);
SourceFile.h 90 virtual DataSource * createDataSource(StringMatcher & matcher) { return NULL; }
  /src/external/apache2/llvm/lib/libLLVMSparcCodeGen/
Makefile 27 SparcGenAsmMatcher.inc|-gen-asm-matcher \
  /src/external/gpl3/gdb.old/dist/gdb/
inline-frame.c 106 auto matcher = [target, &filter_ptid] (const inline_state &state) local
114 matcher);
122 auto matcher = [target, &filter_ptid] (const inline_state &state) local
130 matcher);
  /src/external/gpl3/gdb/dist/gdb/python/
py-xmethods.c 77 /* Invoke the "match" method of the MATCHER and return a new reference
81 invoke_match_method (PyObject *matcher, PyObject *py_obj_type,
86 gdbpy_ref<> enabled_field (PyObject_GetAttrString (matcher,
96 /* Return 'None' if the matcher is not enabled. */
100 gdbpy_ref<> match_method (PyObject_GetAttrString (matcher,
109 return PyObject_CallMethodObjArgs (matcher, py_match_method_name,
142 This could be done differently by iterating over each objfile's matcher
224 gdbpy_ref<> matcher (PyIter_Next (list_iter.get ()));
225 if (matcher == NULL)
235 gdbpy_ref<> match_result (invoke_match_method (matcher.get ()
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-xmethods.c 77 /* Invoke the "match" method of the MATCHER and return a new reference
81 invoke_match_method (PyObject *matcher, PyObject *py_obj_type,
86 gdbpy_ref<> enabled_field (PyObject_GetAttrString (matcher,
96 /* Return 'None' if the matcher is not enabled. */
100 gdbpy_ref<> match_method (PyObject_GetAttrString (matcher,
109 return PyObject_CallMethodObjArgs (matcher, py_match_method_name,
142 This could be done differently by iterating over each objfile's matcher
224 gdbpy_ref<> matcher (PyIter_Next (list_iter.get ()));
225 if (matcher == NULL)
235 gdbpy_ref<> match_result (invoke_match_method (matcher.get ()
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/src/
msggrep.c 83 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,
  /src/external/gpl2/lvm2/lib/libdevmapper/
Makefile 28 dbg_malloc.c pool.c matcher.c parse_rx.c ttree.c \

Completed in 47 milliseconds

1 2 3