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 93 /// \param TabStop used to expand tabs
98 unsigned TabStop) {
103 assert(0 < TabStop && TabStop <= DiagnosticOptions::MaxTabStop &&
106 unsigned NumSpaces = TabStop - col%TabStop;
107 assert(0 < NumSpaces && NumSpaces <= TabStop
160 static void expandTabs(std::string &SourceLine, unsigned TabStop) {
168 = printableTextForNextCharacter(SourceLine, &tmp_i, TabStop);
189 /// example: (given a tabstop of 8
    [all...]
CompilerInvocation.cpp 577 Opts.TabStop = Args.getLastArgIntValue(OPT_ftabstop,
579 if (Opts.TabStop == 0 || Opts.TabStop > DiagnosticOptions::MaxTabStop) {
580 Opts.TabStop = DiagnosticOptions::DefaultTabStop;
583 << Opts.TabStop << DiagnosticOptions::DefaultTabStop;
    [all...]
  /external/llvm/lib/Support/
SourceMgr.cpp 26 static const size_t TabStop = 8;
334 } while ((OutCol % TabStop) != 0);
457 } while ((OutCol % TabStop) != 0);
486 } while (((OutCol % TabStop) != 0) && i != e);

Completed in 44 milliseconds