HomeSort by relevance Sort by last modified time
    Searched refs:newline (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /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/net/data/proxy_resolver_v8_unittest/
ends_with_statement_no_semicolon.js 1 // Ends with a statement, and no terminal newline.
ends_with_comment.js 5 // We end the script with a comment (and no trailing newline).
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
SerializeOptions.java 66 * standard XML newline.
68 private String newline = "\n"; field in class:SerializeOptions
309 * @return Returns the newline.
313 return newline;
318 * @param newline
319 * The newline to set.
322 public SerializeOptions setNewline(String newline)
324 this.newline = newline;
393 clone.setNewline(newline);
    [all...]
  /external/clang/unittests/AST/
CommentLexer.cpp 102 ASSERT_EQ(tok::newline, Toks[0].getKind());
118 ASSERT_EQ(tok::newline, Toks[0].getKind());
119 ASSERT_EQ(tok::newline, Toks[1].getKind());
140 ASSERT_EQ(tok::newline, Toks[1].getKind());
160 ASSERT_EQ(tok::newline, Toks[1].getKind());
161 ASSERT_EQ(tok::newline, Toks[2].getKind());
165 // Test newline escaping.
184 ASSERT_EQ(tok::newline, Toks[2].getKind());
192 ASSERT_EQ(tok::newline, Toks[6].getKind());
196 ASSERT_EQ(tok::newline, Toks[8].getKind())
    [all...]
  /external/icu4c/tools/tzcode/
tzselect.ksh 59 newline='
61 IFS=$newline
163 *"$newline"*)
201 *"$newline"*)
272 ?*+?*) echo >&2 " $country$newline $region";;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 40 public static final String newline = System.getProperty("line.separator"); field in class:Profiler
533 buf.append(newline);
536 buf.append(newline);
539 buf.append(newline);
542 buf.append(newline);
545 buf.append(newline);
548 buf.append(newline);
551 buf.append(newline);
554 buf.append(newline);
557 buf.append(newline);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarReport2.java 38 public static final String newline = System.getProperty("line.separator"); field in class:GrammarReport2
91 buf.append(newline);
  /system/core/sh/
mktokens 42 TNL 0 newline
  /cts/libs/json/src/com/android/json/stream/
JsonWriter.java 233 newline(); method
405 private void newline() throws IOException { method in class:JsonWriter
427 newline(); method
451 newline(); method
456 newline(); method
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
gUnit.g 205 {// also determine the appropriate newline separator and get info of the first and last 2 characters (exclude '<<' and '>>')
206 String newline = System.getProperty("line.separator");
211 if ( newline.length()==1 ) {
223 // strip unwanted characters, e.g. '<<' (including a newline after it) or '>>' (including a newline before it)
225 if ( front.equals(newline) && end.equals(newline) ) {
227 if ( newline.length()==1 && getText().length()==5 ) temp = "";
228 else if ( newline.length()==2 && getText().length()==6 ) temp = "";
231 else if ( front.equals(newline) ) {
    [all...]
  /external/linux-tools-perf/config/
utilities.mak 1 # This allows us to work with the newline character:
2 define newline macro
6 newline := $(newline) macro
13 # what should replace a newline when escaping
23 # single space each newline character in the output
27 # The only solution is to change each newline into
32 escape-nl = $(subst $(newline),$(call nl-escape,$(2)),$(1))
40 unescape-nl = $(subst $(call nl-escape,$(2)),$(newline),$(1))
108 # At least GNU make gets confused by expanding a newline
    [all...]
  /frameworks/base/core/java/android/util/
JsonWriter.java 258 newline(); method
412 * as newline characters. This prevents eval() from failing with a
461 private void newline() throws IOException { method in class:JsonWriter
483 newline(); method
507 newline(); method
512 newline(); method
  /libcore/json/src/main/java/org/json/
JSONStringer.java 80 * A array with at least one value requires a comma and newline before
99 * newline before the next element.
196 newline(); method
353 private void newline() { method in class:JSONStringer
390 newline(); method
407 newline(); method
410 newline(); method
  /external/eigen/unsupported/Eigen/src/SparseExtra/
MarketIO.h 52 std::istringstream newline(line);
53 newline >> val;
60 std::istringstream newline(line);
61 newline >> valR >> valI;
205 std::istringstream newline(line);
206 newline >> n >> col;
  /external/clang/lib/AST/
CommentBriefParser.cpp 106 if (Tok.is(tok::newline)) {
117 // a space for the newline.
123 if (Tok.is(tok::newline)) {
CommentParser.cpp 91 if (P.Tok.is(tok::newline)) {
92 // If we see a single newline token between text tokens, skip it.
93 Token Newline = P.Tok;
96 P.putBack(Newline);
370 else if (Tok.is(tok::newline)) {
596 case tok::newline: {
598 if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
648 // by a newline.
649 if (Tok.is(tok::newline))
654 Tok.is(tok::newline)) {
    [all...]
  /sdk/emulator/opengl/host/tools/emugen/
EntryPoint.h 35 void print(FILE *fp = stdout, bool newline = true,
  /external/chromium/sdch/open-vcdiff/src/
gflags_reporting.cc 123 const char* newline = strchr(c_string, '\n'); local
124 if (newline == NULL && chars_in_line+chars_left < kLineLength) {
130 if (newline != NULL && newline - c_string < kLineLength - chars_in_line) {
131 int n = static_cast<int>(newline - c_string);
  /external/open-vcdiff/gflags/src/
gflags_reporting.cc 123 const char* newline = strchr(c_string, '\n'); local
124 if (newline == NULL && chars_in_line+chars_left < kLineLength) {
130 if (newline != NULL && newline - c_string < kLineLength - chars_in_line) {
131 int n = static_cast<int>(newline - c_string);
  /external/grub/docs/
kernel.c 222 newline:
235 goto newline;
kernel.c.texi 222 newline:
235 goto newline;
  /external/skia/legacy/include/core/
SkStream.h 78 virtual void newline();
323 virtual void newline() SK_OVERRIDE;
  /external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
set-href-attribute-whitespace.js 9 debug("Set href that starts with a newline");
29 debug("Set href that ends with a newline");
  /external/skia/legacy/src/xml/
SkXMLWriter.cpp 235 fStream.newline();
246 fStream.newline();
258 fStream.newline();

Completed in 527 milliseconds

1 2 3 4 5 6