/external/nist-sip/java/gov/nist/core/ |
Match.java | 28 /** Match template for pattern matching. 38 public interface Match { 39 /** 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/chromium_org/v8/test/webkit/ |
regexp-zero-length-alternatives.js | 25 'Test regular expression processing with alternatives that match consuming no characters' 39 shouldBe('emptyStr.match(re1)', '[""]'); 40 shouldBe('s1.match(re1)', '[""]'); 41 shouldBe('s2.match(re1)', '["aaaa"]'); 42 shouldBe('s3.match(re1)', '["aa"]'); 46 shouldBe('emptyStr.match(re2)', '[""]'); 47 shouldBe('s1.match(re2)', '[""]'); 48 shouldBe('s2.match(re2)', '["aaaa"]'); 49 shouldBe('s3.match(re2)', '["aa"]'); 53 shouldBe('emptyStr.match(re3)', '[""]') [all...] |
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
bug-regex8.c | 38 int match[4]; local 49 match[0] = re_match_2(®ex,"xyz",3,NULL,0,0,NULL,2); 61 match[1] = re_search_2(®ex,"xyz",3,NULL,0,0,2,NULL,2); 74 match[2] = re_match_2(®ex,"xy ",4,NULL,0,0,NULL,3); 75 match[3] = re_match_2(®ex,"xy z",4,NULL,0,0,NULL,3); 78 if (match[0] != -1 || match[1] != -1 || match[2] != -1 || match[3] != 3) 80 printf ("re_{match,search}_2 returned %d,%d,%d,%d, expected -1,-1,-1,3\n" [all...] |
bug-regex10.c | 36 int match; local 49 match = re_match (®ex, "foacabdxy", 9, 2, ®s); 50 if (match != 5) 52 printf ("re_match returned %d, expected 5\n", match);
|
/frameworks/compile/libbcc/tools/build/ |
gen-config-from-mk.py | 36 if conf_patt.match(line.strip()): 42 if split_patt.match(line.strip()): 48 match = var_patt.match(line.strip()) 49 if match: 50 print '#define', match.group(1), match.group(2) 52 elif split_patt.match(line.strip()):
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
Selector.java | 6 boolean match(Object obj); method in interface:Selector
|
/libcore/luni/src/main/java/java/security/cert/ |
CRLSelector.java | 40 * Checks whether the defined criteria of this instance match the specified 48 public boolean match(CRL crl); method in interface:CRLSelector
|
CertSelector.java | 40 * Checks whether the defined criteria of this instance match the specified 48 public boolean match(Certificate cert); method in interface:CertSelector
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/config/ |
urls.py | 79 match = re.search(bug_url_short, string) 80 if match: 81 return int(match.group('bug_id')) 82 match = re.search(bug_url_long, string) 83 if match: 84 return int(match.group('bug_id')) 91 match = re.search(attachment_url, string) 92 if match: 93 return int(match.group('attachment_id')) 94 match = re.search(direct_attachment_url, string [all...] |
/external/chromium_org/third_party/angle/src/compiler/ |
SearchSymbol.cpp | 18 match = false; 30 match = true; 36 return match;
|
/frameworks/base/tools/aapt/ |
ResourceFilter.h | 22 bool match(int axis, uint32_t value) const; 23 bool match(int axis, const ResTable_config& config) const; 24 bool match(const ResTable_config& config) const;
|
/external/chromium_org/tools/gyp/test/errors/ |
gyptest-errors.py | 23 match=TestCmd.match_re) variable 27 match=TestCmd.match_re_dotall) variable 32 match=TestCmd.match_re) variable 37 match=TestCmd.match_re_dotall) variable 45 match=TestCmd.match_re) variable
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
coffeescript.js | 65 if (stream.match("####")) { 71 if (stream.match("###")) { 83 if (stream.match(/^-?[0-9\.]/, false)) { 86 if (stream.match(/^-?\d*\.\d+(e[\+\-]?\d+)?/i)) { 89 if (stream.match(/^-?\d+\.\d*/)) { 92 if (stream.match(/^-?\.\d+/)) { 106 if (stream.match(/^-?0x[0-9a-f]+/i)) { 110 if (stream.match(/^-?[1-9]\d*(e[\+\-]?\d+)?/)) { 114 if (stream.match(/^-?0(?![\dx])/i)) { 123 if (stream.match(stringPrefixes)) [all...] |
/external/elfutils/libdw/ |
dwarf_getsrc_file.c | 74 Dwarf_Line **match = *nsrcs == 0 ? NULL : *srcsp; local 95 no match is performed. */ 111 /* Match the name with the name the user provided. */ 121 /* See whether line and possibly column match. */ 125 /* Cannot match. */ 128 /* Determine whether this is the best match so far. */ 131 if (match[inner]->files == line->files 132 && match[inner]->file == line->file) 135 && (match[inner]->line != line->line 136 || match[inner]->line != linen [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
csrecog.h | 34 virtual int32_t match(InputText *textIn) = 0;
|
csrutf8.h | 33 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector) 35 int32_t match(InputText *det);
|
/external/qemu/ |
acl.h | 34 char *match; member in struct:qemu_acl_entry 58 const char *match); 61 const char *match, 64 const char *match);
|
/external/valgrind/main/none/tests/s390x/ |
stfle.c | 9 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;
|
/libcore/luni/src/test/java/libcore/java/security/cert/ |
X509CertSelectorTest.java | 35 byte[] match = { 127, 0, 0, 1 }; 36 assertTrue(certSelector.match(newCertWithSubjectAltNameIpAddress(match))); 39 assertFalse(certSelector.match(newCertWithSubjectAltNameIpAddress(noMatch))); 46 byte[] match = { 127, 0, 0, 1 }; 47 assertTrue(certSelector.match(newCertWithSubjectAltNameIpAddress(match))); 50 assertFalse(certSelector.match(newCertWithSubjectAltNameIpAddress(noMatch))); 58 byte[] match = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 }; 59 assertTrue(certSelector.match(newCertWithSubjectAltNameIpAddress(match))) [all...] |
/ndk/build/awk/ |
extract-platform.awk | 33 if (match($0,android_regex)) { 36 else if (match($0,vendor_regex)) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/myfixes/ |
fix_explicit.py | 6 def match(self): return False member in class:FixExplicit
|
fix_first.py | 6 def match(self, node): return False member in class:FixFirst
|
fix_last.py | 7 def match(self, node): return False member in class:FixLast
|
fix_preorder.py | 6 def match(self, node): return False member in class:FixPreorder
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/myfixes/ |
fix_explicit.py | 6 def match(self): return False member in class:FixExplicit
|