/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/ |
102-garbage-after-endif.c.expected | 1 0:2(8): preprocessor error: syntax error, unexpected IDENTIFIER, expecting NEWLINE
|
103-garbage-after-else.c.expected | 1 0:2(7): preprocessor error: syntax error, unexpected IDENTIFIER, expecting NEWLINE
|
/external/mesa3d/src/glsl/glcpp/tests/ |
102-garbage-after-endif.c.expected | 1 0:2(8): preprocessor error: syntax error, unexpected IDENTIFIER, expecting NEWLINE
|
103-garbage-after-else.c.expected | 1 0:2(7): preprocessor error: syntax error, unexpected IDENTIFIER, expecting NEWLINE
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
noeol.good | 3 end in a newline.wakuwak
|
noeol.inp | 3 end in a newline
|
noeolw.2good | 3 end in a newline
|
noeolw.good | 5 end in a newline. 6 end in a newline. 11 end in a newline. 12 end in a newline
|
noeolw.1good | 3 end in a newline. 6 end in a newline.
|
/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-libpac/test/js-unittest/ |
ends_with_statement_no_semicolon.js | 1 // Ends with a statement, and no terminal newline.
|
/external/chromium_org/net/data/proxy_resolver_v8_unittest/ |
ends_with_statement_no_semicolon.js | 1 // Ends with a statement, and no terminal newline.
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/ |
TestDotTreeGenerator.cs | 57 string newline = Environment.NewLine; 59 @"digraph {" + newline 60 + newline 61 + @" ordering=out;" + newline 62 + @" ranksep=.4;" + newline 63 + @" bgcolor=""lightgrey""; node [shape=box, fixedsize=false, fontsize=12, fontname=""Helvetica-bold"", fontcolor=""blue""" + newline 64 + @" width=.25, height=.25, color=""black"", fillcolor=""white"", style=""filled, solid, bold""];" + newline 65 + @" edge [arrowsize=.5, color=""black"", style=""bold""]" + newline 66 + newline [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/examples/mexpr/ |
MExpr.g | 9 stat: expr NEWLINE { print "$expr.value\n"; } 10 | NEWLINE 27 NEWLINE:'\r'? '\n' ;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_35.txt | 4 counter to RFC 2822, there's no separating newline here
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_35.txt | 4 counter to RFC 2822, there's no separating newline here
|
/external/clang/test/Lexer/ |
block_cmt_end.c | 14 next comment ends with normal escaped newline: 17 /* expected-warning {{escaped newline}} expected-warning {{backslash and newline}} *\ 24 next comment ends with a trigraph escaped newline: */ 26 /* expected-warning {{escaped newline between}} expected-warning {{backslash and newline separated by space}} expected-warning {{trigraph ends block comment}} *??/
|
newline-eof.c | 6 // CHECK: newline-eof.c:9:63 9 void foo() {} // expected-warning{{no newline at end of file}
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_univnewlines2k.py | 1 # Tests universal newline support for both reading and parsing files. 9 "This Python does not have universal newline support" 35 # and a class variable NEWLINE to set the expected newlines value 53 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 59 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 69 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 91 NEWLINE = None 97 NEWLINE = '\r' 101 NEWLINE = '\n' 105 NEWLINE = '\r\n [all...] |
test_univnewlines.py | 1 # Tests universal newline support for both reading and parsing files. 18 "This Python does not have universal newline support") 42 # and a class variable NEWLINE to set the expected newlines value 63 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 69 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 79 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 93 NEWLINE = '\r' 97 NEWLINE = '\n' 101 NEWLINE = '\r\n' 109 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_univnewlines2k.py | 1 # Tests universal newline support for both reading and parsing files. 9 "This Python does not have universal newline support" 35 # and a class variable NEWLINE to set the expected newlines value 53 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 59 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 69 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 91 NEWLINE = None 97 NEWLINE = '\r' 101 NEWLINE = '\n' 105 NEWLINE = '\r\n [all...] |
test_univnewlines.py | 1 # Tests universal newline support for both reading and parsing files. 18 "This Python does not have universal newline support") 42 # and a class variable NEWLINE to set the expected newlines value 63 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 69 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 79 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 93 NEWLINE = '\r' 97 NEWLINE = '\n' 101 NEWLINE = '\r\n' 109 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/examples/expr/ |
Expr.g | 16 stat: expr NEWLINE { print "$expr.value\n"; } 17 | ID '=' expr NEWLINE 19 | NEWLINE 49 NEWLINE:'\r'? '\n' ;
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/id/ |
IDLexer.g | 6 NEWLINE:'\r'? '\n' { $self->skip(); } ;
|