Searched refs:non_whitespace (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regexp/
H A Dwhitespace.js41 var non_whitespace = "_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ~`!@#$%^&*()-+={[}]|\\:;'<,>./?1234567890" + '"'; variable
51 "'" + non_whitespace + "'.match(new RegExp('\\S+'))",
52 String([non_whitespace]), String(non_whitespace.match(new RegExp('\\S+'))));
56 "'" + non_whitespace + "'.match(new RegExp('\\s'))",
57 null, non_whitespace.match(new RegExp('\\s')));
64 var s = non_whitespace + whitespace;
71 s = whitespace + non_whitespace;
76 String([non_whitespace]), String(s.match(new RegExp('\\S+'))));
95 // be sure all non_whitespace character
[all...]

Completed in 64 milliseconds