Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:function

31 str = str.replace(/(\w)?X/g, function(match, capture) {
40 str = str.replace(/\b/g, function(match, capture) {
47 str = str.replace(/(?=(\w+))\b/g, function(match, capture) {
55 function(match, c1, c2, c3) {
68 function(match, num_legs, likeability) {
83 function(match, capture) {
92 str = str.replace(/\b/g, function(match, capture) {
99 str = str.replace(/(?=(\w+))\b/g, function(match, capture) {
107 function(match, c1, c2, c3) {
120 function(match, num_legs, likeability) {
131 str = str.replace(/(.*)/g, function(match) { return '~'; });
137 str = str.replace(/\b(?=u(p))/g, function(match, capture) {
173 function test_replace(result_expectation,
193 function test_match(result_expectation,
233 // Test 1b: String.replace with function.
234 function f() { return "x"; }