forked from OSchip/llvm-project
[Format] Remove dead code.
No functionality change. llvm-svn: 290135
This commit is contained in:
parent
c23af5707d
commit
353395e3c2
|
@ -40,26 +40,6 @@ inline Encoding detectEncoding(StringRef Text) {
|
|||
return Encoding_Unknown;
|
||||
}
|
||||
|
||||
inline unsigned getCodePointCountUTF8(StringRef Text) {
|
||||
unsigned CodePoints = 0;
|
||||
for (size_t i = 0, e = Text.size(); i < e;
|
||||
i += llvm::getNumBytesForUTF8(Text[i])) {
|
||||
++CodePoints;
|
||||
}
|
||||
return CodePoints;
|
||||
}
|
||||
|
||||
/// \brief Gets the number of code points in the Text using the specified
|
||||
/// Encoding.
|
||||
inline unsigned getCodePointCount(StringRef Text, Encoding Encoding) {
|
||||
switch (Encoding) {
|
||||
case Encoding_UTF8:
|
||||
return getCodePointCountUTF8(Text);
|
||||
default:
|
||||
return Text.size();
|
||||
}
|
||||
}
|
||||
|
||||
/// \brief Returns the number of columns required to display the \p Text on a
|
||||
/// generic Unicode-capable terminal. Text is assumed to use the specified
|
||||
/// \p Encoding.
|
||||
|
|
|
@ -55,15 +55,12 @@ public:
|
|||
|
||||
FileID getFileID() const { return ID; }
|
||||
|
||||
StringRef getFileName() const { return FileName; }
|
||||
|
||||
ArrayRef<CharSourceRange> getCharRanges() const { return CharRanges; }
|
||||
|
||||
const SourceManager &getSourceManager() const { return SM; }
|
||||
|
||||
private:
|
||||
FileID ID;
|
||||
StringRef FileName;
|
||||
SmallVector<CharSourceRange, 8> CharRanges;
|
||||
SourceManager &SM;
|
||||
|
||||
|
|
|
@ -42,11 +42,6 @@ WhitespaceManager::Change::Change(
|
|||
TokenLength(0), PreviousEndOfTokenColumn(0), EscapedNewlineColumn(0),
|
||||
StartOfBlockComment(nullptr), IndentationOffset(0) {}
|
||||
|
||||
void WhitespaceManager::reset() {
|
||||
Changes.clear();
|
||||
Replaces.clear();
|
||||
}
|
||||
|
||||
void WhitespaceManager::replaceWhitespace(FormatToken &Tok, unsigned Newlines,
|
||||
unsigned IndentLevel, unsigned Spaces,
|
||||
unsigned StartOfTokenColumn,
|
||||
|
|
|
@ -41,9 +41,6 @@ public:
|
|||
bool UseCRLF)
|
||||
: SourceMgr(SourceMgr), Style(Style), UseCRLF(UseCRLF) {}
|
||||
|
||||
/// \brief Prepares the \c WhitespaceManager for another run.
|
||||
void reset();
|
||||
|
||||
/// \brief Replaces the whitespace in front of \p Tok. Only call once for
|
||||
/// each \c AnnotatedToken.
|
||||
void replaceWhitespace(FormatToken &Tok, unsigned Newlines,
|
||||
|
|
Loading…
Reference in New Issue