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

  /frameworks/compile/mclinker/lib/Support/
CommandLine.cpp 37 size_t NumSpaces = MaxOptWidth > VSize ? MaxOptWidth - VSize : 0;
38 outs().indent(NumSpaces) << " (default: ";
71 size_t NumSpaces = MaxOptWidth > VSize ? MaxOptWidth - VSize : 0;
72 outs().indent(NumSpaces) << " (default: ";
  /external/llvm/lib/Support/
raw_ostream.cpp 384 /// indent - Insert 'NumSpaces' spaces.
385 raw_ostream &raw_ostream::indent(unsigned NumSpaces) {
391 if (NumSpaces < array_lengthof(Spaces))
392 return write(Spaces, NumSpaces);
394 while (NumSpaces) {
395 unsigned NumToWrite = std::min(NumSpaces,
398 NumSpaces -= NumToWrite;
CommandLine.cpp     [all...]
  /external/clang/lib/Rewrite/
HTMLRewrite.cpp 140 unsigned NumSpaces = 8-(ColNo&7);
144 "&nbsp;&nbsp;&nbsp;", 6*NumSpaces));
146 RB.ReplaceText(FilePos, 1, StringRef(" ", NumSpaces));
147 ColNo += NumSpaces;
  /external/clang/lib/Frontend/
TextDiagnostic.cpp 82 unsigned NumSpaces = TabStop - col%TabStop;
83 assert(0 < NumSpaces && NumSpaces <= TabStop
88 expandedTab.assign(NumSpaces, ' ');
    [all...]
  /external/llvm/include/llvm/Support/
raw_ostream.h 207 /// indent - Insert 'NumSpaces' spaces.
208 raw_ostream &indent(unsigned NumSpaces);

Completed in 422 milliseconds