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

/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/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp349 if ( IsWhiteSpace( *p ) ) // Still using old rules for white space.
357 while ( *p && IsWhiteSpace( *p ) )
373 if ( !IsWhiteSpace( c ) || c <= 0 )
610 else if ( IsWhiteSpace( *p ) )
997 if ( !firstCharFound && c != '<' && !IsWhiteSpace( c ) )
1448 && !IsWhiteSpace( *p ) // whitespace
1624 while( p && *p && *p != '>' && !IsWhiteSpace( *p ) )
1634 if ( !IsWhiteSpace( value[i] ) )
H A Dtinyxml.h290 inline static bool IsWhiteSpace( char c ) function in class:TiXmlBase
294 inline static bool IsWhiteSpace( int c ) function in class:TiXmlBase
297 return IsWhiteSpace( (char) c );
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp349 if ( IsWhiteSpace( *p ) ) // Still using old rules for white space.
357 while ( *p && IsWhiteSpace( *p ) )
373 if ( !IsWhiteSpace( c ) || c <= 0 )
610 else if ( IsWhiteSpace( *p ) )
997 if ( !firstCharFound && c != '<' && !IsWhiteSpace( c ) )
1448 && !IsWhiteSpace( *p ) // whitespace
1624 while( p && *p && *p != '>' && !IsWhiteSpace( *p ) )
1634 if ( !IsWhiteSpace( value[i] ) )
H A Dtinyxml.h290 inline static bool IsWhiteSpace( char c ) function in class:TiXmlBase
294 inline static bool IsWhiteSpace( int c ) function in class:TiXmlBase
297 return IsWhiteSpace( (char) c );
/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/chromium_org/v8/src/
H A Ddateparser-inl.h108 !peek.IsWhiteSpace() &&
H A Ddateparser.h147 bool IsWhiteSpace() { return tag_ == kWhiteSpaceTag; } function in struct:v8::internal::DateParser::DateToken
H A Dscanner.cc261 } else if (!unicode_cache_->IsWhiteSpace(c0_) &&
321 if (!unicode_cache_->IsWhiteSpace(c0_))
344 while (c0_ >= 0 && unicode_cache_->IsWhiteSpace(c0_)) {
353 if (unicode_cache_->IsWhiteSpace(c0_)) {
361 if (!unicode_cache_->IsWhiteSpace(c0_)) {
H A Dscanner.h123 bool IsWhiteSpace(unibrow::uchar c) { return kIsWhiteSpace.get(c); } function in class:v8::internal::UnicodeCache

Completed in 8413 milliseconds