Home | History | Annotate | Download | only in validation

Lines Matching refs:src

31 		String src = "\na\nbb\n";
32 final Source s = new Source(new StringReader(src));
38 String src = "aa\nbb\n;";
39 final Source s = new Source(new StringReader(src));
45 String src = "xx\r\nyy";
46 final Source s = new Source(new StringReader(src));
52 String src = "Hello\n\nWorld!";
53 final Source s = new Source(new StringReader(src));
61 String src = "a\nb$line-tag$\nc\nd\ne$line-tagx$\nf";
62 final Source s = new Source(new StringReader(src));
68 String src = "a\nb$line-tag$\nc\nd\ne\nf";
69 final Source s = new Source(new StringReader(src));
75 String src = "a\nb$line-tag$\nc\nd\ne$line-tag$\nf";
76 new Source(new StringReader(src));
81 final Source s = Source.getSourceFor("src", SourceTest.class);