HomeSort by relevance Sort by last modified time
    Searched refs:IsWhiteSpace (Results 1 - 13 of 13) sorted by null

  /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/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp 349 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 ) )
    [all...]
tinyxml.h 290 inline static bool IsWhiteSpace( char c )
294 inline static bool IsWhiteSpace( int c )
297 return IsWhiteSpace( (char) c );
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp 349 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 ) )
    [all...]
tinyxml.h 290 inline static bool IsWhiteSpace( char c )
294 inline static bool IsWhiteSpace( int c )
297 return IsWhiteSpace( (char) c );
    [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/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/chromium_org/v8/src/
dateparser-inl.h 108 !peek.IsWhiteSpace() &&
dateparser.h 147 bool IsWhiteSpace() { return tag_ == kWhiteSpaceTag; }
scanner.cc 261 } 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_)) {
    [all...]
scanner.h 123 bool IsWhiteSpace(unibrow::uchar c) { return kIsWhiteSpace.get(c); }

Completed in 362 milliseconds