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

1 2 3

  /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);
GrammarReport.java 80 public static final String newline = System.getProperty("line.separator"); field in class:GrammarReport
282 buf.append(newline);
285 buf.append(newline);
311 buf.append(newline);
  /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);
  /libcore/luni/src/main/java/java/io/
PrintStream.java 52 * contents to the target stream when a newline is encountered.
69 * automatically flushes its contents to the target stream when a newline is
76 * newline sequence.
92 * flushes its contents to the target stream when a newline is encountered.
98 * newline sequence.
363 private void newline() { method in class:PrintStream
457 * Prints a newline.
460 newline(); method
464 * Prints the string representation of the character array {@code chars} followed by a newline.
471 * Prints the string representation of the char {@code c} followed by a newline
526 newline(); method
    [all...]
  /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/harfbuzz_ng/test/shaping/
hb_test_tools.py 19 def newline (): return '\n' member in class:ColorFormatter.Null
35 def newline (): return '\n' member in class:ColorFormatter.ANSI
47 def newline (): return '<br/>\n' member in class:ColorFormatter.HTML
103 return [s1+s2+self.formatter.newline () for (s1,s2) in zip (self.symbols, oo) if s2]
109 yield self.formatter.escape (l).replace ('\n', self.formatter.newline ())
  /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...]
  /external/webkit/Source/WebCore/editing/
TypingCommand.cpp 379 size_t newline; local
380 while ((newline = text.find('\n', offset)) != notFound) {
381 if (newline != offset)
382 insertTextRunWithoutNewlines(text.substring(offset, newline - offset), false);
384 offset = newline + 1;
437 // Breaking the blockquote would also break apart the table, which is unecessary when inserting a 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...]
  /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/chromium/chrome/browser/safe_browsing/
safe_browsing_database_unittest.cc 223 size_t newline = str.find('\n'); local
224 if (newline != std::string::npos) {
225 const std::string msg = str.substr(0, newline + 1);
    [all...]
  /external/clang/include/clang/AST/
CommentLexer.h 35 newline, enumerator in enum:clang::comments::tok::TokenKind
239 /// to newline or BufferEnd, for C comments points to star in '*/'.
  /external/replicaisland/src/com/replica/replicaisland/
ConversationDialogActivity.java 103 CharSequence newline = "\n"; local
117 spannedText.replace(lastSpace, lastSpace + 1, newline, 0, 1);
  /frameworks/native/cmds/dumpstate/
utils.c 235 int newline = 0; local
239 newline = (buffer[ret - 1] == '\n');
246 if (!newline) printf("\n");
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CredentialHelper.java 225 String newline = "<br>"; local
227 sb.append(context.getString(R.string.one_userkey)).append(newline);
230 sb.append(context.getString(R.string.one_usercrt)).append(newline);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
WrapInRefactoring.java 374 InsertEdit newline = new InsertEdit(mSelectionStart + index, indentUnit); local
379 if (deletion.covers(newline)) {
385 rootEdit.addChild(newline);
  /system/core/toolbox/
getevent.c 498 char *newline = "\n"; local
521 newline = "";
624 printf("%04x%s", sw, newline);
657 printf("%s", newline);
  /external/skia/legacy/src/core/
SkStream.cpp 91 void SkWStream::newline() function in class:SkWStream
733 void SkDebugWStream::newline() function in class:SkDebugWStream
  /external/skia/src/core/
SkStream.cpp 113 void SkWStream::newline() function in class:SkWStream
774 void SkDebugWStream::newline() function in class:SkDebugWStream
  /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/test/java/org/antlr/test/
BaseTest.java 52 public static final String newline = System.getProperty("line.separator"); field in class:BaseTest
  /external/mdnsresponder/mDNSShared/
DebugServices.c 2045 const char * newline; local
    [all...]
  /external/openssh/
sshd.c 405 char *s, *newline = "\n"; local
416 newline = "\r\n";
422 SSH_VERSION, newline);
    [all...]

Completed in 729 milliseconds

1 2 3