Lines Matching refs:testCode

29 PASS ''.split() is testCode[i][1]
30 PASS ''.split(/./) is testCode[i][1]
31 PASS ''.split(/.?/) is testCode[i][1]
32 PASS ''.split(/.??/) is testCode[i][1]
33 PASS 'ab'.split(/a*/) is testCode[i][1]
34 PASS 'ab'.split(/a*?/) is testCode[i][1]
35 PASS 'ab'.split(/(?:ab)/) is testCode[i][1]
36 PASS 'ab'.split(/(?:ab)*/) is testCode[i][1]
37 PASS 'ab'.split(/(?:ab)*?/) is testCode[i][1]
38 PASS 'test'.split('') is testCode[i][1]
39 PASS 'test'.split() is testCode[i][1]
40 PASS '111'.split(1) is testCode[i][1]
41 PASS 'test'.split(/(?:)/, 2) is testCode[i][1]
42 PASS 'test'.split(/(?:)/, -1) is testCode[i][1]
43 PASS 'test'.split(/(?:)/, undefined) is testCode[i][1]
44 PASS 'test'.split(/(?:)/, null) is testCode[i][1]
45 PASS 'test'.split(/(?:)/, NaN) is testCode[i][1]
46 PASS 'test'.split(/(?:)/, true) is testCode[i][1]
47 PASS 'test'.split(/(?:)/, '2') is testCode[i][1]
48 PASS 'test'.split(/(?:)/, 'two') is testCode[i][1]
49 PASS 'a'.split(/-/) is testCode[i][1]
50 PASS 'a'.split(/-?/) is testCode[i][1]
51 PASS 'a'.split(/-??/) is testCode[i][1]
52 PASS 'a'.split(/a/) is testCode[i][1]
53 PASS 'a'.split(/a?/) is testCode[i][1]
54 PASS 'a'.split(/a??/) is testCode[i][1]
55 PASS 'ab'.split(/-/) is testCode[i][1]
56 PASS 'ab'.split(/-?/) is testCode[i][1]
57 PASS 'ab'.split(/-??/) is testCode[i][1]
58 PASS 'a-b'.split(/-/) is testCode[i][1]
59 PASS 'a-b'.split(/-?/) is testCode[i][1]
60 PASS 'a-b'.split(/-??/) is testCode[i][1]
61 PASS 'a--b'.split(/-/) is testCode[i][1]
62 PASS 'a--b'.split(/-?/) is testCode[i][1]
63 PASS 'a--b'.split(/-??/) is testCode[i][1]
64 PASS ''.split(/()()/) is testCode[i][1]
65 PASS '.'.split(/()()/) is testCode[i][1]
66 PASS '.'.split(/(.?)(.?)/) is testCode[i][1]
67 PASS '.'.split(/(.??)(.??)/) is testCode[i][1]
68 PASS '.'.split(/(.)?(.)?/) is testCode[i][1]
69 PASS 'A<B>bold</B>and<CODE>coded</CODE>'.split(ecmaSampleRe) is testCode[i][1]
70 PASS 'tesst'.split(/(s)*/) is testCode[i][1]
71 PASS 'tesst'.split(/(s)*?/) is testCode[i][1]
72 PASS 'tesst'.split(/(s*)/) is testCode[i][1]
73 PASS 'tesst'.split(/(s*?)/) is testCode[i][1]
74 PASS 'tesst'.split(/(?:s)*/) is testCode[i][1]
75 PASS 'tesst'.split(/(?=s+)/) is testCode[i][1]
76 PASS 'test'.split('t') is testCode[i][1]
77 PASS 'test'.split('es') is testCode[i][1]
78 PASS 'test'.split(/t/) is testCode[i][1]
79 PASS 'test'.split(/es/) is testCode[i][1]
80 PASS 'test'.split(/(t)/) is testCode[i][1]
81 PASS 'test'.split(/(es)/) is testCode[i][1]
82 PASS 'test'.split(/(t)(e)(s)(t)/) is testCode[i][1]
83 PASS '.'.split(/(((.((.??)))))/) is testCode[i][1]
84 PASS '.'.split(/(((((.??)))))/) is testCode[i][1]