HomeSort by relevance Sort by last modified time
    Searched full:non_whitespace (Results 1 - 1 of 1) sorted by null

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
whitespace.js 41 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 characters match individuall
    [all...]

Completed in 446 milliseconds