/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
|
/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/webkit/Source/ThirdParty/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/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
interval.js | 41 // 'aaabbbbcccddeeeefffff'.match(new RegExp('b{2}c')) 42 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2}c'))", 43 String(["bbc"]), String('aaabbbbcccddeeeefffff'.match(new RegExp('b{2}c')))); 45 // 'aaabbbbcccddeeeefffff'.match(new RegExp('b{8}')) 46 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{8}'))", 47 null, 'aaabbbbcccddeeeefffff'.match(new RegExp('b{8}'))); 49 // 'aaabbbbcccddeeeefffff'.match(new RegExp('b{2,}c')) 50 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2,}c'))", 51 String(["bbbbc"]), String('aaabbbbcccddeeeefffff'.match(new RegExp('b{2,}c')))); 53 // 'aaabbbbcccddeeeefffff'.match(new RegExp('b{8,}c') [all...] |
RegExp_rightContext_as_array.js | 41 // 'abc123xyz'.match(/123/); RegExp['$\''] 42 'abc123xyz'.match(/123/); 43 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/123/); RegExp['$\'']", 46 // 'abc123xyz'.match(/456/); RegExp['$\''] 47 'abc123xyz'.match(/456/); 48 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/456/); RegExp['$\'']", 51 // 'abc123xyz'.match(/abc123xyz/); RegExp['$\''] 52 'abc123xyz'.match(/abc123xyz/); 53 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/abc123xyz/); RegExp['$\'']", 56 // 'xxxx'.match(/$/); RegExp['$\'' [all...] |
RegExp_multiline.js | 47 // (multiline == false) '123\n456'.match(/^4../) 48 testcases[count++] = new TestCase ( SECTION, "(multiline == false) '123\\n456'.match(/^4../)", 49 null, '123\n456'.match(/^4../)); 51 // (multiline == false) 'a11\na22\na23\na24'.match(/^a../g) 52 testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'a11\\na22\\na23\\na24'.match(/^a../g)", 53 String(['a11']), String('a11\na22\na23\na24'.match(/^a../g))); 55 // (multiline == false) 'a11\na22'.match(/^.+^./) 56 testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'a11\na22'.match(/^.+^./)", 57 null, 'a11\na22'.match(/^.+^./)); 59 // (multiline == false) '123\n456'.match(/.3$/ [all...] |
RegExp_multiline_as_array.js | 47 // (['$*'] == false) '123\n456'.match(/^4../) 48 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) '123\\n456'.match(/^4../)", 49 null, '123\n456'.match(/^4../)); 51 // (['$*'] == false) 'a11\na22\na23\na24'.match(/^a../g) 52 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(/^a../g)", 53 String(['a11']), String('a11\na22\na23\na24'.match(/^a../g))); 55 // (['$*'] == false) 'a11\na22'.match(/^.+^./) 56 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\na22'.match(/^.+^./)", 57 null, 'a11\na22'.match(/^.+^./)); 59 // (['$*'] == false) '123\n456'.match(/.3$/ [all...] |
character_class.js | 41 // 'abcde'.match(new RegExp('ab[ercst]de')) 42 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('ab[ercst]de'))", 43 String(["abcde"]), String('abcde'.match(new RegExp('ab[ercst]de')))); 45 // 'abcde'.match(new RegExp('ab[erst]de')) 46 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('ab[erst]de'))", 47 null, 'abcde'.match(new RegExp('ab[erst]de'))); 49 // 'abcdefghijkl'.match(new RegExp('[d-h]+')) 50 testcases[count++] = new TestCase ( SECTION, "'abcdefghijkl'.match(new RegExp('[d-h]+'))", 51 String(["defgh"]), String('abcdefghijkl'.match(new RegExp('[d-h]+')))); 53 // 'abc6defghijkl'.match(new RegExp('[1234567].{2}') [all...] |
parentheses.js | 41 // 'abc'.match(new RegExp('(abc)')) 42 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('(abc)'))", 43 String(["abc","abc"]), String('abc'.match(new RegExp('(abc)')))); 45 // 'abcdefg'.match(new RegExp('a(bc)d(ef)g')) 46 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('a(bc)d(ef)g'))", 47 String(["abcdefg","bc","ef"]), String('abcdefg'.match(new RegExp('a(bc)d(ef)g')))); 49 // 'abcdefg'.match(new RegExp('(.{3})(.{4})')) 50 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('(.{3})(.{4})'))", 51 String(["abcdefg","abc","defg"]), String('abcdefg'.match(new RegExp('(.{3})(.{4})')))); 53 // 'aabcdaabcd'.match(new RegExp('(aa)bcd\1') [all...] |
asterisk.js | 41 // 'abcddddefg'.match(new RegExp('d*')) 42 testcases[count++] = new TestCase ( SECTION, "'abcddddefg'.match(new RegExp('d*'))", 43 String([""]), String('abcddddefg'.match(new RegExp('d*')))); 45 // 'abcddddefg'.match(new RegExp('cd*')) 46 testcases[count++] = new TestCase ( SECTION, "'abcddddefg'.match(new RegExp('cd*'))", 47 String(["cdddd"]), String('abcddddefg'.match(new RegExp('cd*')))); 49 // 'abcdefg'.match(new RegExp('cx*d')) 50 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('cx*d'))", 51 String(["cd"]), String('abcdefg'.match(new RegExp('cx*d')))); 53 // 'xxxxxxx'.match(new RegExp('(x*)(x+)') [all...] |
RegExp_lastParen_as_array.js | 41 // 'abcd'.match(/(abc)d/); RegExp['$+'] 42 'abcd'.match(/(abc)d/); 43 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(abc)d/); RegExp['$+']", 46 // 'abcd'.match(/(bcd)e/); RegExp['$+'] 47 'abcd'.match(/(bcd)e/); 48 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(bcd)e/); RegExp['$+']", 51 // 'abcdefg'.match(/(a(b(c(d)e)f)g)/); RegExp['$+'] 52 'abcdefg'.match(/(a(b(c(d)e)f)g)/); 53 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(a(b(c(d)e)f)g)/); RegExp['$+']", 56 // 'abcdefg'.match(new RegExp('(a(b(c(d)e)f)g)')); RegExp['$+' [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/ |
match-004.js | 2 * File Name: String/match-004.js 11 * String.match( regexp ) 20 * RegExp.prototype.exec repeatedly until there is no match. If there is a 21 * match with an empty string (in other words, if the value of 27 * Note that the match function is intentionally generic; it does not 32 * The match function should be intentionally generic, and not require 37 var SECTION = "String/match-004.js"; 39 var TITLE = "String.prototype.match( regexp )"; 49 Number.prototype.match = String.prototype.match; [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/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;
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
fonts.conf | 5 <match target="font"> 7 </match> 9 <match target="pattern"> 16 </match> 18 <match target="pattern"> 25 </match> 27 <match target="pattern"> 34 </match> 38 <match target="pattern"> 45 </match> [all...] |
/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)) {
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-100199.js | 51 actualmatch = string.match(pattern); 57 actualmatch = string.match(pattern); 63 actualmatch = string.match(pattern); 69 actualmatch = string.match(pattern); 75 actualmatch = string.match(pattern); 81 actualmatch = string.match(pattern); 87 actualmatch = string.match(pattern); 93 actualmatch = string.match(pattern); 99 actualmatch = string.match(pattern); 107 actualmatch = string.match(pattern) [all...] |