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

  /external/clang/lib/Format/
UnwrappedLineFormatter.h 33 UnwrappedLineFormatter(ContinuationIndenter *Indenter,
38 : Indenter(Indenter), Whitespaces(Whitespaces), Style(Style),
64 ContinuationIndenter *Indenter;
UnwrappedLineFormatter.cpp 475 LineFormatter(ContinuationIndenter *Indenter, WhitespaceManager *Whitespaces,
478 : Indenter(Indenter), Whitespaces(Whitespaces), Style(Style),
563 ContinuationIndenter *Indenter;
574 NoColumnLimitLineFormatter(ContinuationIndenter *Indenter,
578 : LineFormatter(Indenter, Whitespaces, Style, BlockFormatter) {}
586 Indenter->getInitialState(FirstIndent, &Line, /*DryRun=*/false);
589 Indenter->mustBreak(State) ||
590 (Indenter->canBreak(State) && State.NextToken->NewlinesBefore > 0);
593 Indenter->addTokenToState(State, Newline, /*DryRun=*/false)
    [all...]
FormatToken.cpp 76 ContinuationIndenter *Indenter,
124 // Place token using the continuation indenter and store the penalty.
125 Penalty += Indenter->addTokenToState(State, NewLine, DryRun, ExtraSpaces);
131 ContinuationIndenter *Indenter,
FormatToken.h 492 /// Continues formatting from \p State leaving indentation to \p Indenter and
495 ContinuationIndenter *Indenter,
503 ContinuationIndenter *Indenter,
522 unsigned formatAfterToken(LineState &State, ContinuationIndenter *Indenter,
525 unsigned formatFromToken(LineState &State, ContinuationIndenter *Indenter,
UnwrappedLineParser.cpp     [all...]
Format.cpp     [all...]
  /art/libartbase/base/
indenter_test.cc 17 #include "indenter.h"
25 Indenter indent_filter(output.rdbuf(), '\t', 2);
indenter.h 32 class Indenter : public std::streambuf {
34 Indenter(std::streambuf* out, char text, size_t count)
111 DISALLOW_COPY_AND_ASSIGN(Indenter);
139 Indenter indenter_;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
JSON.h 458 template <typename Indenter>
459 void print(llvm::raw_ostream &, const Indenter &) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
JSON.cpp 598 // Prints JSON. The indenter can be used to control formatting.
599 template <typename Indenter>
600 void llvm::json::Value::print(raw_ostream &OS, const Indenter &I) const {

Completed in 1555 milliseconds