OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isPreprocessingNumberBody
(Results
1 - 4
of
4
) sorted by null
/external/clang/unittests/Basic/
CharInfoTest.cpp
341
TEST(CharInfoTest,
isPreprocessingNumberBody
) {
342
EXPECT_TRUE(
isPreprocessingNumberBody
('0'));
343
EXPECT_TRUE(
isPreprocessingNumberBody
('9'));
345
EXPECT_TRUE(
isPreprocessingNumberBody
('a'));
346
EXPECT_TRUE(
isPreprocessingNumberBody
('A'));
348
EXPECT_TRUE(
isPreprocessingNumberBody
('z'));
349
EXPECT_TRUE(
isPreprocessingNumberBody
('Z'));
350
EXPECT_TRUE(
isPreprocessingNumberBody
('.'));
351
EXPECT_TRUE(
isPreprocessingNumberBody
('_'));
353
EXPECT_FALSE(
isPreprocessingNumberBody
('/'));
[
all
...]
/external/clang/include/clang/Basic/
CharInfo.h
148
LLVM_READONLY static inline bool
isPreprocessingNumberBody
(unsigned char c) {
/external/clang/lib/Lex/
TokenConcatenation.cpp
243
return
isPreprocessingNumberBody
(FirstChar) ||
Lexer.cpp
[
all
...]
Completed in 49 milliseconds