OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isVerticalWhitespace
(Results
1 - 5
of
5
) sorted by null
/external/clang/unittests/Basic/
CharInfoTest.cpp
116
TEST(CharInfoTest,
isVerticalWhitespace
) {
117
EXPECT_FALSE(
isVerticalWhitespace
('a'));
118
EXPECT_FALSE(
isVerticalWhitespace
('_'));
119
EXPECT_FALSE(
isVerticalWhitespace
('0'));
120
EXPECT_FALSE(
isVerticalWhitespace
('.'));
121
EXPECT_FALSE(
isVerticalWhitespace
('`'));
122
EXPECT_FALSE(
isVerticalWhitespace
('\0'));
123
EXPECT_FALSE(
isVerticalWhitespace
('\x7f'));
125
EXPECT_FALSE(
isVerticalWhitespace
(' '));
126
EXPECT_FALSE(
isVerticalWhitespace
('\t'))
[
all
...]
/external/clang/include/clang/Basic/
CharInfo.h
79
LLVM_READONLY static inline bool
isVerticalWhitespace
(unsigned char c) {
/external/clang/lib/AST/
CommentLexer.cpp
120
if (
isVerticalWhitespace
(*BufferPtr))
235
while (!
isVerticalWhitespace
(*CurPtr)) {
457
isVerticalWhitespace
(*BufferPtr)) {
RawCommentList.cpp
94
if (
isVerticalWhitespace
(C))
/external/clang/lib/Lex/
Lexer.cpp
[
all
...]
Completed in 111 milliseconds