Searched defs:TabStop (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Frontend/
H A DTextDiagnostic.cpp95 /// \param TabStop used to expand tabs
100 unsigned TabStop) {
105 assert(0 < TabStop && TabStop <= DiagnosticOptions::MaxTabStop &&
108 unsigned NumSpaces = TabStop - col%TabStop;
109 assert(0 < NumSpaces && NumSpaces <= TabStop
162 static void expandTabs(std::string &SourceLine, unsigned TabStop) {
170 = printableTextForNextCharacter(SourceLine, &tmp_i, TabStop);
197 static void byteToColumn(StringRef SourceLine, unsigned TabStop,
99 printableTextForNextCharacter(StringRef SourceLine, size_t *i, unsigned TabStop) argument
[all...]
/external/llvm/lib/Support/
H A DSourceMgr.cpp26 static const size_t TabStop = 8; variable
333 } while ((OutCol % TabStop) != 0);
456 } while ((OutCol % TabStop) != 0);
485 } while (((OutCol % TabStop) != 0) && i != e);

Completed in 111 milliseconds