OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsWhiteSpace
(Results
1 - 15
of
15
) sorted by null
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Regress/
function-003.js
54
if (!
IsWhiteSpace
(s.charAt(currentChar))) {
61
function
IsWhiteSpace
( string ) {
function-002.js
99
if (!
IsWhiteSpace
(s.charAt(currentChar))) {
106
function
IsWhiteSpace
( string ) {
/external/gtest/test/
gtest-port_test.cc
229
EXPECT_FALSE(
IsWhiteSpace
('\0'));
230
EXPECT_FALSE(
IsWhiteSpace
('a'));
231
EXPECT_FALSE(
IsWhiteSpace
('1'));
232
EXPECT_FALSE(
IsWhiteSpace
('+'));
233
EXPECT_FALSE(
IsWhiteSpace
('_'));
237
EXPECT_TRUE(
IsWhiteSpace
(' '));
238
EXPECT_TRUE(
IsWhiteSpace
('\n'));
239
EXPECT_TRUE(
IsWhiteSpace
('\r'));
240
EXPECT_TRUE(
IsWhiteSpace
('\t'));
241
EXPECT_TRUE(
IsWhiteSpace
('\v'))
[
all
...]
/external/protobuf/gtest/test/
gtest-port_test.cc
287
EXPECT_FALSE(
IsWhiteSpace
('\0'));
288
EXPECT_FALSE(
IsWhiteSpace
('a'));
289
EXPECT_FALSE(
IsWhiteSpace
('1'));
290
EXPECT_FALSE(
IsWhiteSpace
('+'));
291
EXPECT_FALSE(
IsWhiteSpace
('_'));
295
EXPECT_TRUE(
IsWhiteSpace
(' '));
296
EXPECT_TRUE(
IsWhiteSpace
('\n'));
297
EXPECT_TRUE(
IsWhiteSpace
('\r'));
298
EXPECT_TRUE(
IsWhiteSpace
('\t'));
299
EXPECT_TRUE(
IsWhiteSpace
('\v'))
[
all
...]
/external/tinyxml/
tinyxmlparser.cpp
340
if (
IsWhiteSpace
( *p ) || *p == '\n' || *p =='\r' ) // Still using old rules for white space.
348
while ( *p &&
IsWhiteSpace
( *p ) || *p == '\n' || *p =='\r' )
364
if ( !
IsWhiteSpace
( c ) || c <= 0 )
589
else if (
IsWhiteSpace
( *p ) )
968
if ( !firstCharFound && c != '<' && !
IsWhiteSpace
( c ) )
1376
&& !
IsWhiteSpace
( *p ) && *p != '\n' && *p != '\r' // whitespace
[
all
...]
tinyxml.h
247
inline static bool
IsWhiteSpace
( char c )
[
all
...]
/external/gtest/src/
gtest-port.cc
148
bool
IsWhiteSpace
(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
169
case 's': return
IsWhiteSpace
(ch);
170
case 'S': return !
IsWhiteSpace
(ch);
gtest-internal-inl.h
[
all
...]
/external/protobuf/gtest/src/
gtest-port.cc
179
bool
IsWhiteSpace
(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
200
case 's': return
IsWhiteSpace
(ch);
201
case 'S': return !
IsWhiteSpace
(ch);
gtest-internal-inl.h
[
all
...]
/external/v8/src/
scanner-base.cc
129
while (unicode_cache_->
IsWhiteSpace
(c0_) || IsByteOrderMark(c0_)) {
130
//
IsWhiteSpace
() includes line terminators!
dateparser.h
125
if (unicode_cache_->
IsWhiteSpace
(ch_)) {
scanner-base.h
136
bool
IsWhiteSpace
(unibrow::uchar c) { return kIsWhiteSpace.get(c); }
conversions.cc
116
if (!unicode_cache->
IsWhiteSpace
(**current)) return true;
[
all
...]
/external/v8/test/cctest/
test-regexp.cc
434
static bool
IsWhiteSpace
(uc16 c) {
453
return !
IsWhiteSpace
(c);
482
TestCharacterClassEscapes('s',
IsWhiteSpace
);
[
all
...]
Completed in 1160 milliseconds