Searched defs:newline (Results 1 - 25 of 31) sorted by relevance

12

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarReport2.java38 public static final String newline = System.getProperty("line.separator"); field in class:GrammarReport2
91 buf.append(newline);
H A DGrammarReport.java80 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/mesa3d/src/glsl/glcpp/
H A Dpp.c77 /* Found '#'...look for spaces preceded by a newline */
97 const char *newline; local
98 while ((newline = strchr(search_start, '\n')) != NULL) {
101 /* # of characters preceding the newline. */
102 int n = newline - shader;
105 if (n >= 1 && newline[-1] == '\\')
106 backslash = newline - 1;
107 else if (n >= 2 && newline[-1] == '\r' && newline[-2] == '\\')
108 backslash = newline
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dgflags_reporting.cc123 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/linux-tools-perf/config/
H A Dutilities.mak1 # 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/
H A DTypingCommand.cpp379 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
H A DCompositeEditCommand.cpp306 size_t newline; local
308 newline = text.find('\n', offset);
309 if (newline != offset) {
312 int substringLength = newline == notFound ? length - offset : newline - offset;
315 if (newline != notFound)
318 offset = newline + 1;
319 } while (newline != notFound && offset != length);
678 // We are certain that the position is at a line break, but it may be a br or a preserved newline.
1137 // A line break is either a br or a preserved newline
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DBaseTest.java52 public static final String newline = System.getProperty("line.separator"); field in class:BaseTest
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_database_unittest.cc223 size_t newline = str.find('\n'); local
224 if (newline != std::string::npos) {
225 const std::string msg = str.substr(0, newline + 1);
/external/skia/src/core/
H A DSkStream.cpp91 void SkWStream::newline() function in class:SkWStream
733 void SkDebugWStream::newline() function in class:SkDebugWStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DProfiler.java40 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/chromium/base/metrics/
H A Dhistogram.cc147 void Histogram::WriteAscii(bool graph_it, const std::string& newline, argument
156 output->append(newline);
198 output->append(newline);
205 output->append(newline);
/external/iproute2/ip/
H A Dipxfrm.c509 FILE *fp, const char *prefix, int newline)
541 if (newline)
508 __xfrm_algo_print(struct xfrm_algo *algo, int type, int len, FILE *fp, const char *prefix, int newline) argument
/external/openssh/
H A Dsshd.c405 char *s, *newline = "\n"; local
416 newline = "\r\n";
422 SSH_VERSION, newline);
/external/ppp/pppd/
H A Doptions.c394 int i, newline, ret, err; local
426 while (getword(f, cmd, &newline, filename)) {
435 if (!getword(f, args[i], &newline, filename)) {
1107 * \<newline> is ignored.
1136 * A newline means the end of a comment; backslash-newline
1149 * Ignore characters other than newline in a comment.
1198 * This character is escaped: backslash-newline is ignored,
H A Dauth.c2320 int newline, xxx; local
2334 if (!getword(f, word, &newline, filename))
2336 newline = 1;
2342 while (!newline && getword(f, word, &newline, filename))
2344 if (!newline)
2352 newline = 0;
2361 if (!getword(f, word, &newline, filename))
2363 if (newline)
2381 if (!getword(f, word, &newline, filenam
[all...]
/external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
H A Dmarkdown.php357 \n? # maybe *one* newline
361 \n? # maybe one newline
472 (?=\n+|\Z) # followed by a newline or end of document
482 (?=\n+|\Z) # followed by a newline or end of document
684 (?:\n[ ]*)? # one optional newline followed by spaces
806 (?:\n[ ]*)? # one optional newline followed by spaces
988 (?:(?<=\n)\n|\A\n?) # Must eat the newline
1810 # newline will be replaced by a single newline so that it does not create
1823 [ ]*\n # Must be followed by newline
1893 $newline = "$void\\n"; variable
[all...]
/external/mdnsresponder/mDNSShared/
H A DDebugServices.c2045 const char * newline; local
2064 newline = ( inFlags & kDebugFlagsNoNewLine ) ? "" : "\n";
2127 newline );
2135 newline );
2289 newline );
2311 newline );
2336 newline );
2358 newline );
/external/v8/test/cctest/
H A Dtest-regexp.cc1020 Label not_at_start, newline, fail; local
1023 m.CheckCharacter('\n', &newline);
1026 m.Bind(&newline);
/external/chromium/third_party/libevent/
H A Devdns.c2782 char *const newline = strchr(start, '\n'); local
2783 if (!newline) {
2787 *newline = 0;
2789 start = newline + 1;
/external/elfutils/src/
H A Dldgeneric.c136 int newline)
153 if (first_level && newline)
135 print_file_name(FILE *s, struct usedfiles *fileinfo, int first_level, int newline) argument
/external/v8/benchmarks/
H A Dearley-boyer.js1085 "\012": "#\\newline",
1127 "newline": "\012",
2847 /* ------------------ newline ---------------------------------------------------*/
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-earley-boyer.js1079 "\012": "#\\newline",
1121 "newline": "\012",
2841 /* ------------------ newline ---------------------------------------------------*/
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-earley-boyer.js1079 "\012": "#\\newline",
1121 "newline": "\012",
2841 /* ------------------ newline ---------------------------------------------------*/
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-earley-boyer.js1079 "\012": "#\\newline",
1121 "newline": "\012",
2841 /* ------------------ newline ---------------------------------------------------*/

Completed in 616 milliseconds

12