/external/lohit-fonts/lohit-kannada-ttf/ |
66-lohit-kannada.conf | 4 <match> 14 </match> 15 <match target="font"> 22 </match>
|
/external/lohit-fonts/lohit-telugu-ttf/ |
66-lohit-telugu.conf | 4 <match> 14 </match> 15 <match target="font"> 22 </match>
|
/external/mesa3d/src/glsl/tests/ |
condition-04.glsl | 1 /* FAIL - type of second two operands must match */
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
perlstress-002.js | 45 * null match in Perl. Thus we set |expectedmatch| = |null| in each section. 79 actualmatch = string.match(pattern); 86 actualmatch = string.match(pattern); 93 actualmatch = string.match(pattern); 100 actualmatch = string.match(pattern); 107 actualmatch = string.match(pattern); 114 actualmatch = string.match(pattern); 121 actualmatch = string.match(pattern); 128 actualmatch = string.match(pattern); 135 actualmatch = string.match(pattern) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
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...] |
digit.js | 47 "'" + digits + "'.match(new RegExp('\\d+'))", 48 String([digits]), String(digits.match(new RegExp('\\d+')))); 52 "'" + non_digits + "'.match(new RegExp('\\D+'))", 53 String([non_digits]), String(non_digits.match(new RegExp('\\D+')))); 57 "'" + non_digits + "'.match(new RegExp('\\d'))", 58 null, non_digits.match(new RegExp('\\d'))); 62 "'" + digits + "'.match(new RegExp('\\D'))", 63 null, digits.match(new RegExp('\\D'))); 69 "'" + s + "'.match(new RegExp('\\d+'))", 70 String([digits]), String(s.match(new RegExp('\\d+')))) [all...] |
backslash.js | 41 // 'abcde'.match(new RegExp('\e')) 42 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('\e'))", 43 String(["e"]), String('abcde'.match(new RegExp('\e')))); 45 // 'ab\\cde'.match(new RegExp('\\\\')) 46 testcases[count++] = new TestCase ( SECTION, "'ab\\cde'.match(new RegExp('\\\\'))", 47 String(["\\"]), String('ab\\cde'.match(new RegExp('\\\\')))); 49 // 'ab\\cde'.match(/\\/) (using literal) 50 testcases[count++] = new TestCase ( SECTION, "'ab\\cde'.match(/\\\\/)", 51 String(["\\"]), String('ab\\cde'.match(/\\/))); 53 // 'before ^$*+?.()|{}[] after'.match(new 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...] |
RegExp_leftContext.js | 41 // 'abc123xyz'.match(/123/); RegExp.leftContext 42 'abc123xyz'.match(/123/); 43 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/123/); RegExp.leftContext", 46 // 'abc123xyz'.match(/456/); RegExp.leftContext 47 'abc123xyz'.match(/456/); 48 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/456/); RegExp.leftContext", 51 // 'abc123xyz'.match(/abc123xyz/); RegExp.leftContext 52 'abc123xyz'.match(/abc123xyz/); 53 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/abc123xyz/); RegExp.leftContext", 56 // 'xxxx'.match(/$/); RegExp.leftContex [all...] |
RegExp_leftContext_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_rightContext.js | 41 // 'abc123xyz'.match(/123/); RegExp.rightContext 42 'abc123xyz'.match(/123/); 43 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/123/); RegExp.rightContext", 46 // 'abc123xyz'.match(/456/); RegExp.rightContext 47 'abc123xyz'.match(/456/); 48 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/456/); RegExp.rightContext", 51 // 'abc123xyz'.match(/abc123xyz/); RegExp.rightContext 52 'abc123xyz'.match(/abc123xyz/); 53 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/abc123xyz/); RegExp.rightContext", 56 // 'xxxx'.match(/$/); RegExp.rightContex [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...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/ |
mappy_content_script.js | 19 if (child.textContent.match(re)) { 36 var match = re.exec(text); 37 if (match && match.length) { 38 console.log("found: " + match[0]); 40 return match[0].replace(trim, " "); 42 console.log("bad initial match: " + found.textContent); 43 console.log("no match in: " + text);
|
/external/chromium/sdch/ |
README.chromium | 3 changed to match the $host_cpu test in configure. 6 Mac, with VCDIFF_USE_BLOCK_COMPARE_WORDS manually changed to match the
|
/external/clang/test/Parser/ |
offsetof.c | 5 int a = __builtin_offsetof(struct a, x; // expected-error{{expected ')'}} expected-note{{to match this '('}} 7 int b = __builtin_offsetof(struct a, x->b); // expected-error{{expected ')'}} expected-note{{to match this '('}}
|
/external/iptables/extensions/ |
libxt_iprange.man | 4 Match source IP in the specified range. 7 Match destination IP in the specified range.
|
/external/iptables/include/linux/netfilter/ |
xt_iprange.h | 7 IPRANGE_SRC = 1 << 0, /* match source IP address */ 8 IPRANGE_DST = 1 << 1, /* match destination IP address */
|
/external/kernel-headers/original/linux/netfilter_ipv4/ |
ipt_iprange.h | 4 #define IPRANGE_SRC 0x01 /* Match source IP address */ 5 #define IPRANGE_DST 0x02 /* Match destination IP address */
|
ipt_owner.h | 4 /* match and invert flags */ 17 u_int8_t match, invert; /* flags */ member in struct:ipt_owner_info
|
/external/llvm/test/Verifier/ |
2002-04-13-RetTypes.ll | 1 ; RUN: not llvm-as < %s 2>&1 | grep "value doesn't match function result type 'i32'" 3 ; Verify the operand type of the ret instructions in a function match the
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/ |
ipt_iprange.h | 6 #define IPRANGE_SRC 0x01 /* Match source IP address */ 7 #define IPRANGE_DST 0x02 /* Match destination IP address */
|
ipt_owner.h | 4 /* match and invert flags */ 17 u_int8_t match, invert; /* flags */ member in struct:ipt_owner_info
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/ |
ipt_iprange.h | 6 #define IPRANGE_SRC 0x01 /* Match source IP address */ 7 #define IPRANGE_DST 0x02 /* Match destination IP address */
|
ipt_owner.h | 4 /* match and invert flags */ 17 u_int8_t match, invert; /* flags */ member in struct:ipt_owner_info
|