Searched refs:NewLine (Results 1 - 12 of 12) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
H A DTestFixtureBase.cs42 public static readonly string NL = Environment.NewLine;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DJSystem.cs73 return Environment.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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DJSystem.cs74 return Environment.NewLine;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
H A DTestDotTreeGenerator.cs57 string newline = Environment.NewLine;
/external/chromium_org/ui/gfx/
H A Dtext_elider.cc351 void NewLine(bool output);
423 NewLine(strict_);
434 NewLine(true);
454 void RectangleString::NewLine(bool output) { function in class:gfx::__anon16909::RectangleString
526 bool NewLine();
634 NewLine();
649 if (!first_fragment && NewLine())
663 if (!NewLine())
692 if ((current_width_ + trimmed_width > available_pixel_width_) && NewLine())
717 bool RectangleText::NewLine() { function in class:gfx::__anon16909::RectangleText
[all...]
/external/clang/lib/Format/
H A DFormatToken.cpp90 bool NewLine = false; local
104 NewLine = true;
108 Penalty += Indenter->addTokenToState(State, NewLine, DryRun, ExtraSpaces);
H A DFormat.cpp955 /// inserting a newline dependent on the \c NewLine.
957 StateNode(const LineState &State, bool NewLine, StateNode *Previous) argument
958 : State(State), NewLine(NewLine), Previous(Previous) {}
960 bool NewLine; member in struct:clang::format::__anon17898::UnwrappedLineFormatter::StateNode
1110 addNextStateToQueue(Penalty, Node, /*NewLine=*/false, &Count, &Queue);
1112 addNextStateToQueue(Penalty, Node, /*NewLine=*/true, &Count, &Queue);
1142 formatChildren(State, (*I)->NewLine, /*DryRun=*/false, Penalty);
1143 Penalty += Indenter->addTokenToState(State, (*I)->NewLine, false);
1146 if ((*I)->NewLine) {
1159 addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode, bool NewLine, unsigned *Count, QueueType *Queue) argument
1197 formatChildren(LineState &State, bool NewLine, bool DryRun, unsigned &Penalty) argument
[all...]
/external/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp264 unsigned NewLine = UserLoc.getLine(); local
275 // off by one. We can do better by simply incrementing NewLine here.
276 NewLine += 1;
279 CurLine = NewLine;
/external/chromium_org/base/i18n/
H A Dbuild_utf8_validator_tables.cc144 void NewLine() { function in class:__anon2273::TablePrinter
419 table_printer.NewLine();
/external/llvm/lib/IR/
H A DAsmWriter.cpp1298 size_t NewLine = Asm.find_first_of('\n', CurPos); local
1300 while (NewLine != std::string::npos) {
1304 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1307 CurPos = NewLine+1;
1308 NewLine = Asm.find_first_of('\n', CurPos);

Completed in 295 milliseconds