Searched defs:match (Results 1 - 25 of 220) sorted by relevance

123456789

/external/iproute2/tc/
H A Demp_ematch.y31 %type <e> match expr
48 match
50 | match relation expr
58 match: label
/external/apache-http/src/org/apache/http/impl/cookie/
H A DAbstractCookieAttributeHandler.java45 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:AbstractCookieAttributeHandler
46 // Always match
H A DBasicDomainHandler.java69 // have DNS names. Since they have no dots, to domain-match the
81 // domain must match host
101 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BasicDomainHandler
H A DBasicPathHandler.java58 if (!match(cookie, origin)) {
65 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BasicPathHandler
80 boolean match = targetpath.startsWith (topmostPath);
81 // if there is a match and these values are not exactly the same we have
83 if (match && targetpath.length() != topmostPath.length()) {
85 match = (targetpath.charAt(topmostPath.length()) == '/');
88 return match;
H A DBasicSecureHandler.java53 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BasicSecureHandler
H A DCookieSpecBase.java116 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:CookieSpecBase
124 if (!handler.match(cookie, origin)) {
H A DNetscapeDomainHandler.java91 public boolean match(Cookie cookie, CookieOrigin origin) { method in class:NetscapeDomainHandler
H A DRFC2109DomainHandler.java79 + "\" does not match the host \""
111 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2109DomainHandler
H A DRFC2965CommentUrlAttributeHandler.java62 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965CommentUrlAttributeHandler
H A DRFC2965DiscardAttributeHandler.java62 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965DiscardAttributeHandler
H A DRFC2965DomainAttributeHandler.java85 * Performs domain-match as defined by the RFC2965.
100 boolean match = host.equals(domain)
103 return match;
143 // The effective host name must domain-match domain attribute.
148 + "domain-match domain attribute.");
161 // string match request host (case-insensitive).
174 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965DomainAttributeHandler
184 // The effective host name MUST domain-match the Domain
H A DRFC2965PortAttributeHandler.java147 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965PortAttributeHandler
H A DRFC2965VersionAttributeHandler.java92 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965VersionAttributeHandler
/external/elfcopy/
H A Dcommon.c6 section_match_fn_t match,
11 if (match(elf, section, user_data))
17 segment_match_fn_t match,
31 if (match(elf, phdr++, user_data))
5 map_over_sections(Elf *elf, section_match_fn_t match, void *user_data) argument
16 map_over_segments(Elf *elf, segment_match_fn_t match, void *user_data) argument
/external/qemu/
H A Dacl.h34 char *match; member in struct:qemu_acl_entry
58 const char *match);
61 const char *match,
64 const char *match);
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/
H A Dmatch-004.js2 * File Name: String/match-004.js
11 * String.match( regexp )
20 * RegExp.prototype.exec repeatedly until there is no match. If there is a
21 * match with an empty string (in other words, if the value of
27 * Note that the match function is intentionally generic; it does not
32 * The match function should be intentionally generic, and not require
37 var SECTION = "String/match-004.js";
39 var TITLE = "String.prototype.match( regexp )";
49 Number.prototype.match = String.prototype.match;
[all...]
/external/apache-http/src/org/apache/http/cookie/
H A DCookieAttributeHandler.java72 * @param cookie {@link org.apache.http.cookie.Cookie} to match
73 * @param origin the cookie source to match against
74 * @return <tt>true</tt> if the match is successful; <tt>false</tt> otherwise
76 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieAttributeHandler
H A DCookieSpec.java97 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieSpec
/external/icu4c/i18n/
H A Dcsrutf8.cpp26 int32_t CharsetRecog_UTF8::match(InputText* det) { function in class:CharsetRecog_UTF8
/external/iptables/extensions/
H A Dlibipt_unclean.c26 struct ipt_entry_match **match)
23 parse(int c, char **argv, int invert, unsigned int *flags, const struct ipt_entry *entry, unsigned int *nfcache, struct ipt_entry_match **match) argument
/external/iptables/include/linux/netfilter_ipv6/
H A Dip6t_owner.h4 /* match and invert flags */
15 u_int8_t match, invert; /* flags */ member in struct:ip6t_owner_info
/external/kernel-headers/original/linux/
H A Dattribute_container.h22 int (*match)(struct attribute_container *, struct device *); member in struct:attribute_container
/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dipt_owner.h4 /* match and invert flags */
17 u_int8_t match, invert; /* flags */ member in struct:ipt_owner_info
/external/kernel-headers/original/linux/netfilter_ipv6/
H A Dip6t_owner.h4 /* match and invert flags */
15 u_int8_t match, invert; /* flags */ member in struct:ip6t_owner_info
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Statements/
H A Dswitch-001.js41 actual = match(17, f(fInverse(17)), f, fInverse);
46 actual = match(17, 18, f, fInverse);
51 actual = match(1, 1, Math.exp, Math.log);
56 actual = match(1, 2, Math.exp, Math.log);
61 actual = match(1, 1, Math.sin, Math.cos);
76 function match(x, y, F, G) function

Completed in 265 milliseconds

123456789