HomeSort by: relevance | last modified time | path
    Searched defs:matches (Results 1 - 25 of 135) sorted by relevancy

1 2 3 4 5 6

  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CoverageFilters.cpp 20 bool NameCoverageFilter::matches( function in class:NameCoverageFilter
27 bool NameRegexCoverageFilter::matches( function in class:NameRegexCoverageFilter
37 bool NameWhitelistCoverageFilter::matches( function in class:NameWhitelistCoverageFilter
43 bool RegionCoverageFilter::matches( function in class:RegionCoverageFilter
50 bool LineCoverageFilter::matches( function in class:LineCoverageFilter
61 bool CoverageFilters::matches(const coverage::CoverageMapping &CM, function in class:CoverageFilters
64 if (Filter->matches(CM, Function))
78 bool CoverageFiltersMatchAll::matches( function in class:CoverageFiltersMatchAll
82 if (!Filter->matches(CM, Function))
CoverageFilters.h 28 /// Matches specific functions that pass the requirement of this filter.
34 virtual bool matches(const coverage::CoverageMapping &CM, function in class:llvm::CoverageFilter
45 /// Matches functions that contain a specific string in their name.
52 bool matches(const coverage::CoverageMapping &CM,
56 /// Matches functions whose name matches a certain regular expression.
63 bool matches(const coverage::CoverageMapping &CM,
69 /// Matches functions whose name appears in a SpecialCaseList in the
78 bool matches(const coverage::CoverageMapping &CM,
82 /// Matches numbers that pass a certain threshold
    [all...]
  /src/usr.bin/what/
what.c 58 static int matches; variable
71 matches = sflag = 0;
97 return matches ? 0 : 1;
119 matches++;
  /src/crypto/external/bsd/heimdal/dist/kcm/
client.c 173 int matches = sscanf(name,"%ld:",&uid); local
174 if (matches == 0)
175 matches = sscanf(name,"%ld",&uid);
176 if (matches == 1) {
  /src/crypto/external/bsd/netpgp/dist/src/hkpclient/
hkpc.c 118 regmatch_t matches[10]; local
125 if (regexec(&text, res, 10, matches, 0) != 0) {
129 ret = netpgp_format_json(fp, &res[(int)matches[0].rm_eo], 1);
131 (void) fprintf(fp, "%s\n", &res[(int)matches[0].rm_eo]);
  /src/external/apache2/llvm/dist/llvm/utils/
extract_vplan.py 24 matches = re.findall(pattern, sys.stdin.read()) variable
26 for vplan in matches:
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
cooked-index-entry.c 161 cooked_index_entry::matches (domain_search_flags kind) const function in class:cooked_index_entry
cooked-index-entry.h 107 /* Return true if this entry matches SEARCH_FLAGS. */
108 bool matches (block_search_flags search_flags) const function in struct:cooked_index_entry
123 /* Return true if this entry matches KIND. */
124 bool matches (domain_search_flags kind) const;
sect-names.h 35 /* Return true if NAME matches either of this section's names. */
36 bool matches (const char *name) const function in struct:dwarf2_section_names
  /src/tests/usr.bin/xlint/lint1/
check-expect.lua 154 local function matches(expected_message, pattern) function
172 assert_equals(matches("a", "a"), true)
173 assert_equals(matches("a", "b"), false)
174 assert_equals(matches("a", "aaa"), false)
176 assert_equals(matches("abc", "a..."), true)
177 assert_equals(matches("abc", "c..."), false)
179 assert_equals(matches("abc", "...c"), true)
180 assert_equals(matches("abc", "...a"), false)
182 assert_equals(matches("abc123xyz", "...a..."), true)
183 assert_equals(matches("abc123xyz", "...b..."), true
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Option/
Option.cpp 93 bool Option::matches(OptSpecifier Opt) const { function in class:Option
97 return Alias.matches(Opt);
105 return Group.matches(Opt);
123 // Always matches.
151 // Matches iff this is an exact match.
163 // Matches iff this is an exact match.
195 // Always matches.
205 // Matches iff this is an exact match.
  /src/external/apache2/llvm/dist/llvm/include/llvm/FuzzMutate/
OpDescriptor.h 77 bool matches(ArrayRef<Value *> Cur, const Value *New) { function in class:llvm::fuzzerop::SourcePred
  /src/external/gpl2/mkhybrid/dist/
match.c 56 int matches(fn) function
  /src/external/gpl3/gdb/dist/readline/readline/examples/
rl-fgets.c 282 /* generate a list of partial name matches for readline() */
315 char ** matches ;
316 matches = NULL ;
318 matches = rl_completion_matches ( text, my_fgets_generator ) ;
320 return ( matches ) ;
306 char ** matches ; local
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
sect-names.h 35 /* Return true if NAME matches either of this section's names. */
36 bool matches (const char *name) const function in struct:dwarf2_section_names
  /src/external/gpl3/gdb.old/dist/gdb/
process-stratum-target.c 149 auto matches = [inf, filter_ptid] (const thread_info &thread) local
151 return thread.inf == inf && thread.ptid.matches (filter_ptid);
156 unsigned int count = std::count_if (l.begin (), l.end (), matches);
169 /* Select the Nth thread that matches. */
171 [&random_selector, &matches]
174 if (!matches (thread))
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/
rl-fgets.c 282 /* generate a list of partial name matches for readline() */
315 char ** matches ;
316 matches = NULL ;
318 matches = rl_completion_matches ( text, my_fgets_generator ) ;
320 return ( matches ) ;
306 char ** matches ; local
  /src/external/gpl3/gdb.old/dist/gdbsupport/
ptid.h 112 /* Return true if the ptid matches FILTER. FILTER can be the wild
120 constexpr bool matches (const ptid_t &filter) const function in class:ptid_t
125 matches. */
128 /* Otherwise, this ptid only matches if it's exactly equal
  /src/external/gpl3/gdb/dist/gdb/
process-stratum-target.c 149 auto matches = [inf, filter_ptid] (const thread_info &thread) local
151 return thread.inf == inf && thread.ptid.matches (filter_ptid);
156 unsigned int count = std::count_if (l.begin (), l.end (), matches);
169 /* Select the Nth thread that matches. */
171 [&random_selector, &matches]
174 if (!matches (thread))
  /src/external/gpl3/gdb/dist/gdbsupport/
ptid.h 112 /* Return true if the ptid matches FILTER. FILTER can be the wild
120 constexpr bool matches (const ptid_t &filter) const function in class:ptid_t
125 matches. */
128 /* Otherwise, this ptid only matches if it's exactly equal
  /src/sys/external/bsd/drm2/include/linux/
dmi.h 68 struct dmi_strmatch matches[4]; member in struct:dmi_system_id
  /src/usr.bin/grep/
util.c 248 /* Count the matches if we have a match limit */
283 * matches. The matching lines are passed to printline() to display the
289 regmatch_t matches[MAX_LINE_MATCHES]; local
343 matches[m++] = pmatch;
344 /* matches - skip further patterns */
353 /* One pass if we are not recording matches */
358 break; /* No matches */
373 printline(l, ':', matches, m);
375 printline(l, '-', matches, m);
444 printline(struct str *line, int sep, regmatch_t *matches, int m
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
igetest.c 298 size_t matches; local
312 matches = 0;
315 ++matches;
318 if (!TEST_size_t_le(matches, ctsize / 2 + ctsize / 100))
322 if (!TEST_size_t_gt(matches, ctsize / 2))
355 size_t matches; local
370 matches = 0;
373 ++matches;
376 return TEST_size_t_le(matches, sizeof(checktext) / 100);
386 size_t matches; local
417 size_t matches; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
igetest.c 298 size_t matches; local
312 matches = 0;
315 ++matches;
318 if (!TEST_size_t_le(matches, ctsize / 2 + ctsize / 100))
322 if (!TEST_size_t_gt(matches, ctsize / 2))
355 size_t matches; local
370 matches = 0;
373 ++matches;
376 return TEST_size_t_le(matches, sizeof(checktext) / 100);
386 size_t matches; local
417 size_t matches; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/
igetest.c 293 size_t matches; local
307 matches = 0;
310 ++matches;
313 if (!TEST_size_t_le(matches, ctsize / 2 + ctsize / 100))
317 if (!TEST_size_t_gt(matches, ctsize / 2))
350 size_t matches; local
365 matches = 0;
368 ++matches;
371 return TEST_size_t_le(matches, sizeof(checktext) / 100);
381 size_t matches; local
412 size_t matches; local
    [all...]

Completed in 27 milliseconds

1 2 3 4 5 6