Lines Matching defs:FormatToken
1 //===--- FormatToken.h - Format C++ code ------------------------*- C++ -*-===//
11 /// \brief This file contains the declaration of the FormatToken, a wrapper
77 struct FormatToken {
78 FormatToken()
277 FormatToken *getPreviousNonComment() const {
278 FormatToken *Tok = Previous;
285 const FormatToken *getNextNonComment() const {
286 const FormatToken *Tok = Next;
292 FormatToken *MatchingParen;
294 FormatToken *Previous;
295 FormatToken *Next;
299 FormatToken(const FormatToken &) LLVM_DELETED_FUNCTION;
300 void operator=(const FormatToken &) LLVM_DELETED_FUNCTION;