clang 20.0.0git
|
#include "clang/Basic/SourceManager.h"
#include "clang/Lex/Preprocessor.h"
#include "clang/Rewrite/Core/Rewriter.h"
#include "clang/Rewrite/Frontend/Rewriters.h"
#include "llvm/ADT/RewriteBuffer.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/raw_ostream.h"
#include <cstdio>
#include <memory>
Go to the source code of this file.
Functions | |
static bool | isSameToken (Token &RawTok, Token &PPTok) |
isSameToken - Return true if the two specified tokens start have the same content. | |
static const Token & | GetNextRawTok (const std::vector< Token > &RawTokens, unsigned &CurTok, bool ReturnComment) |
GetNextRawTok - Return the next raw token in the stream, skipping over comments if ReturnComment is false. | |
static void | LexRawTokensFromMainFile (Preprocessor &PP, std::vector< Token > &RawTokens) |
LexRawTokensFromMainFile - Lets all the raw tokens from the main file into the specified vector. | |
|
static |
GetNextRawTok - Return the next raw token in the stream, skipping over comments if ReturnComment is false.
Definition at line 49 of file RewriteMacros.cpp.
Referenced by clang::RewriteMacrosInInput().
isSameToken - Return true if the two specified tokens start have the same content.
Definition at line 29 of file RewriteMacros.cpp.
References clang::Token::getIdentifierInfo(), and clang::Token::getKind().
Referenced by clang::RewriteMacrosInInput().
|
static |
LexRawTokensFromMainFile - Lets all the raw tokens from the main file into the specified vector.
Definition at line 63 of file RewriteMacros.cpp.
References clang::Preprocessor::getLangOpts(), clang::Preprocessor::getSourceManager(), clang::Token::is(), clang::Token::isNot(), clang::Lexer::LexFromRawLexer(), clang::Preprocessor::LookUpIdentifierInfo(), clang::Lexer::SetCommentRetentionState(), and SM.
Referenced by clang::RewriteMacrosInInput().