Searched refs:backslash_command (Results 1 – 6 of 6) sorted by relevance
/external/clang/include/clang/AST/ |
D | CommentLexer.h | 39 backslash_command, // Command with an ID, that used backslash marker. enumerator 123 assert(is(tok::backslash_command) || is(tok::at_command)); in getCommandID() 128 assert(is(tok::backslash_command) || is(tok::at_command)); in setCommandID()
|
D | CommentParser.h | 84 return (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) && in isTokBlockCommand()
|
/external/clang/lib/AST/ |
D | CommentParser.cpp | 312 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseBlockCommand() 319 Tok.is(tok::backslash_command) ? CMK_Backslash : CMK_At; in parseBlockCommand() 404 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseInlineCommand() 571 case tok::backslash_command: in parseParagraphOrBlockCommand() 732 case tok::backslash_command: in parseBlockContent()
|
D | CommentBriefParser.cpp | 81 if (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) { in Parse()
|
D | CommentLexer.cpp | 329 (*TokenPtr == '@') ? tok::at_command : tok::backslash_command; in lexCommentText()
|
/external/clang/unittests/AST/ |
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()
|