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

1 2 3 4 5 6

  /external/chromium_org/ash/system/user/
login_status.cc 45 base::string16 newline = multiline ? base::ASCIIToUTF16("\n") local
47 ReplaceSubstringsAfterOffset(&message, 0, base::ASCIIToUTF16("\\n"), newline);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextInsertionBaseCommand.h 50 // lienLength doesn't include the newline character. So the value of lineLength could be 0.
55 size_t newline; local
56 while ((newline = string.find('\n', offset)) != kNotFound) {
57 operation(offset, newline - offset, false);
58 offset = newline + 1;
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
pp.c 85 /* Found '#'...look for spaces preceded by a newline */
105 const char *newline; local
106 while ((newline = strchr(search_start, '\n')) != NULL) {
109 /* # of characters preceding the newline. */
110 int n = newline - shader;
113 if (n >= 1 && newline[-1] == '\\')
114 backslash = newline - 1;
115 else if (n >= 2 && newline[-1] == '\r' && newline[-2] == '\\')
116 backslash = newline - 2
    [all...]
  /external/mesa3d/src/glsl/glcpp/
pp.c 85 /* Found '#'...look for spaces preceded by a newline */
105 const char *newline; local
106 while ((newline = strchr(search_start, '\n')) != NULL) {
109 /* # of characters preceding the newline. */
110 int n = newline - shader;
113 if (n >= 1 && newline[-1] == '\\')
114 backslash = newline - 1;
115 else if (n >= 2 && newline[-1] == '\r' && newline[-2] == '\\')
116 backslash = newline - 2
    [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);
  /external/chromium_org/tools/gyp/pylib/gyp/
ninja_syntax.py 23 def newline(self): member in class:Writer
  /external/chromium_org/third_party/npapi/npspy/windows/
loggerw.cpp 159 size_t newline = string.find('\n'); local
160 if(newline != std::string::npos) {
  /external/iputils/
tftpsubs.c 75 int newline = 0; /* fillbuf: in middle of newline expansion */ variable
87 newline = 0; /* init crlf flag */
143 if (newline) {
147 newline = 0;
155 newline = 1;
  /external/smali/baksmali/src/test/java/org/jf/baksmali/
AnalysisTest.java 107 String newline = System.getProperty("line.separator"); local
108 Assert.assertEquals(smaliContents.replace("\r", "").replace("\n", newline),
109 stringWriter.toString().replace("\r", "").replace("\n", newline));
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
format.py 42 def newline(self): member in class:Formatter
  /external/fonttools/Lib/fontTools/misc/
xmlWriter.py 30 self.newline()
67 def newline(self): member in class:XMLWriter
80 self.newline()
115 self.newline()
  /external/lldb/source/Host/common/
TimeValue.cpp 156 char *newline = ::strpbrk(time_cstr, "\n\r"); local
157 if (newline)
158 *newline = '\0';
  /external/mesa3d/src/gallium/tools/trace/
format.py 42 def newline(self): member in class:Formatter
  /external/okhttp/okio/src/main/java/okio/
RealBufferedSource.java 84 long newline = indexOf((byte) '\n'); local
86 if (newline == -1) {
90 return buffer.readUtf8Line(newline);
94 long newline = indexOf((byte) '\n'); local
95 if (newline == -1L) throw new EOFException();
96 return buffer.readUtf8Line(newline);
  /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...]
  /bootable/recovery/uncrypt/
uncrypt.c 181 char* newline = strchr(fn, '\n'); local
182 if (newline) *newline = 0;
  /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/chromium_org/chrome/browser/notifications/sync_notifier/
synced_notification.cc 115 base::string16 newline = base::UTF8ToUTF16("\n"); local
  /external/chromium_org/third_party/pexpect/
screen.py 35 CR = 13 # Move cursor to left margin or newline.
81 each screen line is terminated by a newline. """
146 def newline (self): member in class:screen
  /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/perf-3.12.0/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/lldb/test/pexpect-2.4/
screen.py 19 CR = 13 # Move cursor to left margin or newline.
65 each screen line is terminated by a newline. """
130 def newline (self): member in class:screen
  /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
  /frameworks/native/opengl/tools/glgen2/registry/
reg.py 443 # newline() - print a newline to the output file (utility function)
512 def newline(self): member in class:COutputGenerator
524 self.newline()
528 self.newline()
551 self.newline()
556 self.newline()
575 self.newline()
    [all...]

Completed in 1557 milliseconds

1 2 3 4 5 6