HomeSort by relevance Sort by last modified time
    Searched refs:TabStop (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/Frontend/
TextDiagnostic.cpp 95 /// \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);
191 /// example: (given a tabstop of 8
    [all...]
CompilerInvocation.cpp     [all...]
  /external/llvm/lib/Support/
SourceMgr.cpp 24 static const size_t TabStop = 8;
326 } while ((OutCol % TabStop) != 0);
451 } while ((OutCol % TabStop) != 0);
480 } while (((OutCol % TabStop) != 0) && i != e);

Completed in 703 milliseconds