HomeSort by relevance Sort by last modified time
    Searched defs:LastIndexOf (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.7-1.js 24 ECMA Section: 15.5.4.7 String.prototype.lastIndexOf( searchString, pos)
34 When the lastIndexOf method is called with two arguments searchString and
51 Note that the lastIndexOf function is intentionally generic; it does not require that its this value be a
60 var TITLE = "String.protoype.lastIndexOf";
76 "String.lastIndexOf(" +String.fromCharCode(i)+ ", 0)",
78 TEST_STRING.lastIndexOf( String.fromCharCode(i), 0 ) );
83 "String.lastIndexOf("+String.fromCharCode(i)+ ", "+ k +")",
85 TEST_STRING.lastIndexOf( String.fromCharCode(i), k ) );
90 "String.lastIndexOf("+String.fromCharCode(i)+ ", "+k+1+")",
92 TEST_STRING.lastIndexOf( String.fromCharCode(i), k+1 ) )
    [all...]
15.5.4.7-2.js 24 ECMA Section: 15.5.4.7 String.prototype.lastIndexOf( searchString, pos)
34 When the lastIndexOf method is called with two arguments searchString and
51 Note that the lastIndexOf function is intentionally generic; it does not require that its this value be a
59 The length property of the lastIndexOf method is 1
65 var TITLE = "String.protoype.lastIndexOf";
77 array[item++] = new TestCase( SECTION, "String.prototype.lastIndexOf.length", 1, String.prototype.lastIndexOf.length );
78 array[item++] = new TestCase( SECTION, "delete String.prototype.lastIndexOf.length", false, delete String.prototype.lastIndexOf.length );
79 array[item++] = new TestCase( SECTION, "delete String.prototype.lastIndexOf.length; String.prototype.lastIndexOf.length", 1, eval("delete String.prototype.lastIndexOf.leng (…)
    [all...]
15.5.4.7-3.js 24 ECMA Section: 15.5.4.7 String.prototype.lastIndexOf( searchString, pos)
34 When the lastIndexOf method is called with two arguments searchString and
51 Note that the lastIndexOf function is intentionally generic; it does not require that its this value be a
60 var TITLE = "String.protoype.lastIndexOf";
73 "var b = true; b.__proto__.lastIndexOf = String.prototype.lastIndexOf; b.lastIndexOf('r', 0 )",
75 eval("var b = true; b.__proto__.lastIndexOf = String.prototype.lastIndexOf; b.lastIndexOf('r', 0 )") )
    [all...]

Completed in 196 milliseconds