/dalvik/libcore/security/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/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...] |
question_mark.js | 41 // 'abcdef'.match(new RegExp('cd?e')) 42 testcases[count++] = new TestCase ( SECTION, "'abcdef'.match(new RegExp('cd?e'))", 43 String(["cde"]), String('abcdef'.match(new RegExp('cd?e')))); 45 // 'abcdef'.match(new RegExp('cdx?e')) 46 testcases[count++] = new TestCase ( SECTION, "'abcdef'.match(new RegExp('cdx?e'))", 47 String(["cde"]), String('abcdef'.match(new RegExp('cdx?e')))); 49 // 'pqrstuvw'.match(new RegExp('o?pqrst')) 50 testcases[count++] = new TestCase ( SECTION, "'pqrstuvw'.match(new RegExp('o?pqrst'))", 51 String(["pqrst"]), String('pqrstuvw'.match(new RegExp('o?pqrst')))); 53 // 'abcd'.match(new RegExp('x?y?z?') [all...] |
dot.js | 41 // 'abcde'.match(new RegExp('ab.de')) 42 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('ab.de'))", 43 String(["abcde"]), String('abcde'.match(new RegExp('ab.de')))); 45 // 'line 1\nline 2'.match(new RegExp('.+')) 46 testcases[count++] = new TestCase ( SECTION, "'line 1\nline 2'.match(new RegExp('.+'))", 47 String(["line 1"]), String('line 1\nline 2'.match(new RegExp('.+')))); 49 // 'this is a test'.match(new RegExp('.*a.*')) 50 testcases[count++] = new TestCase ( SECTION, "'this is a test'.match(new RegExp('.*a.*'))", 51 String(["this is a test"]), String('this is a test'.match(new RegExp('.*a.*')))); 53 // 'this is a *&^%$# test'.match(new RegExp('.+') [all...] |
flags.js | 42 testcases[count++] = new TestCase ( SECTION, "'aBCdEfGHijKLmno'.match(/fghijk/i)", 43 String(["fGHijK"]), String('aBCdEfGHijKLmno'.match(/fghijk/i))); 45 testcases[count++] = new TestCase ( SECTION, "'aBCdEfGHijKLmno'.match(new RegExp('fghijk','i'))", 46 String(["fGHijK"]), String('aBCdEfGHijKLmno'.match(new RegExp("fghijk","i")))); 49 testcases[count++] = new TestCase ( SECTION, "'xa xb xc xd xe xf'.match(/x./g)", 50 String(["xa","xb","xc","xd","xe","xf"]), String('xa xb xc xd xe xf'.match(/x./g))); 52 testcases[count++] = new TestCase ( SECTION, "'xa xb xc xd xe xf'.match(new RegExp('x.','g'))", 53 String(["xa","xb","xc","xd","xe","xf"]), String('xa xb xc xd xe xf'.match(new RegExp('x.','g')))); 56 testcases[count++] = new TestCase ( SECTION, "'xa Xb xc xd Xe xf'.match(/x./gi)", 57 String(["xa","Xb","xc","xd","Xe","xf"]), String('xa Xb xc xd Xe xf'.match(/x./gi))) [all...] |
plus.js | 41 // 'abcdddddefg'.match(new RegExp('d+')) 42 testcases[count++] = new TestCase ( SECTION, "'abcdddddefg'.match(new RegExp('d+'))", 43 String(["ddddd"]), String('abcdddddefg'.match(new RegExp('d+')))); 45 // 'abcdefg'.match(new RegExp('o+')) 46 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('o+'))", 47 null, 'abcdefg'.match(new RegExp('o+'))); 49 // 'abcdefg'.match(new RegExp('d+')) 50 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('d+'))", 51 String(['d']), String('abcdefg'.match(new RegExp('d+')))); 53 // 'abbbbbbbc'.match(new RegExp('(b+)(b+)(b+)') [all...] |
special_characters.js | 42 testcases[count++] = new TestCase ( SECTION, "'^abcdefghi'.match(/\^abc/)", String(["^abc"]), String('^abcdefghi'.match(/\^abc/))); 45 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/^abc/)", String(["abc"]), String('abcdefghi'.match(/^abc/))); 48 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/fghi$/)", String(["ghi"]), String('abcdefghi'.match(/ghi$/))); 51 testcases[count++] = new TestCase ( SECTION, "'eeeefghi'.match(/e*/)", String(["eeee"]), String('eeeefghi'.match(/e*/))); 54 testcases[count++] = new TestCase ( SECTION, "'abcdeeeefghi'.match(/e+/)", String(["eeee"]), String('abcdeeeefghi'.match(/e+/))) [all...] |
/external/clearsilver/python/examples/base/ |
sgmllib.py | 116 match = interesting.search(rawdata, i) 117 if match: j = match.start(0) 123 if starttagopen.match(rawdata, i): 132 if endtagopen.match(rawdata, i): 138 if commentopen.match(rawdata, i): 147 match = special.match(rawdata, i) 148 if match: 153 i = match.end(0 [all...] |
/external/webkit/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...] |
/build/tools/soslim/ |
common.c | 6 section_match_fn_t match, 11 if (match(elf, section, user_data)) 17 segment_match_fn_t match, 31 if (match(elf, phdr++, user_data))
|
/external/elfcopy/ |
common.c | 6 section_match_fn_t match, 11 if (match(elf, section, user_data)) 17 segment_match_fn_t match, 31 if (match(elf, phdr++, user_data))
|
/external/icu4c/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);
|
/ndk/build/awk/ |
extract-platform.awk | 33 if (match($0,android_regex)) { 36 else if (match($0,vendor_regex)) {
|
/external/webkit/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...] |
/external/opencore/codecs_v2/video/m4v_h263/enc/src/ |
vlc_encode_inline.h | 26 UInt end, match; local 31 match = 1 << 31; 37 while (match >= end) 39 if ((match&bitmapzz[0]) == 0) 43 match >>= 1; 47 match >>= 1; 72 match = 1 << 31; 74 while (match >= end) 76 if ((match&bitmapzz[1]) == 0) 80 match >>= 1 117 UInt end, match; local 125 ldr match, [bitmapzz] local 137 bic match, match, end \/* remove it from bitmap *\/ local 168 ldr match, [bitmapzz, #4] local 178 bic match, match, end \/* remove it from bitmap *\/ local 231 UInt end = 0, match; local [all...] |