|
clang
3.8.0
|
Namespaces | |
| tok | |
Classes | |
| class | Comment |
| Any part of the comment. More... | |
| class | InlineContentComment |
| Inline content (contained within a block). More... | |
| class | TextComment |
| Plain text. More... | |
| class | InlineCommandComment |
| A command with word-like arguments that is considered inline content. More... | |
| class | HTMLTagComment |
| Abstract class for opening and closing HTML tags. More... | |
| class | HTMLStartTagComment |
| An opening HTML tag with attributes. More... | |
| class | HTMLEndTagComment |
| A closing HTML tag. More... | |
| class | BlockContentComment |
| Block content (contains inline content). More... | |
| class | ParagraphComment |
| A single paragraph that contains inline content. More... | |
| class | BlockCommandComment |
| A command that has zero or more word-like arguments (number of word-like arguments depends on command name) and a paragraph as an argument (e. More... | |
| class | ParamCommandComment |
| Doxygen \param command. More... | |
| class | TParamCommandComment |
| Doxygen \tparam command, describes a template parameter. More... | |
| class | VerbatimBlockLineComment |
| A line of text contained in a verbatim block. More... | |
| class | VerbatimBlockComment |
| A verbatim block command (e. More... | |
| class | VerbatimLineComment |
| A verbatim line command. More... | |
| struct | DeclInfo |
| Information about the declaration, useful to clients of FullComment. More... | |
| class | FullComment |
| A full comment attached to a declaration, contains block content. More... | |
| class | BriefParser |
| A very simple comment parser that extracts "a brief description". More... | |
| struct | CommandInfo |
| Information about a single command. More... | |
| class | CommandTraits |
| This class provides information about commands that can be used in comments. More... | |
| class | Token |
| Comment token. More... | |
| class | Lexer |
| Comment lexer. More... | |
| class | Parser |
| Doxygen comment parser. More... | |
| class | Sema |
| struct | make_ptr |
| struct | make_const_ptr |
| class | CommentVisitorBase |
| class | CommentVisitor |
| class | ConstCommentVisitor |
| class | TextTokenRetokenizer |
| Re-lexes a sequence of tok::text tokens. More... | |
Enumerations | |
| enum | CommandMarkerKind { CMK_Backslash = 0, CMK_At = 1 } |
| Describes the syntax that was used in a documentation command. More... | |
Functions | |
| static bool | isHTMLNamedCharacterReferenceCharacter (char C) |
| static bool | isHTMLDecimalCharacterReferenceCharacter (char C) |
| static bool | isHTMLHexCharacterReferenceCharacter (char C) |
| static StringRef | convertCodePointToUTF8 (llvm::BumpPtrAllocator &Allocator, unsigned CodePoint) |
| static int | getParamPassDirection (StringRef Arg) |
| Turn a string into the corresponding PassDirection or -1 if it's not valid. More... | |
Describes the syntax that was used in a documentation command.
Exact values of this enumeration are important because they used to select parts of diagnostic messages. Audit diagnostics before changing or adding a new value.
| Enumerator | |
|---|---|
| CMK_Backslash |
Command started with a backslash character: \foo
|
| CMK_At |
Command started with an 'at' character: @foo
|
|
inlinestatic |
Definition at line 31 of file CommentLexer.cpp.
|
static |
Turn a string into the corresponding PassDirection or -1 if it's not valid.
Definition at line 220 of file CommentSema.cpp.
References clang::comments::ParamCommandComment::In, clang::comments::ParamCommandComment::InOut, and clang::comments::ParamCommandComment::Out.
Referenced by clang::comments::Sema::actOnParamCommandDirectionArg().
|
inlinestatic |
Definition at line 23 of file CommentLexer.cpp.
References clang::isDigit().
|
inlinestatic |
Definition at line 27 of file CommentLexer.cpp.
References clang::isHexDigit().
|
inlinestatic |
Definition at line 19 of file CommentLexer.cpp.
References clang::isLetter().
1.8.6