Searched refs:line (Results 276 - 300 of 671) sorted by relevance

<<11121314151617181920>>

/openjdk10/jdk/test/com/sun/jdi/
H A DRedefineMulti.sh63 doSomething(); // @1 breakpoint here line 16
69 // myx.methodx1(); // line 22
102 a. add line breakpoint in start()
107 e. redefine, and set line breakpoint (see step a)
110 h. redefine, and set line breakpoint (see step a)
147 # You could replace this next line with the contents
/openjdk10/jdk/test/java/net/URLConnection/
H A DDisconnectAfterEOF.java104 // Got end-of-line
114 // empty line
132 // non-empty line - check for Content-Length
133 String line = sb.toString().toLowerCase();
134 if (line.startsWith("content-length")) {
135 StringTokenizer st = new StringTokenizer(line, ":");
139 if (line.startsWith("connection")) {
140 StringTokenizer st = new StringTokenizer(line, ":");
/openjdk10/jdk/test/sun/management/jmxremote/startstop/
H A DManagementAgentJcmd.java134 * @param c A string consumer used to inspect the jcmd output line-by-line
207 line -> {
208 if (line.contains("BindException") ||
209 line.contains(Agent.getText(AgentConfigurationError.CONNECTOR_SERVER_IO_ERROR))) {
212 output.append(line).append('\n');
213 c.accept(line);
/openjdk10/jdk/test/sun/security/krb5/
H A DIPv6.java109 String line;
110 while ((line = br.readLine()) != null) {
111 Matcher m = r.matcher(line.subSequence(0, line.length()));
114 System.out.println(line);
/openjdk10/jdk/test/sun/util/calendar/zi/
H A DRuleRec.java42 private String line; field in class:RuleRec
74 return line;
78 * Sets the line from the text file.
79 * @param line the text of the line
81 void setLine(String line) { argument
82 this.line = line;
142 * Parses a Rule line and returns a RuleRec object.
/openjdk10/langtools/test/tools/javap/
H A DT7190862.java84 for (String line: out.split(System.getProperty("line.separator"))) {
85 line = line.trim();
87 if (line.contains(instruction) && line.contains("#")) {
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/parser/
H A DParserContextFunctionNode.java52 private final int line; field in class:ParserContextFunctionNode
83 * @param line The source line of the function
87 public ParserContextFunctionNode(final long token, final IdentNode ident, final String name, final Namespace namespace, final int line, final FunctionNode.Kind kind, final List<IdentNode> parameters) { argument
90 this.line = line;
151 * @return line number of the function
154 return line;
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/
H A DConfig.java265 * The values can either be provided on a single line, or on multiple lines
266 * using the same key. When provided on a single line, the value can be
563 for (String line: lines) {
564 line = line.trim();
565 if (line.isEmpty() || line.startsWith("#") || line.startsWith(";")) {
569 if (line.charAt(0) == '[') {
571 content.add(line);
[all...]
/openjdk10/hotspot/src/share/vm/services/
H A DdiagnosticFramework.hpp52 // CmdLine is the class used to handle a command line containing a single
63 CmdLine(const char* line, size_t len, bool no_command_name);
74 // instance for each command line. The argument delimiter has to be specified.
95 CmdLine line(&(_str[_cursor]), n - _cursor, false);
99 return line;
218 // while arguments are identified by their position in the command line. The
220 // command line, options are not considered when defining an argument position.
229 // In this command line, the diagnostic command receives five parameters, two
248 void parse(CmdLine* line, char delim, TRAPS);
289 // impact on the JVM (for instance, getting the command line argument
314 parse(CmdLine* line, char delim, TRAPS) argument
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/
H A DCharInfo.java263 String line = reader.readLine();
265 while (line != null) {
266 if (line.length() == 0 || line.charAt(0) == '#') {
267 line = reader.readLine();
272 int index = line.indexOf(' ');
275 String name = line.substring(0, index);
279 if (index < line.length()) {
280 String value = line.substring(index);
295 line
[all...]
/openjdk10/jdk/test/java/awt/dnd/MissingEventsOnModalDialog/
H A DMissingEventsOnModalDialogTest.java291 private static boolean containsError(String line) { argument
292 line = line.toLowerCase();
293 return line.contains("exception") || line.contains("error")
294 || line.contains("selector");
301 String line = null;
302 while ((line = bufferedReader.readLine()) != null) {
304 exception = containsError(line);
306 stream.append(line)
[all...]
/openjdk10/jaxws/src/java.activation/share/classes/com/sun/activation/registries/
H A DMailcapFile.java246 String line = null;
249 while ((line = buf_reader.readLine()) != null) {
250 // LogSupport.log("parsing line: " + line);
252 line = line.trim();
255 if (line.charAt(0) == '#')
257 if (line.charAt(line.length() - 1) == '\\') {
259 continued += line
[all...]
/openjdk10/nashorn/test/src/jdk/nashorn/internal/runtime/doubleconv/test/
H A DBignumDtoaTest.java291 .forEach(line -> {
292 if (line.isEmpty() || line.startsWith("//")) {
293 return; // comment or empty line
295 final String[] tokens = line.split(",\\s+");
296 assertEquals(tokens.length, 3, "*" + line + "*");
312 .forEach(line -> {
313 if (line.isEmpty() || line.startsWith("//")) {
314 return; // comment or empty line
[all...]
H A DFastDtoaTest.java245 .forEach(line -> {
246 if (line.isEmpty() || line.startsWith("//")) {
247 return; // comment or empty line
249 final String[] tokens = line.split(",\\s+");
250 assertEquals(tokens.length, 3, "*" + line + "*");
284 .forEach(line -> {
285 if (line.isEmpty() || line.startsWith("//")) {
286 return; // comment or empty line
[all...]
/openjdk10/jdk/test/tools/jar/modularJar/
H A DBasic.java121 String line;
127 while ((line = reader.readLine()) != null) {
128 if (line.startsWith("message:")) {
129 message = line.substring("message:".length());
130 } else if (line.startsWith("nameAndVersion:")) {
131 line = line.substring("nameAndVersion:".length());
132 int i = line.indexOf('@');
134 name = line.substring(0, i);
135 version = line
[all...]
/openjdk10/jdk/test/sun/security/pkcs11/ec/
H A DReadPKCS12.java102 String line = reader.readLine();
103 if (line == null) {
106 line = line.trim();
107 if ((line.length() == 0) || line.startsWith("#")) {
110 String[] s = line.split(" ");
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DJTextArea.java37 * A <code>JTextArea</code> is a multi-line area that displays plain text.
49 * Alternative multi-line text classes with
58 * The <code>java.awt.TextArea</code> has the ability to do line wrapping.
62 * a bound property for line wrapping that controls whether or
63 * not it will wrap lines. By default, the line wrapping property
119 @JavaBean(defaultProperty = "UIClassID", description = "A multi-line area that displays plain text.")
288 * Sets the line-wrapping policy of the text area. If set
307 * Gets the line-wrapping policy of the text area. If set
327 * for line wrapping
355 * line numbe
395 getLineStartOffset(int line) argument
418 getLineEndOffset(int line) argument
[all...]
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/example/debug/expr/
H A DASCII_UCodeESC_CharStream.java35 /* Generated By:JavaCC: Do not edit this line. ASCII_UCodeESC_CharStream.java Version 0.7pre6 */
102 private int line = 1; field in class:ASCII_UCodeESC_CharStream
188 bufline[bufpos] = line;
245 line += (column = 1);
255 line += (column = 1);
274 bufline[bufpos] = line;
347 throw new Error("Invalid escape character at line " + line +
411 line = startline;
430 line
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DParseException.java358 String[] parameters = { filename, Integer.toString (lineNumber), message, line, pointer };
365 String[] parameters = {filename, Integer.toString (lineNumber), name, is, mustBe, line, pointer};
373 is, mustBe, line, pointer};
383 declName, baseName, line, pointer } ;
393 declName, line, pointer } ;
401 line = scanner.lastTokenLine ();
417 String[] parameters = {filename, Integer.toString (lineNumber), line, pointer};
424 String[] parameters = {filename, Integer.toString (lineNumber), arg1, line, pointer};
432 String[] parameters = {filename, Integer.toString (lineNumber), arg1, line, pointer};
439 String[] parameters = {filename, Integer.toString (lineNumber), arg1, arg2, line, pointe
451 private static String line = ""; field in class:ParseException
[all...]
/openjdk10/hotspot/test/compiler/compilercontrol/share/processors/
H A DPrintProcessor.java93 for (String line : outputAnalyzer.asLines()) {
94 Matcher matcher = COMPILED_METHOD.matcher(line);
101 + "was printed: " + method + " LINE: " + line);
/openjdk10/hotspot/test/gc/g1/ihop/lib/
H A DIhopUtils.java97 private static Long getLongByPattern(String line, Pattern pattern) { argument
98 Matcher number = pattern.matcher(line);
102 System.out.println(line);
/openjdk10/hotspot/test/native/logging/
H A DlogTestUtils.inline.hpp85 // Read a complete line from fp and return it as a resource allocated string.
98 // rewind to beginning of line
113 char* line = read_line(fp); local
114 if (line == NULL) {
117 for (char* match = strstr(line, substrs[idx]); match != NULL;) {
/openjdk10/hotspot/test/serviceability/dcmd/compiler/
H A DCodelistTest.java115 String line = lines.next();
118 if (line.contains("CodelistTest.testcaseMethod")) {
119 String[] parts = line.split(" ");
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/module/
H A DIllegalAccessMaps.java95 .filter(line -> !line.isEmpty() && !line.startsWith("#"))
/openjdk10/jdk/src/jdk.internal.opt/share/classes/jdk/internal/joptsimple/internal/
H A DColumns.java105 private List<String> piecesOfEmbeddedLine( String line, int width ) { argument
109 words.setText( line );
115 nextPiece = processNextWord( line, nextPiece, start, end, width, pieces );

Completed in 303 milliseconds

<<11121314151617181920>>