HomeSort by relevance Sort by last modified time
    Searched refs:IsWhiteSpace (Results 1 - 13 of 13) 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/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/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/
dateparser.h 125 if (unicode_cache_->IsWhiteSpace(ch_)) {
170 bool IsWhiteSpace() { return tag_ == kWhiteSpaceTag; }
dateparser-inl.h 130 !peek.IsWhiteSpace() &&
scanner.cc 262 while (unicode_cache_->IsWhiteSpace(c0_) || IsByteOrderMark(c0_)) {
263 // IsWhiteSpace() includes line terminators!
scanner.h 157 bool IsWhiteSpace(unibrow::uchar c) { return kIsWhiteSpace.get(c); }
conversions-inl.h 126 if (!unicode_cache->IsWhiteSpace(**current)) return true;
  /external/v8/test/cctest/
test-regexp.cc 441 static bool IsWhiteSpace(uc16 c) {
461 return !IsWhiteSpace(c);
490 TestCharacterClassEscapes('s', IsWhiteSpace);
    [all...]

Completed in 1681 milliseconds