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

1234567891011>>

/external/v8/test/webkit/fast/js/
H A Dregexp-lastindex.js30 var match; variable
31 shouldBe('while (match = re.exec(" abcdefg")) accumulate += match + "; "; accumulate', '"abcdefg; "');
35 shouldBe('while (match = re.exec("123456789")) accumulate += match + "; "; accumulate', '"1; 2; 3; 4; 5; 6; 7; 8; 9; "');
/external/v8/tools/gyp/test/mac/
H A Dgyptest-objc-arc.py16 # set |match| to ignore build stderr output.
18 match = lambda a, b: True) variable
H A Dgyptest-app-error.py22 def match(a, b): function
33 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'], match=match)
H A Dgyptest-ldflags-passed-to-libtool.py20 match = lambda a, b: True) variable
H A Dgyptest-objc-gc.py17 # set |match| to ignore build stderr output.
19 match = lambda a, b: True) variable
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DSelector.java15 * @return true if the object is a match for this selector, false otherwise.
17 boolean match(T obj); method in interface:Selector
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCharsetRecog_UTF8.java20 * @see android.icu.text.CharsetRecognizer#match(android.icu.text.CharsetDetector)
22 CharsetMatch match(CharsetDetector det) { method in class:CharsetRecog_UTF8
H A DCharsetRecognizer.java20 * state pertaining to a specific match or detect operation.
41 * Test the match of this charset with the input text data
46 * @return A CharsetMatch object containing details of match
47 * with this charset, or null if there was no match.
49 abstract CharsetMatch match(CharsetDetector det); method in class:CharsetRecognizer
/external/iproute2/tc/
H A Demp_ematch.y31 %type <e> match expr
48 match
50 | match relation expr
58 match: label
/external/libcxx/utils/sym_check/
H A Dsym_match.py7 from sym_check import util, match, extract namespace
34 matching_count, report = match.find_and_report_matching(
/external/nist-sip/java/gov/nist/core/
H A DMatch.java39 /** Return true if a match occurs for searchString.
40 * This is used for pattern matching in the find and replace and match
45 public boolean match(String searchString); method in interface:Match
/external/v8/tools/gyp/test/msvs/buildevents/
H A Dgyptest-ninja-warnings.py22 match=TestCmd.match_re_dotall) variable
27 match=TestCmd.match_re_dotall) variable
/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.java22 public boolean match(Object obj) method in class:X509CertStoreSelector
31 return super.match(other);
34 public boolean match(Certificate cert) method in class:X509CertStoreSelector
36 return match((Object)cert);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetRecog_UTF8.java19 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
21 CharsetMatch match(CharsetDetector det) { method in class:CharsetRecog_UTF8
H A DCharsetRecognizer.java19 * state pertaining to a specific match or detect operation.
40 * Test the match of this charset with the input text data
45 * @return A CharsetMatch object containing details of match
46 * with this charset, or null if there was no match.
48 abstract CharsetMatch match(CharsetDetector det); method in class:CharsetRecognizer
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/match/
H A DSourceMatcher.java16 package com.google.currysrc.api.match;
H A DSourceMatchers.java16 package com.google.currysrc.api.match;
34 return "{match all}";
H A DTypeName.java16 package com.google.currysrc.api.match;
/external/v8/tools/gyp/test/errors/
H A Dgyptest-errors.py26 match=TestCmd.match_re) variable
30 match=TestCmd.match_re_dotall) variable
35 match=TestCmd.match_re) variable
40 match=TestCmd.match_re_dotall) variable
44 match=TestCmd.match_re_dotall) variable
48 match=TestCmd.match_re_dotall) variable
66 match=TestCmd.match_re) variable
72 match=TestCmd.match_re_dotall) variable
78 match=TestCmd.match_re_dotall) variable
/external/v8/tools/gyp/test/msvs/multiple_actions_error_handling/
H A Dgyptest.py24 match=TestCmd.match_re_dotall) variable
/external/valgrind/none/tests/s390x/
H A Dstfle.c9 unsigned long long hoststfle[S390_NUM_FACILITY_DW], match; local
20 match = (hoststfle[0] & (1ULL << (63 - bit_to_test)));
22 match = (hoststfle[1] & (1ULL << (63 - bit_to_test)));
26 return match;
H A Dtcxb.c7 int match; local
12 : "=d" (match)
15 return match;
20 int match; local
25 : "=d" (match)
28 return match;
33 int match; local
38 : "=d" (match)
41 return match;
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DLexer.as32 * uses simplified match() and error recovery mechanisms in the interest
62 /** Return a token from this source; i.e., match a token on the char
92 // match() routine has already called recover()
177 public function match(c:int):void { function
258 msg = "required (...)+ loop did not match anything at character "+getCharErrorDisplay(e.c);
298 /** Lexers can normally match any char in it's vocabulary after matching
/external/apache-http/src/org/apache/http/cookie/
H A DCookieAttributeHandler.java77 * @param cookie {@link org.apache.http.cookie.Cookie} to match
78 * @param origin the cookie source to match against
79 * @return <tt>true</tt> if the match is successful; <tt>false</tt> otherwise
81 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieAttributeHandler

Completed in 2558 milliseconds

1234567891011>>