Searched refs:match (Results 276 - 300 of 2033) sorted by relevance

<<11121314151617181920>>

/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DSIPETagParser.java76 this.lexer.match(TokenTypes.ID);
82 this.lexer.match('\n');
H A DSIPIfMatchParser.java76 this.lexer.match(TokenTypes.ID);
82 this.lexer.match('\n');
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/
H A DPCalledPartyIDParser.java73 this.lexer.match(TokenTypes.P_CALLED_PARTY_ID);
75 this.lexer.match(':');
H A DPPreferredIdentityParser.java69 this.lexer.match(TokenTypes.P_PREFERRED_IDENTITY);
71 this.lexer.match(':');
H A DPProfileKeyParser.java56 this.lexer.match(TokenTypes.P_PROFILE_KEY);
58 this.lexer.match(':');
/external/oprofile/libutil++/
H A Dgeneric_spec.h3 * Container holding an item or a special "match all" item
31 * build a default spec which match anything
52 /// return true if rhs match this spec. Sub part of PP:3.24
53 bool match(T const & rhs) const { function in class:generic_spec
57 /// return true if rhs match this spec. Sub part of PP:3.24
58 bool match(generic_spec<T> const & rhs) const { function in class:generic_spec
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DUriMatcherTest.java67 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(1));
70 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar/1")), is(2));
73 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(1));
74 assertThat(matcher.match(Uri.withAppendedPath(URI, "cat")), is(3));
77 assertThat(matcher.match(Uri.withAppendedPath(URI, "transport/land/45/type")), is(4));
82 assertThat(matcher.match(Uri.withAppendedPath(URI, "cat")), is(NO_MATCH));
83 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(NO_MATCH));
84 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar/cat")), is(NO_MATCH));
/external/zopfli/src/zopfli/
H A Dlz77.c111 Finds how long the match of scan and match is. Can be used to find how many
112 bytes starting from scan, and from match, are equal. Returns the last byte
113 after scan, which is still equal to the correspondinb byte after match.
115 match is the earlier position to compare.
120 const unsigned char* match,
126 while (scan < safe_end && *((size_t*)scan) == *((size_t*)match)) {
128 match += 8;
133 && *((unsigned int*)scan) == *((unsigned int*)match)) {
135 match
119 GetMatch(const unsigned char* scan, const unsigned char* match, const unsigned char* end, const unsigned char* safe_end) argument
237 const unsigned char* match; local
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Ducsdetst.c127 const UCharsetMatch *match; local
139 match = ucsdet_detect(csd, &status);
141 if (match == NULL) {
146 dLength = ucsdet_getUChars(match, detected, sLength, &status);
173 const UCharsetMatch *match; local
178 match = ucsdet_detect(csd, &status);
180 if (match == NULL) {
185 name = ucsdet_getName(match, &status);
186 conf = ucsdet_getConfidence(match, &status);
198 match
236 const UCharsetMatch *match; local
289 const UCharsetMatch *match; local
394 const UCharsetMatch *match; local
479 const UCharsetMatch *match; local
557 const UCharsetMatch *match; local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Ducsdetst.c127 const UCharsetMatch *match; local
139 match = ucsdet_detect(csd, &status);
141 if (match == NULL) {
146 dLength = ucsdet_getUChars(match, detected, sLength, &status);
173 const UCharsetMatch *match; local
178 match = ucsdet_detect(csd, &status);
180 if (match == NULL) {
185 name = ucsdet_getName(match, &status);
186 conf = ucsdet_getConfidence(match, &status);
198 match
236 const UCharsetMatch *match; local
289 const UCharsetMatch *match; local
394 const UCharsetMatch *match; local
479 const UCharsetMatch *match; local
557 const UCharsetMatch *match; local
[all...]
/external/apache-http/src/org/apache/http/cookie/
H A DCookieSpec.java102 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieSpec
/external/apache-http/src/org/apache/http/impl/cookie/
H A DAbstractCookieAttributeHandler.java51 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:AbstractCookieAttributeHandler
52 // Always match
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509CertStoreSelector.java21 public boolean match(Object obj) method in class:X509CertStoreSelector
30 return super.match(other);
33 public boolean match(Certificate cert) method in class:X509CertStoreSelector
35 return match((Object)cert);
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dfiletestcase.py80 match = self._EXPECTED_RE.search(line)
81 if match:
82 line = match.group('line')
83 msg_ids = match.group('msgs')
/external/chromium_org/chrome/browser/ui/omnibox/
H A Dalternate_nav_infobar_delegate.cc28 const AutocompleteMatch& match,
35 match, search_url))));
41 const AutocompleteMatch& match,
46 match_(match),
25 Create( content::WebContents* web_contents, const base::string16& text, const AutocompleteMatch& match, const GURL& search_url) argument
38 AlternateNavInfoBarDelegate( Profile* profile, const base::string16& text, const AutocompleteMatch& match, const GURL& search_url) argument
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/formatter/
H A Dfix_double_quote_strings.py23 def match(self, node): member in class:FixDoubleQuoteStrings
H A Dfix_single_quote_strings.py23 def match(self, node): member in class:FixSingleQuoteStrings
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
H A DPrettyPatch_test.rb72 matches = pretty.match("INVALID: Image lacks a checksum.")
73 # FIXME: This should match, but there's a bug when running the tests where the image data
83 matches = pretty.match("INVALID: Image lacks a checksum.")
89 matches = pretty.match("INVALID: Image lacks a checksum.")
95 matches = pretty.match("INVALID: Image lacks a checksum.")
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Dfiletestcase.py79 match = self._EXPECTED_RE.search(line)
80 if match:
81 line = match.group('line')
82 msg_ids = match.group('msgs')
/external/chromium_org/third_party/skia/src/animator/
H A DSkExtras.h28 virtual SkDisplayTypes getType(const char match[], size_t len ) = 0;
/external/chromium_org/third_party/skia/tools/flags/
H A DSkCommonFlags.h19 DECLARE_string(match); variable
/external/chromium_org/tools/gyp/test/lib/
H A DTestMac.py24 match = pattern.match(o)
25 if match is None:
26 print 'Ouput does not match expected pattern: %s' % (pattern.pattern)
29 found_file, found_archs = match.groups()
/external/chromium_org/tools/gyp/test/variables/commands/
H A Dgyptest-commands-repeated.py33 if not test.match(contents, expect):
H A Dgyptest-commands.py34 if not test.match(contents, expect):
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dextension_page.py11 return re.match(r"(chrome-extension://)([^/]+)", url).group(2)

Completed in 831 milliseconds

<<11121314151617181920>>