Searched defs:NewLine (Results 1 - 14 of 14) sorted by relevance

/external/lzma/CPP/7zip/UI/Console/
H A DBenchCon.cpp15 void NewLine();
24 void CPrintBenchCallback::NewLine() function in class:CPrintBenchCallback
/external/llvm/tools/llvm-pdbdump/
H A DLinePrinter.cpp68 void LinePrinter::NewLine() { function in class:LinePrinter
/external/flatbuffers/src/
H A Didl_gen_text.cpp32 const char *NewLine(const IDLOptions &opts) { function in namespace:flatbuffers
80 text += NewLine(opts);
84 text += NewLine(opts);
99 text += NewLine(opts);
220 text += NewLine(opts);
264 text += NewLine(opts);
283 text += NewLine(parser.opts);
/external/protobuf/src/google/protobuf/util/internal/
H A Djson_objectwriter.h176 if (needs_newline) NewLine();
181 void NewLine() { function in class:google::protobuf::util::converter::JsonObjectWriter
/external/swiftshader/third_party/LLVM/test/Scripts/
H A Dcoff-dump.py240 NewLine = True variable
251 global NewLine
256 if NewLine:
258 NewLine = False
263 NewLine = True
/external/clang/lib/Format/
H A DFormatToken.cpp107 bool NewLine = false; local
121 NewLine = true;
125 Penalty += Indenter->addTokenToState(State, NewLine, DryRun, ExtraSpaces);
H A DUnwrappedLineFormatter.cpp498 /// are currently trying to keep the "}" on the same line (i.e. \p NewLine is
502 /// If \p NewLine is true, we format the nested block on separate lines, i.e.
509 bool formatChildren(LineState &State, bool NewLine, bool DryRun, argument
519 if (NewLine) {
659 /// inserting a newline dependent on the \c NewLine.
661 StateNode(const LineState &State, bool NewLine, StateNode *Previous) argument
662 : State(State), NewLine(NewLine), Previous(Previous) {}
664 bool NewLine; member in struct:clang::format::__anon1675::OptimizingLineFormatter::StateNode
721 addNextStateToQueue(Penalty, Node, /*NewLine
747 addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode, bool NewLine, unsigned *Count, QueueType *Queue) argument
[all...]
H A DFormat.cpp1049 // sets \p NewLine to the last line checked.
1052 unsigned CurrentLine, unsigned &NewLine) {
1059 NewLine = CurrentLine;
1072 if (!checkEmptyNamespace(AnnotatedLines, CurrentLine, NewLine))
1074 CurrentLine = NewLine;
1083 NewLine = CurrentLine;
1087 NewLine = CurrentLine;
1051 checkEmptyNamespace(SmallVectorImpl<AnnotatedLine *> &AnnotatedLines, unsigned CurrentLine, unsigned &NewLine) argument
/external/v8/src/
H A Djson-stringifier.cc476 if (length > 0) NewLine();
551 if (comma) NewLine();
586 if (comma) NewLine();
616 if (length > 0) NewLine();
684 void JsonStringifier::NewLine() { function in class:v8::internal::JsonStringifier
692 NewLine();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DProfiler.cs53 public static readonly string NewLine = Environment.NewLine; field in class:Antlr.Runtime.Debug.Profiler
496 buf.Append(NewLine);
499 buf.Append(NewLine);
502 buf.Append(NewLine);
505 buf.Append(NewLine);
508 buf.Append(NewLine);
511 buf.Append(NewLine);
514 buf.Append(NewLine);
562 buf.Append(NewLine);
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DProfiler.cs53 public static readonly string NewLine = Environment.NewLine; field in class:Antlr.Runtime.Debug.Profiler
547 buf.Append(NewLine);
550 buf.Append(NewLine);
553 buf.Append(NewLine);
556 buf.Append(NewLine);
559 buf.Append(NewLine);
562 buf.Append(NewLine);
565 buf.Append(NewLine);
613 buf.Append(NewLine);
[all...]
/external/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp260 unsigned NewLine = UserLoc.getLine(); local
271 // off by one. We can do better by simply incrementing NewLine here.
272 NewLine += 1;
275 CurLine = NewLine;
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DAsmWriter.cpp1214 size_t NewLine = Asm.find_first_of('\n', CurPos); local
1216 while (NewLine != std::string::npos) {
1220 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1223 CurPos = NewLine+1;
1224 NewLine = Asm.find_first_of('\n', CurPos);
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
H A DCBackend.cpp1721 size_t NewLine = Asm.find_first_of('\n', CurPos); local
1722 while (NewLine != std::string::npos) {
1726 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1729 CurPos = NewLine+1;
1730 NewLine = Asm.find_first_of('\n', CurPos);

Completed in 655 milliseconds