Searched refs:backslash_command (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | CommentLexer.h | 37 backslash_command, // Command with an ID, that used backslash marker. enumerator 121 assert(is(tok::backslash_command) || is(tok::at_command)); in getCommandID() 126 assert(is(tok::backslash_command) || is(tok::at_command)); in setCommandID()
|
| H A D | CommentParser.h | 83 return (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) && in isTokBlockCommand()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | CommentParser.cpp | 308 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseBlockCommand() 315 Tok.is(tok::backslash_command) ? CMK_Backslash : CMK_At; in parseBlockCommand() 400 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseInlineCommand() 564 case tok::backslash_command: in parseParagraphOrBlockCommand() 725 case tok::backslash_command: in parseBlockContent()
|
| H A D | CommentBriefParser.cpp | 70 if (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) { in Parse()
|
| H A D | CommentLexer.cpp | 354 (*TokenPtr == '@') ? tok::at_command : tok::backslash_command; in lexCommentText()
|
| /llvm-project-15.0.7/clang/unittests/AST/ |
| H A D | CommentLexer.cpp | 369 ASSERT_EQ(tok::backslash_command, Toks[1].getKind()); in TEST_F() 389 ASSERT_EQ(tok::backslash_command, Toks[1].getKind()); in TEST_F() 392 ASSERT_EQ(tok::backslash_command, Toks[2].getKind()); in TEST_F() 398 ASSERT_EQ(tok::backslash_command, Toks[4].getKind()); in TEST_F() 404 ASSERT_EQ(tok::backslash_command, Toks[6].getKind()); in TEST_F() 485 ASSERT_EQ(tok::backslash_command, Toks[1].getKind()); in TEST_F() 507 ASSERT_EQ(tok::backslash_command, Toks[1].getKind()); in TEST_F() 546 ASSERT_EQ(tok::backslash_command, Toks[1].getKind()); in TEST_F() 554 ASSERT_EQ(tok::backslash_command, Toks[4].getKind()); in TEST_F() 565 ASSERT_EQ(tok::backslash_command, Toks[8].getKind()); in TEST_F()
|