Searched refs:NewLine (Results 1 - 10 of 10) 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/base/text/
H A Dtext_elider.cc659 void NewLine(bool output);
731 NewLine(strict_);
742 NewLine(true);
762 void RectangleString::NewLine(bool output) { function in class:__anon14255::RectangleString
834 bool NewLine();
941 NewLine();
956 if (!first_fragment && NewLine())
970 if (!NewLine())
1000 if ((current_width_ + trimmed_width > available_pixel_width_) && NewLine())
1025 bool RectangleText::NewLine() { function in class:__anon14255::RectangleText
[all...]
/external/clang/lib/Format/
H A DFormat.cpp1076 /// inserting a newline dependent on the \c NewLine.
1078 StateNode(const LineState &State, bool NewLine, StateNode *Previous) argument
1079 : State(State), NewLine(NewLine), Previous(Previous) {}
1081 bool NewLine; member in struct:clang::format::__anon15248::UnwrappedLineFormatter::StateNode
1134 addNextStateToQueue(Penalty, Node, /*NewLine=*/false);
1135 addNextStateToQueue(Penalty, Node, /*NewLine=*/true);
1159 if ((*I)->NewLine) {
1165 addTokenToState((*I)->NewLine, false, State);
1172 /// penalty of \p Penalty. Insert a line break if \p NewLine i
1173 addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode, bool NewLine) argument
[all...]
/external/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp269 unsigned NewLine = UserLoc.getLine(); local
280 // off by one. We can do better by simply incrementing NewLine here.
281 NewLine += 1;
284 CurLine = NewLine;
/external/llvm/lib/IR/
H A DAsmWriter.cpp1292 size_t NewLine = Asm.find_first_of('\n', CurPos); local
1294 while (NewLine != std::string::npos) {
1298 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1301 CurPos = NewLine+1;
1302 NewLine = Asm.find_first_of('\n', CurPos);

Completed in 548 milliseconds