HomeSort by relevance Sort by last modified time
    Searched refs:AddSplitCases (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
split-003.js 39 AddSplitCases( "hello", new RegExp, "new RegExp", ["h","e","l","l","o"] );
41 AddSplitCases( "hello", /l/, "/l/", ["he","","o"] );
51 AddSplitCases( "hello", new RegExp, "new RegExp", ["h","e","l","l","o"] );
63 function AddSplitCases( string, separator, str_sep, split_array ) {
split-001.js 37 AddSplitCases( "splitme", "", "''", ["s", "p", "l", "i", "t", "m", "e"] );
38 AddSplitCases( "splitme", new RegExp(), "new RegExp()", ["s", "p", "l", "i", "t", "m", "e"] );
54 function AddSplitCases( string, separator, str_sep, split_array ) {

Completed in 69 milliseconds