HomeSort by: relevance | last modified time | path
    Searched defs:TabStop (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
SourceMgr.cpp 38 static const size_t TabStop = 8;
466 } while ((OutCol % TabStop) != 0);
575 } while ((OutCol % TabStop) != 0);
602 } while (((OutCol % TabStop) != 0) && i != e);
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 1260 /// Compute the column number will aligning tabs on TabStop (-ftabstop), this
1263 unsigned TabStop = SM.getDiagnostics().getDiagnosticOptions().TabStop;
1266 if (ColNo == 0 || TabStop == 1)
1287 // Advance visual column to next tabstop.
1288 VisualColumn += (TabStop - VisualColumn % TabStop);

Completed in 22 milliseconds