Home | History | Annotate | Download | only in util

Lines Matching defs:findInLine

4906      * @tests java.util.Scanner#findInLine(Pattern)
4912 s.findInLine((Pattern) null);
4916 String result = s.findInLine(Pattern.compile("^"));
4918 result = s.findInLine(Pattern.compile("$"));
4922 * When we use the operation of findInLine(Pattern), the match region
4926 result = s.findInLine(Pattern.compile("a\nb*"));
4930 result = s.findInLine(Pattern.compile("\\."));
4934 result = s.findInLine(Pattern.compile("\\p{Lower}+"));
4940 result = s.findInLine(Pattern.compile("\\p{Digit}{5}"));
4950 result = s.findInLine(Pattern.compile("\\p{Lower}+"));
4962 result = s.findInLine(Pattern.compile("\\p{Digit}+"));
4971 s.findInLine((Pattern) null);
4977 result = s.findInLine(Pattern.compile("test"));
4995 result = s.findInLine(Pattern.compile("test"));
5002 result = s.findInLine("est");
5011 assertEquals("est", s.findInLine("est"));
5014 result = s.findInLine("est");
5016 result = s.findInLine("est");
5020 result = s.findInLine("est");
5022 result = s.findInLine("est");
5025 result = s.findInLine("est");
5028 result = s.findInLine("est");
5033 result = s.findInLine(Pattern.compile( "^\\s*(?:\\*(?=[^/]))"));
5040 s.findInLine((String) null);
5046 s.findInLine((String) null);
5051 s.findInLine("test");
5059 String result = s.findInLine("^");
5062 result = s.findInLine("$");
5065 // When we use the operation of findInLine(Pattern), the match region
5068 result = s.findInLine("a\nb*");
5072 result = s.findInLine("\\.");
5076 result = s.findInLine("\\p{Lower}+");
5082 result = s.findInLine("\\p{Digit}{5}");
5092 result = s.findInLine("\\p{Lower}+");
5104 result = s.findInLine("\\p{Digit}+");
5111 result = s.findInLine("test");
5129 result = s.findInLine("test");
5136 result = s.findInLine("est");
5138 result = s.findInLine("est");
5142 result = s.findInLine("est");
5144 result = s.findInLine("est");
5148 result = s.findInLine("est");
5150 result = s.findInLine("est");