OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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 71 milliseconds