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

1 2 3 4 5 6 7 8 91011>>

  /src/usr.bin/make/unit-tests/
check-expect.lua 73 line:match('^make: ([^:]+%.mk):(%d+):%s+(.*)')
111 local function match(pattern, action) function
114 match = function() end
118 match("^#%s+expect%-not:%s*(.*)", function(text)
127 match("^#%s+expect%-not%-matches:%s*(.*)", function(pattern)
130 print_error("error: %s:%d: %s:%d must not match '%s'",
136 match("^#%s+expect:%s*(.*)", function(text)
151 match("^#%s+expect%-reset$", function()
155 match("^#%s+expect([+%-]%d+):%s*(.*)", function(offset, text)
177 match("^#%s+expect[+%-:]", function(
    [all...]
  /src/lib/libc/arch/mips/string/
bcmp.S 61 move v0, v1 # init v0,v1 so unmodified bytes match
107 ble a2, zero, match
117 match: label
  /src/external/bsd/elftosb/dist/common/
GlobMatcher.cpp 16 //! The glob pattern must match the \e entire test value argument in order
17 //! for the match to be considered successful. Thus, even if, for example,
20 //! \retval true The test value does match the glob pattern.
21 //! \retval false The test value does not match the glob pattern.
22 bool GlobMatcher::match(const std::string & testValue) function in class:GlobMatcher
32 int match; local
75 match = false;
77 while (!match && (c = *p++)) {
86 match = true;
90 match = true
    [all...]
StringMatcher.h 21 //! \brief Performs a single string match test against testValue.
24 //! \retval false No match was made against the argument.
25 virtual bool match(const std::string & testValue)=0;
34 //! \brief Always returns true, indicating a positive match.
35 virtual bool match(const std::string & testValue) { return true; } function in class:elftosb::WildcardMatcher
51 virtual bool match(const std::string & testValue) function in class:elftosb::FixedMatcher
ExcludesListMatcher.cpp 33 //! If there are no entries in the match list, the match fails.
35 //! \param testValue The string to match against the pattern list.
37 //! \retval false No match was made against the argument.
38 bool ExcludesListMatcher::match(const std::string & testValue) function in class:ExcludesListMatcher
45 // Iterate over the match list. Includes act as an OR operator, while
54 // if this pattern is an include and it doesn't match, or
55 // if this pattern is an exclude and it does match, then the match fails
  /src/external/mpl/bind/dist/bin/tests/system/dnssec/ans10/
ans.py 26 def match(self, qctx: QueryContext) -> bool: member in class:AddRrsigToAHandler
44 def match(self, qctx: QueryContext) -> bool: member in class:AddNsecToTxtHandler
  /src/external/mpl/bind/dist/bin/tests/system/rpzrecurse/ans5/
ans.py 30 def match(self, qctx: QueryContext) -> bool: member in class:ReplyA
44 def match(self, qctx: QueryContext) -> bool: member in class:IgnoreNs
  /src/tests/usr.bin/ld/
t_section.sh 74 match ".text" &&
75 match "hoge" &&
78 match ".data" &&
79 match "fuga" &&
80 match ".bss" &&
86 match() { function
  /src/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/
compat.c 46 krb5_principal match; local
54 match = NULL;
56 ret = krb5_parse_name(context, *q, &match);
60 if (krb5_principal_match(context, name, match)) {
65 krb5_free_principal(context, match);
66 match = NULL;
68 if (match)
69 krb5_free_principal(context, match);
copy_ccache.c 109 krb5_boolean match; local
111 match = krb5_principal_compare(context,
114 if (match == FALSE) {
  /src/external/bsd/kyua-cli/dist/cli/
cmd_config.cpp 79 const config::properties_map::const_iterator match = local
81 if (match == properties.end()) {
85 ui->out(F("%s = %s") % (*match).first % (*match).second);
  /src/external/mit/libuv/dist/test/
test-get-currentexe.c 45 char* match; local
58 match = strstr(buffer, path);
62 ASSERT(match && !strcmp(match, path));
101 match = strstr(buffer, path);
105 ASSERT_NOT_NULL(match);
106 ASSERT_STR_EQ(match, path);
  /src/games/monop/
getinp.c 56 int i, n_match, match = 0; local
67 for (i = 0, match = 18; lst[i]; i++) {
68 if ((match+=(n_match=strlen(lst[i]))) > LINE) {
70 match = n_match + 8;
73 match += 8;
82 match += 2;
93 match = i;
96 return match;
  /src/sys/arch/arc/arc/
platform.c 58 int i, rv, matched = -1, match = 0, ambiguous_match = 0; local
61 rv = (*plattab[i]->match)(plattab[i]);
62 if (rv > match) {
63 match = rv;
66 } else if (rv == match) {
77 rv = (*plattab[i]->match)(plattab[i]);
78 if (rv < match)
90 if (match)
92 return match;
  /src/sys/arch/mvmeppc/include/
platform.h 41 int (*match)(struct platform *); member in struct:platform
  /src/sys/dev/fdt/
fdt_console.h 35 int (*match)(int); member in struct:fdt_console
fdt_platform.c 49 int match, best_match = 0; local
57 match = of_compatible_match(phandle, compat_data);
58 if (match > best_match) {
59 best_match = match;
  /src/sys/lib/libkern/
pmatch.c 43 * Return 2 on exact match.
44 * Return 1 on substring match.
45 * Return 0 on no match.
47 * *estr will point to the end of the longest exact or substring match.
53 int match, negate_range; local
107 match = 0;
113 if (match)
117 match =
122 match = (stringc == rangec);
126 if (match == negate_range
    [all...]
  /src/tests/net/tcp/
tcp_shutdown.c 53 match(const char *a, const char *b) function
76 if (match(target, "connect")) {
89 } else if (match(target, "setsockopt")) {
96 } else if (match(target, "getsockname")) {
104 } else if (match(target, "listen")) {
110 } else if (match(target, "bind")) {
123 } else if (match(target, "shutdown")) {
  /src/tests/rump/rumpkern/h_server/
h_simpleserver.c 29 bool match; local
50 match = true;
54 if (!match) {
  /src/usr.sbin/faithd/
prefix.h 42 struct prefix match; member in struct:config
  /src/external/bsd/kyua-cli/dist/engine/
filters.hpp 33 /// they are mere filters that decide whether they match or not the input data
57 /// The name of the test program or subdirectory to match.
60 /// The name of the test case to match; if empty, represents any test case.
80 /// An empty collection of filters is considered to match any test case.
83 /// they are not, some filters may never have a chance to do a match, which is
95 /// match (if any).
96 typedef std::pair< bool, utils::optional< test_filter > > match; typedef in class:engine::test_filters
99 match match_test_case(const utils::fs::path&, const std::string&) const;
  /src/external/mpl/bind/dist/bin/tests/system/bailiwick/
bailiwick_ans.py 51 def match(self, qctx: QueryContext) -> bool: member in class:ResponseSpoofer
  /src/external/mpl/bind/dist/lib/dns/rdata/generic/
tlsa_52.h 26 uint8_t match; member in struct:dns_rdata_tlsa
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
tlsa_52.h 27 uint8_t match; member in struct:dns_rdata_tlsa

Completed in 25 milliseconds

1 2 3 4 5 6 7 8 91011>>