HomeSort by relevance Sort by last modified time
    Searched defs:match (Results 101 - 125 of 2151) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2109DomainHandler.java 85 + "\" does not match the host \""
117 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2109DomainHandler
RFC2965CommentUrlAttributeHandler.java 67 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965CommentUrlAttributeHandler
RFC2965DiscardAttributeHandler.java 67 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965DiscardAttributeHandler
RFC2965DomainAttributeHandler.java 90 * Performs domain-match as defined by the RFC2965.
105 boolean match = host.equals(domain)
108 return match;
148 // The effective host name must domain-match domain attribute.
153 + "domain-match domain attribute.");
166 // string match request host (case-insensitive).
177 * Match cookie domain attribute.
179 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965DomainAttributeHandler
189 // The effective host name MUST domain-match the Domain
RFC2965VersionAttributeHandler.java 97 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965VersionAttributeHandler
  /external/autotest/client/site_tests/platform_Crossystem/
platform_Crossystem.py 12 """Extends regular expression with a match/do not match bit and
13 a saner definition of "match".
20 # If the pattern starts with !, it means "do not match".
27 # re.match() forces the RE to match from the beginning, but doesn't
33 def match(self, string): member in class:_Matcher
34 return bool(self._regexp.match(string)) == self._positive_match
46 if the output does not match @matcher
49 @param matcher: a matcher that must match the output of crossystem @va
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerId.java 50 * @param subjectKeyId the subject key identifier to use to match the signers associated certificate.
90 public boolean match(Object obj) method in class:SignerId
97 return baseSelector.match(obj);
  /external/elfutils/tests/
find-prologues.c 50 bool match; local
52 match = fnmatch (*argv, name, 0) == 0;
53 while (!match && *++argv);
54 if (!match)
funcretval.c 50 bool match; local
52 match = fnmatch (*argv, name, 0) == 0;
53 while (!match && *++argv);
54 if (!match)
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsetRecog_UTF8.java 23 * @see android.icu.text.CharsetRecognizer#match(android.icu.text.CharsetDetector)
26 CharsetMatch match(CharsetDetector det) { method in class:CharsetRecog_UTF8
  /external/icu/icu4c/source/i18n/
csrutf8.cpp 29 UBool CharsetRecog_UTF8::match(InputText* input, CharsetMatch *results) const { function in class:CharsetRecog_UTF8
  /external/icu/icu4c/source/samples/csdet/
csdet.c 33 int32_t inputLength, match, matchCount = 0; local
60 for(match = 0; match < matchCount; match += 1) {
61 const char *name = ucsdet_getName(csm[match], &status);
62 const char *lang = ucsdet_getLanguage(csm[match], &status);
63 int32_t confidence = ucsdet_getConfidence(csm[match], &status);
  /external/icu/icu4c/source/test/perf/strsrchperf/
strsrchperf.h 67 int32_t match; local
69 match = usearch_first(srch, status);
70 while (match != USEARCH_DONE) {
71 match = usearch_next(srch, status);
76 int32_t match; local
78 match = usearch_last(srch, status);
79 while (match != USEARCH_DONE) {
80 match = usearch_previous(srch, status);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsetRecog_UTF8.java 22 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
25 CharsetMatch match(CharsetDetector det) { method in class:CharsetRecog_UTF8
  /external/iproute2/tipc/
cmdl.c 23 const struct cmd *match = NULL; local
28 if (match)
30 match = c;
33 return match;
39 struct opt *match = NULL; local
44 if (match)
47 match = o;
50 return match;
  /external/iptables/include/linux/netfilter/
xt_owner.h 15 __u8 match, invert; member in struct:xt_owner_match_info
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
StringSwitchJavacFilter.java 52 if (new Matcher().match(start, dflt)) {
58 boolean match(final AbstractInsnNode start, method in class:StringSwitchJavacFilter.Matcher
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_owner.h 16 __u8 match, invert; member in struct:xt_owner_match_info
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/internal/
RegexBasedMatcher.java 26 * proto message to match numbers.
41 // We don't want to consider it a prefix match when matching non-empty input against an empty
46 return match(number, regexCache.getPatternForRegex(nationalNumberPattern), allowPrefixMatch);
49 private static boolean match(CharSequence number, Pattern pattern, boolean allowPrefixMatch) { method in class:RegexBasedMatcher
  /external/mesa3d/src/glx/
clientinfo.c 88 char *match = strstr(haystack, "GLX_ARB_create_context"); local
90 if (match == NULL)
93 match += ext_length;
95 switch (match[0]) {
102 if (strncmp(match, "_profile", prof_length) == 0
103 && (match[prof_length] == '\0'
104 || match[prof_length] == ' ')) {
106 match += prof_length;
111 haystack = match;
glxglvnd.c 29 const char **match; local
31 match = bsearch(name, __glXDispatchTableStrings, DI_FUNCTION_COUNT,
34 if (match == NULL)
37 return match - __glXDispatchTableStrings;
  /external/mockito/src/main/java/org/mockito/internal/util/reflection/
GenericTypeExtractor.java 39 Class<?> match = rootClass; local
40 while(match != Object.class) {
42 if (match.getSuperclass() == targetBaseClass) {
43 return extractGeneric(match.getGenericSuperclass());
46 Type genericInterface = findGenericInterface(match, targetBaseInterface);
51 match = match.getSuperclass();
  /external/nist-sip/java/gov/nist/javax/sip/header/
ContentLength.java 144 public boolean match(Object other) {
143 public boolean match(Object other) { method in class:ContentLength
Event.java 128 * @param matchTarget -- event header to match against.
130 public boolean match(Event matchTarget) { method in class:Event
  /external/parameter-framework/upstream/test/functional-tests/include/
StoreLogger.hpp 78 Logs match(const std::string &pattern) const function in namespace:parameterFramework

Completed in 750 milliseconds

1 2 3 45 6 7 8 91011>>