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

1 2 3

  /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/chromium/third_party/icu/source/tools/tzcode/
tzselect.ksh 59 newline='
61 IFS=$newline
163 *"$newline"*)
201 *"$newline"*)
272 ?*+?*) echo >&2 " $country$newline $region";;
  /external/icu4c/tools/tzcode/
tzselect.ksh 59 newline='
61 IFS=$newline
163 *"$newline"*)
201 *"$newline"*)
272 ?*+?*) echo >&2 " $country$newline $region";;
  /external/webkit/JavaScriptCore/wrec/
CharacterClass.h 43 static const CharacterClass& newline();
CharacterClass.cpp 35 const CharacterClass& CharacterClass::newline() { function in class:JSC::WREC::CharacterClass
  /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
  /bootable/bootloader/legacy/arch_msm7k/
mddi_console.c 109 if(c == '\n') goto newline;
120 newline:
  /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/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/grub/docs/
kernel.c 222 newline:
235 goto newline;
kernel.c.texi 222 newline:
235 goto newline;
  /external/skia/include/core/
SkStream.h 83 virtual void newline();
305 virtual void newline();
  /external/skia/src/xml/
SkXMLWriter.cpp 243 fStream.newline();
254 fStream.newline();
266 fStream.newline();
  /libcore/luni/src/main/java/java/io/
PrintStream.java 62 * contents to the target stream when a newline is encountered.
79 * automatically flushes its contents to the target stream when a newline is
86 * newline sequence.
102 * flushes its contents to the target stream when a newline is encountered.
108 * newline sequence.
381 private void newline() { method in class:PrintStream
519 newline(); method
622 newline(); method
709 // 0x0A is ASCII newline, 0x15 is EBCDIC newline
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CredentialHelper.java 203 String newline = "<br>"; local
205 sb.append(context.getString(R.string.one_userkey)).append(newline);
208 sb.append(context.getString(R.string.one_usercrt)).append(newline);
  /external/webkit/WebKitTools/Scripts/webkitpy/style/
error_handlers.py 42 "whitespace/newline".
  /system/core/toolbox/
getevent.c 315 char *newline = "\n"; local
338 newline = "";
428 printf("%04x%s", sw, newline);
461 printf("%s", newline);
  /external/ppp/pppd/
auth.c 2320 int newline, xxx; local
    [all...]
  /external/webkit/WebCore/editing/
TypingCommand.cpp 336 int newline; local
337 while ((newline = text.find('\n', offset)) != -1) {
338 if (newline != offset)
339 insertTextRunWithoutNewlines(text.substring(offset, newline - offset), false);
341 offset = newline + 1;
384 // Breaking the blockquote would also break apart the table, which is unecessary when inserting a newline
CompositeEditCommand.cpp 301 int newline; local
303 newline = text.find('\n', offset);
304 if (newline != offset) {
307 int substringLength = newline == -1 ? length - offset : newline - offset;
310 if (newline != -1)
313 offset = newline + 1;
314 } while (newline != -1 && offset != length);
626 // We are certain that the position is at a line break, but it may be a br or a preserved newline.
    [all...]
  /frameworks/base/cmds/dumpstate/
utils.c 124 int newline = 0; local
128 newline = (buffer[ret - 1] == '\n');
135 if (!newline) printf("\n");
  /libcore/luni/src/test/java/tests/api/java/io/
PrintStreamTest.java 356 assertTrue("Newline not written", (c = (char) isr.read()) == '\r'
377 // followed by newLine separator in the reading buffer, instead its
378 // followed by zeros. The newline is written as the last entry
382 boolean newline = false;
385 newline = true;
387 assertTrue("Newline not written", newline);
401 assertTrue("Newline not written", (c = isr.read()) == '\r' || c == '\n');
418 assertTrue("Newline not written", (c = isr.read()) == '\r' || c == '\n');
435 assertTrue("Newline not written", (c = isr.read()) == '\r' || c == '\n')
    [all...]
  /external/chromium/base/
histogram.cc 116 void Histogram::WriteAscii(bool graph_it, const std::string& newline,
125 output->append(newline);
167 output->append(newline);
174 output->append(newline);

Completed in 2911 milliseconds

1 2 3