/external/chromium-libpac/test/js-unittest/ |
ends_with_comment.js | 5 // We end the script with a comment (and no trailing newline).
|
/external/chromium_org/net/data/proxy_resolver_v8_unittest/ |
ends_with_comment.js | 5 // We end the script with a comment (and no trailing newline).
|
/external/chromium_org/tools/gyp/test/mac/xcode-gcc/ |
warn_about_missing_newline.c | 5 // Important: Don't terminate this file with a newline.
|
/external/clang/test/FixIt/ |
fixit-newline-style.c | 3 // This file intentionally uses a CRLF newline style
|
/external/clang/test/Lexer/ |
newline-eof-c++98-compat.cpp | 4 void foo() {} // expected-warning{{C++98 requires newline at end of file}
|
escape_newline.c | 2 // RUN: %clang_cc1 -E -trigraphs %s 2>&1 | grep 'backslash and newline separated by space'
|
/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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
mimify.py | 96 newline = '' 102 newline = newline + line[pos:res.start(0)] + \ 105 return newline + line[pos:] 109 newline = '' 118 newline = newline + line[pos:res.start(0)] + mime_decode(match) 120 return newline + line[pos:] 196 newline = ifile.readline() 197 if newline[:len(QUOTE)] == QUOTE [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
mimify.py | 96 newline = '' 102 newline = newline + line[pos:res.start(0)] + \ 105 return newline + line[pos:] 109 newline = '' 118 newline = newline + line[pos:res.start(0)] + mime_decode(match) 120 return newline + line[pos:] 196 newline = ifile.readline() 197 if newline[:len(QUOTE)] == QUOTE [all...] |
/external/chromium_org/third_party/angle/tests/preprocessor_tests/ |
comment_test.cpp | 27 testing::Values("//foo\n", // With newline. 28 "//foo", // Without newline. 35 "/*foo\n*/", // With newline.
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/ |
address_field_util.h | 29 NEWLINE = -1 33 // |fields|. The |fields| may also contain NEWLINE elements. For example, parses 34 // "%S%C%n%D%X" into {ADMIN_AREA, LOCALITY, NEWLINE, DEPENDENT_LOCALITY,
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
DebugGrammar.g3 | 53 stat: expr NEWLINE -> expr 54 | ID '=' expr NEWLINE -> ^('=' ID expr) 55 | func NEWLINE -> func 56 | NEWLINE -> // ignore 94 NEWLINE
|
ProfileGrammar.g3 | 53 stat: expr NEWLINE -> expr 54 | ID '=' expr NEWLINE -> ^('=' ID expr) 55 | func NEWLINE -> func 56 | NEWLINE -> // ignore 94 NEWLINE
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/ |
PemWriter.java | 89 this.newLine(); 92 this.newLine(); 118 this.newLine(); 127 this.newLine(); 135 this.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/libaddressinput/chromium/cpp/test/ |
address_field_util_test.cc | 29 using i18n::addressinput::NEWLINE; 42 expected.push_back(static_cast<AddressField>(NEWLINE)); 44 expected.push_back(static_cast<AddressField>(NEWLINE)); 46 expected.push_back(static_cast<AddressField>(NEWLINE)); 49 expected.push_back(static_cast<AddressField>(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/clang/unittests/AST/ |
CommentLexer.cpp | 102 ASSERT_EQ(tok::newline, Toks[0].getKind()); 118 ASSERT_EQ(tok::newline, Toks[0].getKind()); 119 ASSERT_EQ(tok::newline, Toks[1].getKind()); 140 ASSERT_EQ(tok::newline, Toks[1].getKind()); 160 ASSERT_EQ(tok::newline, Toks[1].getKind()); 161 ASSERT_EQ(tok::newline, Toks[2].getKind()); 165 // Test newline escaping. 184 ASSERT_EQ(tok::newline, Toks[2].getKind()); 192 ASSERT_EQ(tok::newline, Toks[6].getKind()); 196 ASSERT_EQ(tok::newline, Toks[8].getKind()) [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/t/examples/ |
expr.t | 23 stat: expr NEWLINE { print "$expr.value\n"; } 24 | ID '=' expr NEWLINE 26 | NEWLINE 56 NEWLINE:'\r'? '\n' ;
|
/external/e2fsprogs/ |
depfix.sed | 32 # Now insert a trailing newline...
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/ |
Grammar.txt | 17 #diagram:token NEWLINE 29 # NB: compound_stmt in single_input is followed by extra NEWLINE! 30 file_input: (NEWLINE | stmt)* ENDMARKER 31 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE 32 eval_input: testlist NEWLINE* ENDMARKER 34 decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE 53 simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE 99 suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/ |
Grammar.txt | 17 #diagram:token NEWLINE 29 # NB: compound_stmt in single_input is followed by extra NEWLINE! 30 file_input: (NEWLINE | stmt)* ENDMARKER 31 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE 32 eval_input: testlist NEWLINE* ENDMARKER 34 decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE 53 simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE 99 suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
Profiler.cs | 53 public static readonly string NewLine = Environment.NewLine; 496 buf.Append(NewLine); 499 buf.Append(NewLine); 502 buf.Append(NewLine); 505 buf.Append(NewLine); 508 buf.Append(NewLine); 511 buf.Append(NewLine); 514 buf.Append(NewLine); 517 // buf.Append(newline); [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
Profiler.cs | 53 public static readonly string NewLine = Environment.NewLine; 547 buf.Append(NewLine); 550 buf.Append(NewLine); 553 buf.Append(NewLine); 556 buf.Append(NewLine); 559 buf.Append(NewLine); 562 buf.Append(NewLine); 565 buf.Append(NewLine); 568 // buf.Append(newline); [all...] |