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

  /external/v8/src/
unicode-cache-inl.h 37 bool UnicodeCache::IsWhiteSpace(unibrow::uchar c) {
unicode-cache.h 29 inline bool IsWhiteSpace(unibrow::uchar c);
dateparser-inl.h 111 !peek.IsWhiteSpace() &&
dateparser.h 132 bool IsWhiteSpace() { return tag_ == kWhiteSpaceTag; }
  /external/protobuf/gtest/test/
gtest-port_test.cc 300 EXPECT_FALSE(IsWhiteSpace('\0'));
301 EXPECT_FALSE(IsWhiteSpace('a'));
302 EXPECT_FALSE(IsWhiteSpace('1'));
303 EXPECT_FALSE(IsWhiteSpace('+'));
304 EXPECT_FALSE(IsWhiteSpace('_'));
308 EXPECT_TRUE(IsWhiteSpace(' '));
309 EXPECT_TRUE(IsWhiteSpace('\n'));
310 EXPECT_TRUE(IsWhiteSpace('\r'));
311 EXPECT_TRUE(IsWhiteSpace('\t'));
312 EXPECT_TRUE(IsWhiteSpace('\v'))
    [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 188 bool IsWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
209 case 's': return IsWhiteSpace(ch);
210 case 'S': return !IsWhiteSpace(ch);
gtest-internal-inl.h     [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
SimpleFileParsing.c 114 IsWhiteSpace (
442 if (IsWhiteSpace (&mGlobals.SourceFile)) {
495 if (IsWhiteSpace (&mGlobals.SourceFile)) {
1085 IsWhiteSpace (
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
SimpleFileParsing.c 107 IsWhiteSpace (
420 if (IsWhiteSpace (&mGlobals.SourceFile)) {
473 if (IsWhiteSpace (&mGlobals.SourceFile)) {
1066 IsWhiteSpace (
  /external/v8/src/parsing/
scanner.cc 455 } else if (!unicode_cache_->IsWhiteSpace(c0_) &&
517 if (c0_ == kEndOfInput || !unicode_cache_->IsWhiteSpace(c0_)) return;
539 while (c0_ != kEndOfInput && unicode_cache_->IsWhiteSpace(c0_)) {
548 if (unicode_cache_->IsWhiteSpace(c0_)) {
556 if (!unicode_cache_->IsWhiteSpace(c0_)) {
    [all...]
  /external/tinyxml2/
tinyxml2.h 545 while( IsWhiteSpace(*p) ) {
560 static bool IsWhiteSpace( char p ) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/
StrGather.c 138 IsWhiteSpace (
1055 } else if (!IsWhiteSpace (SourceFile)) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
StrGather.c 151 IsWhiteSpace (
    [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest-all.cc     [all...]

Completed in 381 milliseconds