clang 18.0.0git
|
Functions | |
void | HighlightRange (Rewriter &R, SourceLocation B, SourceLocation E, const char *StartTag, const char *EndTag, bool IsTokenRange=true) |
HighlightRange - Highlight a range in the source code with the specified start/end tags. | |
void | HighlightRange (Rewriter &R, SourceRange Range, const char *StartTag, const char *EndTag) |
HighlightRange - Highlight a range in the source code with the specified start/end tags. | |
void | HighlightRange (RewriteBuffer &RB, unsigned B, unsigned E, const char *BufferStart, const char *StartTag, const char *EndTag) |
HighlightRange - This is the same as the above method, but takes decomposed file locations. | |
void | EscapeText (Rewriter &R, FileID FID, bool EscapeSpaces=false, bool ReplaceTabs=false) |
EscapeText - HTMLize a specified file so that special characters are are translated so that they are not interpreted as HTML tags. | |
std::string | EscapeText (StringRef s, bool EscapeSpaces=false, bool ReplaceTabs=false) |
EscapeText - HTMLized the provided string so that special characters in 's' are not interpreted as HTML tags. | |
void | AddLineNumbers (Rewriter &R, FileID FID) |
void | AddHeaderFooterInternalBuiltinCSS (Rewriter &R, FileID FID, StringRef title) |
void | SyntaxHighlight (Rewriter &R, FileID FID, const Preprocessor &PP) |
SyntaxHighlight - Relex the specified FileID and annotate the HTML with information about keywords, comments, etc. | |
void | HighlightMacros (Rewriter &R, FileID FID, const Preprocessor &PP) |
HighlightMacros - This uses the macro table state from the end of the file, to reexpand macros and insert (into the HTML) information about the macro expansions. | |
Definition at line 274 of file HTMLRewrite.cpp.
References EscapeText(), clang::SourceManager::getBufferOrFake(), clang::SourceManager::getLocForStartOfFile(), clang::SourceLocation::getLocWithOffset(), clang::Rewriter::getSourceMgr(), and s.
Definition at line 227 of file HTMLRewrite.cpp.
References AddLineNumber(), clang::C, c, clang::SourceManager::getBufferOrFake(), clang::Rewriter::getEditBuffer(), clang::FileID::getHashValue(), clang::Rewriter::getSourceMgr(), clang::RewriteBuffer::InsertTextAfter(), clang::RewriteBuffer::InsertTextBefore(), and s.
void clang::html::EscapeText | ( | Rewriter & | R, |
FileID | FID, | ||
bool | EscapeSpaces = false , |
||
bool | ReplaceTabs = false |
||
) |
EscapeText - HTMLize a specified file so that special characters are are translated so that they are not interpreted as HTML tags.
Definition at line 107 of file HTMLRewrite.cpp.
References clang::C, clang::SourceManager::getBufferOrFake(), clang::Rewriter::getEditBuffer(), clang::Rewriter::getSourceMgr(), and clang::RewriteBuffer::ReplaceText().
Referenced by AddHeaderFooterInternalBuiltinCSS().
std::string clang::html::EscapeText | ( | StringRef | s, |
bool | EscapeSpaces = false , |
||
bool | ReplaceTabs = false |
||
) |
EscapeText - HTMLized the provided string so that special characters in 's' are not interpreted as HTML tags.
Unlike the version of EscapeText that rewrites a file, this version by default replaces tabs with spaces.
Definition at line 168 of file HTMLRewrite.cpp.
void clang::html::HighlightMacros | ( | Rewriter & | R, |
FileID | FID, | ||
const Preprocessor & | PP | ||
) |
HighlightMacros - This uses the macro table state from the end of the file, to reexpand macros and insert (into the HTML) information about the macro expansions.
HighlightMacros - This uses the macro table state from the end of the file, to re-expand macros and insert (into the HTML) information about the macro expansions.
This won't be perfectly perfect, but it will be reasonably close.
Definition at line 395 of file HTMLRewrite.cpp.
void clang::html::HighlightRange | ( | RewriteBuffer & | RB, |
unsigned | B, | ||
unsigned | E, | ||
const char * | BufferStart, | ||
const char * | StartTag, | ||
const char * | EndTag | ||
) |
HighlightRange - This is the same as the above method, but takes decomposed file locations.
Definition at line 58 of file HTMLRewrite.cpp.
References clang::RewriteBuffer::InsertTextAfter(), and clang::RewriteBuffer::InsertTextBefore().
void clang::html::HighlightRange | ( | Rewriter & | R, |
SourceLocation | B, | ||
SourceLocation | E, | ||
const char * | StartTag, | ||
const char * | EndTag, | ||
bool | IsTokenRange = true |
||
) |
HighlightRange - Highlight a range in the source code with the specified start/end tags.
B/E must be in the same file. This ensures that start/end tags are placed at the start/end of each line if the range is multiline.
Definition at line 31 of file HTMLRewrite.cpp.
References clang::Rewriter::getEditBuffer(), clang::Rewriter::getLangOpts(), clang::Rewriter::getSourceMgr(), HighlightRange(), clang::Invalid, clang::Lexer::MeasureTokenLength(), and SM.
Referenced by HighlightRange().
|
inline |
HighlightRange - Highlight a range in the source code with the specified start/end tags.
The Start/end of the range must be in the same file. This ensures that start/end tags are placed at the start/end of each line if the range is multiline.
Definition at line 40 of file HTMLRewrite.h.
References HighlightRange().
void clang::html::SyntaxHighlight | ( | Rewriter & | R, |
FileID | FID, | ||
const Preprocessor & | PP | ||
) |
SyntaxHighlight - Relex the specified FileID and annotate the HTML with information about keywords, comments, etc.
SyntaxHighlight - Relex the specified FileID and annotate the HTML with information about keywords, macro expansions etc.
This uses the macro table state from the end of the file, so it won't be perfectly perfect, but it will be reasonably close.
Definition at line 305 of file HTMLRewrite.cpp.