OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NewLine
(Results
1 - 10
of
10
) sorted by null
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
TestFixtureBase.cs
42
public static readonly string NL = Environment.
NewLine
;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs
53
public static readonly string
NewLine
= Environment.
NewLine
;
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
);
517
// buf.Append(
newline
);
[
all
...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs
53
public static readonly string
NewLine
= Environment.
NewLine
;
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
);
568
// buf.Append(
newline
);
[
all
...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
JSystem.cs
74
return Environment.
NewLine
;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
JSystem.cs
73
return Environment.
NewLine
;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestDotTreeGenerator.cs
57
string
newline
= Environment.
NewLine
;
59
@"digraph {" +
newline
60
+
newline
61
+ @" ordering=out;" +
newline
62
+ @" ranksep=.4;" +
newline
63
+ @" bgcolor=""lightgrey""; node [shape=box, fixedsize=false, fontsize=12, fontname=""Helvetica-bold"", fontcolor=""blue""" +
newline
64
+ @" width=.25, height=.25, color=""black"", fillcolor=""white"", style=""filled, solid, bold""];" +
newline
65
+ @" edge [arrowsize=.5, color=""black"", style=""bold""]" +
newline
66
+
newline
[
all
...]
/external/chromium_org/ui/gfx/
text_elider.cc
675
// |output| is true, add a
newline
to the output string if the rectangular
678
void
NewLine
(bool output);
697
// True when we do whitespace to
newline
conversions ourselves.
750
NewLine
(strict_);
761
NewLine
(true);
781
void RectangleString::
NewLine
(bool output) {
[
all
...]
/external/clang/lib/Format/
Format.cpp
343
moveStateToNextToken(State, /*DryRun=*/false, /*
Newline
=*/false);
405
/// \brief Whether a
newline
needs to be inserted before the block's closing
408
/// We only want to insert a
newline
before the closing brace if there also
409
/// was a
newline
after the beginning left brace.
561
bool
Newline
= mustBreak(State) ||
563
addTokenToState(
Newline
, /*DryRun=*/false, State);
570
/// Puts the token on the current line if \p
Newline
is \c false and adds a
575
unsigned addTokenToState(bool
Newline
, bool DryRun, LineState &State) {
597
if (
Newline
) {
[
all
...]
/external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp
232
// need to emit a
newline
between tokens on different lines.
269
unsigned
NewLine
= UserLoc.getLine();
280
// off by one. We can do better by simply incrementing
NewLine
here.
281
NewLine
+= 1;
284
CurLine =
NewLine
;
518
//
newline
characters.
575
//
newline
characters.
/external/llvm/lib/IR/
AsmWriter.cpp
[
all
...]
Completed in 1085 milliseconds