HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 251 - 275 of 1097) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
SerializedGrammar.java 6 Redistribution and use in source and binary forms, with or without
11 2. Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
20 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
44 public char type; // in {l, p, t, c}
93 DataInputStream in = new DataInputStream(bos); local
94 readFile(in);
95 in.close()
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
JPDADebuggeeSynchronizer.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
56 protected DataInputStream in; field in class:JPDADebuggeeSynchronizer
107 msg = in.readUTF();
127 msg = in.readUTF();
146 msg = in.readUTF();
183 "[SYNC] Exception in binding for socket sync connection", e);
200 in = new DataInputStream(clientSocket.getInputStream());
203 "[SYNC] Exception in accepting socket sync connection", e);
221 in = new DataInputStream(clientSocket.getInputStream())
    [all...]
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
UnixSocketTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
52 InputStream in = worker.getInputStream(); local
53 in.read();
104 // Port 0 is not allowed to be used in connect() on some platforms,
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
68 InputStream in = proc.getInputStream(); local
72 while ((result = in.read(bytes)) != -1) {
79 in.close();
119 InputStream in = proc.getInputStream(); local
123 while ((result = in.read(bytes)) != -1) {
130 in.close();
Support_HttpServer.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
218 InputStream in = socket.getInputStream(); local
224 while (((line = readln(in)) != null) && (line.length() > 1)) {
227 // determine the resource requested in the first line
286 postTest(length, in);
291 in.close();
366 // the URL was in the format:
446 private void postTest(int length, InputStream in) {
451 data.write(in.read())
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/resource/
Support_Resources.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
91 InputStream in = Support_Resources.getStream(src); local
94 copyLocalFileTo(dst, in);
104 public static void copyLocalFileTo(File dest, InputStream in) throws IOException {
109 while ((result = in.read(buf)) != -1) {
112 in.close();
120 InputStream in = new URL(url).openStream(); local
122 copyLocalFileTo(temp, in);