/external/mesa3d/src/glsl/glcpp/ |
pp.c | 77 /* 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 - 2 [all...] |
/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);
|
/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. 361 private void newline() { method in class:PrintStream 455 * Prints a newline. 458 newline(); method 462 * Prints the string representation of the character array {@code chars} followed by a newline. 469 * Prints the string representation of the char {@code c} followed by a newline 524 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/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
|
CompositeEditCommand.cpp | 306 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. [all...] |
/frameworks/base/cmds/dumpstate/ |
utils.c | 124 int newline = 0; local 128 newline = (buffer[ret - 1] == '\n'); 135 if (!newline) printf("\n");
|
/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/pcre/ |
pcrecpp.cc | 362 int newline; local 363 pcre_config(PCRE_CONFIG_NEWLINE, &newline); 364 if (newline == 10) 366 else if (newline == 13) 368 else if (newline == 3338) 370 else if (newline == -1) 372 else if (newline == -2) 375 assert(NULL == "Unexpected return value from pcre_config(NEWLINE)");
|
pcre_dfa_exec.c | 80 #define NLBLOCK md /* Block containing newline information */ 2838 int newline; local [all...] |
pcre_compile.c | 49 #define NLBLOCK cd /* Block containing newline information */ 397 "inconsistent NEWLINE options\0" 6821 int firstbyte, reqbyte, newline; local [all...] |
pcre_exec.c | 49 #define NLBLOCK md /* Block containing newline information */ 5606 int newline; local [all...] |
pcregrep.c | 138 static char *newline = NULL; variable 230 { OP_NODATA, 'F', NULL, "fixed-strings", "patterns are sets of newline-separated strings" }, 245 { OP_STRING, 'N', &newline, "newline=type", "set newline type (CR, LF, CRLF, ANYCRLF or ANY)" }, 286 /* UTF-8 tables - used only when the newline setting is "any". */ 637 Returns: pointer to the last byte of the line, including the newline byte(s) 1088 the next line, excluding the terminating newline. After matching, we always [all...] |
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
CredentialHelper.java | 221 String newline = "<br>"; local 223 sb.append(context.getString(R.string.one_userkey)).append(newline); 226 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 | 367 InsertEdit newline = new InsertEdit(mSelectionStart + index, indentUnit); local 372 if (deletion.covers(newline)) { 378 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/src/core/ |
SkStream.cpp | 104 void SkWStream::newline() function in class:SkWStream 729 void SkDebugWStream::newline() function in class:SkDebugWStream
|
/external/antlr/src/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/ppp/pppd/ |
options.c | 394 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, [all...] |
auth.c | 2320 int newline, xxx; local [all...] |
/external/v8/test/cctest/ |
test-regexp.cc | 1011 Label not_at_start, newline, fail; local [all...] |
/external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/ |
markdown.php | 357 \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 1893 $newline = "$void\\n"; variable [all...] |
/external/chromium/third_party/libevent/ |
evdns.c | 2782 char *const newline = strchr(start, '\\n'); local [all...] |