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

1234567891011>>

/external/chromium_org/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/chromium_org/third_party/angle/src/compiler/translator/
H A DSearchSymbol.h29 bool match; member in class:sh::SearchSymbol
/external/chromium_org/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.py19 def match(a, b): function
30 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'], match=match)
H A Dgyptest-ldflags-passed-to-libtool.py17 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/oprofile/libutil++/
H A Dglob_filter.cpp27 bool glob_filter::match(string const & str) const function in class:glob_filter
H A Dpath_filter.cpp22 bool path_filter::match(string const & str) const function in class:path_filter
H A Dstring_filter.cpp37 bool string_filter::match(string const & str) const function in class:string_filter
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/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DSelector.java6 boolean match(Object obj); method in interface:Selector
/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/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
58 match=TestCmd.match_re) variable
/external/chromium_org/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/iproute2/tc/
H A Demp_ematch.y31 %type <e> match expr
48 match
50 | match relation expr
58 match: label
/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/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_org/build/toolchain/
H A Dget_concurrent_links.py46 match = memtotal_re.match(line) variable in class:GetDefaultConcurrentLinks.MEMORYSTATUSEX
47 if not match:
50 return max(1, int(match.group(1)) / (8 * (2 ** 20)))
/external/chromium_org/tools/gyp/test/msvs/multiple_actions_error_handling/
H A Dgyptest.py24 match=TestCmd.match_re_dotall) variable
/external/oprofile/libpp/
H A Dfilename_spec.cpp35 bool filename_spec::match(filename_spec const & rhs, function in class:filename_spec
38 if (!tid.match(rhs.tid) || !cpu.match(rhs.cpu) ||
39 !tgid.match(rhs.tgid) || count != rhs.count ||
47 // PP:3.3 if binary is not empty we must match either the
/external/valgrind/main/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

Completed in 2868 milliseconds

1234567891011>>