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

/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Regress/
H A Dfunction-003.js54 if (!IsWhiteSpace(s.charAt(currentChar))) {
61 function IsWhiteSpace( string ) { function
H A Dfunction-002.js99 if (!IsWhiteSpace(s.charAt(currentChar))) {
106 function IsWhiteSpace( string ) { function
/external/protobuf/gtest/test/
H A Dgtest-port_test.cc287 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('\
[all...]
/external/tinyxml/
H A Dtinyxmlparser.cpp340 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
1558 while( p && *p && *p != '>' && !IsWhiteSpace( *p ) )
1568 if ( !IsWhiteSpace( value[i] ) )
H A Dtinyxml.h247 inline static bool IsWhiteSpace( char c ) function in class:TiXmlBase
/external/protobuf/gtest/src/
H A Dgtest-port.cc179 bool IsWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } function in namespace:testing::internal
200 case 's': return IsWhiteSpace(ch);
201 case 'S': return !IsWhiteSpace(ch);
H A Dgtest-internal-inl.h1137 bool IsWhiteSpace(char ch);
/external/v8/src/
H A Ddateparser.h125 if (unicode_cache_->IsWhiteSpace(ch_)) {
170 bool IsWhiteSpace() { return tag_ == kWhiteSpaceTag; } function in struct:v8::internal::DateParser::DateToken
H A Ddateparser-inl.h130 !peek.IsWhiteSpace() &&
H A Dscanner.cc262 while (unicode_cache_->IsWhiteSpace(c0_) || IsByteOrderMark(c0_)) {
263 // IsWhiteSpace() includes line terminators!
H A Dconversions-inl.h126 if (!unicode_cache->IsWhiteSpace(**current)) return true;
H A Dscanner.h157 bool IsWhiteSpace(unibrow::uchar c) { return kIsWhiteSpace.get(c); } function in class:v8::internal::UnicodeCache
/external/v8/test/cctest/
H A Dtest-regexp.cc441 static bool IsWhiteSpace(uc16 c) { function
461 return !IsWhiteSpace(c);
490 TestCharacterClassEscapes('s', IsWhiteSpace);

Completed in 110 milliseconds