Searched refs:line (Results 101 - 125 of 671) sorted by relevance

1234567891011>>

/openjdk10/hotspot/test/serviceability/jdwp/
H A DStreamHandler.java39 * Called when a line has been read from the process output stream
41 * @param s the line
72 String line;
73 while ((line = br.readLine()) != null) {
74 listener.onStringRead(this, line);
H A DDebuggeeLauncher.java53 * @param line line from the debuggee's stderr
55 void onDebuggeeError(String line); argument
145 public void onStringRead(StreamHandler handler, String line) { argument
148 listener.onDebuggeeError(line);
150 processDebuggeeOutput(line);
154 private void processDebuggeeOutput(String line) { argument
155 StringTokenizer st = new StringTokenizer(line);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DCollisionInfo.java58 int line = loc.getLineNumber();
62 if( line!=-1 )
64 Integer.toString(line), sysId );
/openjdk10/jdk/test/sun/security/smartcardio/
H A DTestTransmit.java66 String line = reader.readLine();
67 if (line == null) {
70 if (line.startsWith(CMD_MARKER)) {
71 System.out.println(line);
72 line = line.substring(CMD_MARKER.length());
73 command = parse(line);
74 } else if (line.startsWith(RES_MARKER)) {
75 System.out.println(line);
76 line
[all...]
/openjdk10/jdk/test/sun/net/www/protocol/https/NewImpl/
H A DComHostnameVerifier.java90 String line = in.readLine();
91 if (line == null)
94 // extract class from GET line
95 if (line.startsWith("GET /")) {
96 line = line.substring(5, line.length()-1).trim();
97 int index = line.indexOf(' ');
99 path = line.substring(0, index);
105 line
[all...]
H A DJavaxHostnameVerifier.java86 String line = in.readLine();
88 // extract class from GET line
89 if (line == null)
92 if (line.startsWith("GET /")) {
93 line = line.substring(5, line.length()-1).trim();
94 int index = line.indexOf(' ');
96 path = line.substring(0, index);
102 line
[all...]
/openjdk10/langtools/test/tools/javac/api/ToolProvider/
H A DToolProviderTest2.java67 for (String line : lines) {
68 System.err.println(line);
69 if (line.contains("com.sun.tools.javac."))
/openjdk10/langtools/test/tools/javap/
H A DT8035104.java43 String line = lines[i];
44 if (line.matches(" *minor version: [0-9.]+"))
46 if (line.matches(" *SourceFile: .+"))
/openjdk10/hotspot/src/share/vm/compiler/
H A DmethodMatcher.cpp94 bool MethodMatcher::canonicalize(char * line, const char *& error_msg) { argument
95 char* colon = strstr(line, "::");
107 char* pos = line;
122 char* pos = strchr(line, '.');
148 for (char* lp = line; *lp != '\0'; lp++) {
152 // Allow ',' for spaces (eases command line quoting).
231 void skip_leading_spaces(char*& line, int* total_bytes_read ) { argument
233 sscanf(line, "%*[ \t]%n", &bytes_read);
235 line += bytes_read;
240 void MethodMatcher::parse_method_pattern(char*& line, cons argument
346 parse_method_pattern(char* line, const char*& error_msg) argument
384 parse_method_pattern(char* line, const char*& error_msg) argument
[all...]
H A DcompilerOracle.hpp81 static void parse_from_line(char* line);
82 static void parse_compile_only(char * line);
/openjdk10/hotspot/test/runtime/Thread/
H A DTestThreadDumpMonitorContention.java177 // Reached a blank line which is the end of the
187 static boolean checkBlankLine(String line) { argument
188 if (line.length() == 0) {
198 // Process the locked line here if we found one.
224 static boolean checkLockedLine(String line) { argument
225 Matcher matcher = LOCK_PATTERN.matcher(line);
228 System.out.println("locked_line='" + line + "'");
230 locked_match_list[locked_line_match_cnt] = new String(line);
237 // It's strange, but a locked line can also
248 System.err.println("ERROR: header line doe
299 checkWaitingLine(String line) argument
[all...]
/openjdk10/hotspot/test/compiler/jvmci/compilerToVM/
H A DGetFlagValueTest.java79 for (String line : lines) {
80 if (line.indexOf('=') != -1) {
81 line = line.trim();
82 Matcher m = flagLine.matcher(line);
83 Asserts.assertTrue(m.matches(), "Unexpected line in -XX:+PrintFlagsFinal output: " + line);
/openjdk10/jdk/make/src/classes/build/tools/generatecharacter/
H A DPropList.java62 String line = null;
64 while ((line = sbfr.readLine()) != null) {
66 if (line.length() <= 1 || line.charAt(0) == '#') {
69 m.reset(line);
89 System.out.printf("Warning: Unrecognized line %d <%s>%n", lineNo, line);
/openjdk10/jdk/test/sun/tools/jhsdb/
H A DAlternateHashingTest.java76 String line;
78 while ((line = reader.readLine()) != null) {
79 line = line.trim();
80 System.out.println(line);
82 if (line.contains(expectedMessage)) {
/openjdk10/jdk/test/sun/util/logging/
H A DSourceClassName.java78 String line;
82 while ((line = reader.readLine()) != null) {
83 line = line.trim();
84 System.out.println(line);
85 record[i++] = line;
/openjdk10/hotspot/src/share/vm/adlc/
H A Dfilebuff.hpp54 char *_bufeol; // A pointer to the last complete line end
71 // This returns a pointer to the start of the current line in the buffer,
72 // and increments bufeol and filepos to point at the end of that line.
75 void set_linenum(int line) { _linenum = line; } argument
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DInvalidCharacter.java45 public InvalidCharacter (String filename, String line, int lineNumber, int pos, char ch) argument
55 String[] parameters = {filename, Integer.toString (lineNumber), "" + ch, Integer.toString ((int)ch), line, pointer};
/openjdk10/hotspot/test/runtime/MirrorFrame/
H A DTest8003720.java67 public static void println(String line) { argument
69 System.out.println(line);
/openjdk10/jdk/make/src/classes/build/tools/module/
H A DGenModuleLoaderMap.java84 for (String line : Files.readAllLines(source)) {
85 if (line.contains("@@BOOT_MODULE_NAMES@@")) {
86 line = patch(line, "@@BOOT_MODULE_NAMES@@", bootModules, needsQuotes);
87 } else if (line.contains("@@PLATFORM_MODULE_NAMES@@")) {
88 line = patch(line, "@@PLATFORM_MODULE_NAMES@@", platformModules, needsQuotes);
90 writer.println(line);
/openjdk10/jdk/src/java.instrument/share/native/libinstrument/
H A DJPLISAssert.h74 int line);
87 int line);
/openjdk10/jdk/test/com/sun/net/httpserver/
H A DMissingTrailingSpace.java107 String line = reader.readLine();
108 if ( !line.endsWith(" ") ) {
112 + "Should be: " + "\"" + line + " \""
113 + ", but returns: " + "\"" + line + "\".");
115 for (; line != null; line = reader.readLine()) {
116 if (line.isEmpty()) {
119 System.out.println("\"" + line + "\"");
/openjdk10/jdk/test/java/util/logging/LogManager/Configuration/
H A DInvalidEscapeConfigurationTest.java56 for (String line : validEscapes) {
57 test(line, true);
59 for (String line : invalidEscapes) {
60 test(line, false);
83 public static void test(String line, boolean valid) throws IOException { argument
85 + " line \"" +line + "\"";
91 new ByteArrayInputStream(line.getBytes("UTF-8"));
113 String content = defaultConfiguration() + '\n' + line + '\n';
/openjdk10/jdk/test/javax/sound/midi/Gervill/SoftAudioSynthesizer/
H A DOpen.java50 SourceDataLine line = new DummySourceDataLine(); //AudioSystem.getSourceDataLine(new AudioFormat(44100, 16, 2, true, false));
51 synth.open(line, null);
/openjdk10/jdk/test/sanity/client/lib/SwingSet3/src/com/sun/swingset3/demos/tree/
H A DTreeDemo.java99 // read one line at a time, put into tree
100 String line = reader.readLine();
101 while (line != null) {
102 // System.out.println("reading in: ->" + line + "<-");
103 char linetype = line.charAt(0);
106 catagory = new DefaultMutableTreeNode(line.substring(2));
111 catagory.add(artist = new DefaultMutableTreeNode(line.substring(2)));
116 artist.add(record = new DefaultMutableTreeNode(line.substring(2)));
121 record.add(new DefaultMutableTreeNode(line.substring(2)));
127 line
[all...]
/openjdk10/langtools/test/tools/javac/code/
H A DArrayClone.java52 for (String line: out.split("(\\n|\\r\\n?)")) {
54 if (line.matches(match))

Completed in 239 milliseconds

1234567891011>>