OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsAsciiWhiteSpace
(Results
1 - 3
of
3
) sorted by null
/external/chromium/testing/gtest/test/
gtest-port_test.cc
468
EXPECT_FALSE(
IsAsciiWhiteSpace
('\0'));
469
EXPECT_FALSE(
IsAsciiWhiteSpace
('a'));
470
EXPECT_FALSE(
IsAsciiWhiteSpace
('1'));
471
EXPECT_FALSE(
IsAsciiWhiteSpace
('+'));
472
EXPECT_FALSE(
IsAsciiWhiteSpace
('_'));
476
EXPECT_TRUE(
IsAsciiWhiteSpace
(' '));
477
EXPECT_TRUE(
IsAsciiWhiteSpace
('\n'));
478
EXPECT_TRUE(
IsAsciiWhiteSpace
('\r'));
479
EXPECT_TRUE(
IsAsciiWhiteSpace
('\t'));
480
EXPECT_TRUE(
IsAsciiWhiteSpace
('\v'))
[
all
...]
/external/chromium/testing/gtest/src/
gtest-port.cc
190
bool
IsAsciiWhiteSpace
(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
211
case 's': return
IsAsciiWhiteSpace
(ch);
212
case 'S': return !
IsAsciiWhiteSpace
(ch);
gtest-internal-inl.h
[
all
...]
Completed in 213 milliseconds