/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
RandomPhrase.java | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 78 if ( debug ) System.out.println("state "+state); 80 if ( debug ) System.out.println("dangling state: "+state); 86 if ( debug ) System.out.println("pop invoking state "+invokingState); 87 //System.out.println("leave "+state.enclosingRule.name); 99 if ( debug ) System.out.println("push state "+state); 100 //System.out.println("call "+((RuleClosureTransition)t0).rule.name); 101 //System.out.println("stack depth="+ruleInvocationStack.size()); 112 System.out.println("weird: no decision number but a choice node"); 118 if ( debug ) System.out.println("randomAlt="+randomAlt) [all...] |
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/ |
UnixSocketTest.java | 55 OutputStream out = worker.getOutputStream(); local 56 out.write(new byte[42]);
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_Exec.java | 75 System.out.write(bytes, 0, result); 126 System.out.write(bytes, 0, result); 225 System.out.println("Exec: " + commandLine.toString()); 226 System.out.println(); 254 ByteArrayOutputStream out = 256 PrintStream printer = new PrintStream(out); 261 errBuf.append(new String(out.toByteArray()));
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/ |
AttributeTable.java | 220 Hashtable out = new Hashtable(); local 227 out.put(key, in.get(key)); 230 return out;
|
/external/conscrypt/src/main/java/org/conscrypt/ |
FileClientSessionCache.java | 202 FileOutputStream out; local 204 out = new FileOutputStream(file); 221 out.write(sessionData); 228 out.close();
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
CatchStructs.java | 105 * @param out {@code non-null;} where to dump 108 public void debugPrint(PrintWriter out, String prefix) { 109 annotateEntries(prefix, out, null); 138 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local 140 // Write out the handlers "header" consisting of its size in entries. 142 out.writeUleb128(handlerOffsets.size()); 144 // Now write the lists out in order, noting the offset of each. 152 mapping.setValue(out.getCursor()); 156 out.writeSleb128(-(listSize - 1)); 159 out.writeSleb128(listSize) [all...] |
ClassDataItem.java | 192 * Prints out the contents of this instance, in a debugging-friendly 195 * @param out {@code non-null;} where to output to 198 public void debugPrint(Writer out, boolean verbose) { 199 PrintWriter pw = Writers.printWriterFor(out); 327 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local 329 encodeOutput(addedTo.getFile(), out); local 330 encodedForm = out.toByteArray(); 335 * Writes out the encoded form of this instance. 338 * @param out {@code non-null;} where to write to 340 private void encodeOutput(DexFile file, AnnotatedOutput out) { [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/ |
RSSFeedWatcherTask.java | 99 System.out.println((i==0 && missingActions==2 ? Messages.getString("RSSFeedWatcherTask.WarningNoScriptAction") : Messages.getString("RSSFeedWatcherTask.WarningNoCommandlineParams")) + SP + feedWatchActions ); //$NON-NLS-1$ //$NON-NLS-2$ 112 System.out.println(Messages.getString("RSSFeedWatcherTask.PleaseRunThisTaskLater") + SP + file); //$NON-NLS-1$ 113 System.out.println(Messages.getString("RSSFeedWatcherTask.ToTheLatestVersion") + SP + feedURL); //$NON-NLS-1$ 131 if (debug>0) { System.out.println(Messages.getString("RSSFeedWatcherTask.Compare") + SP + file + Messages.getString("RSSFeedWatcherTask.with") + tmpFile + CL); } //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ 160 System.out.println(Messages.getString("RSSFeedWatcherTask.GotOldNodeContents") + CL + SP + oldContent); //$NON-NLS-1$ 161 System.out.println(Messages.getString("RSSFeedWatcherTask.GotNewNodeContents") + CL + SP + newContent); //$NON-NLS-1$ 184 System.out.println(Messages.getString("RSSFeedWatcherTask.RunExecTask") + CL + SP + action + SP + commandline); //$NON-NLS-1$ 188 String out = null; local 190 out = exec.getProject().getProperty(RSSFeedUtil.RUN_EXEC_TASK_ERROR); 191 if (!isNullString(out)) { this.getProject().setProperty(feedWatchActionError + DOT + j, out); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
FingerPrint.java | 215 OutputStream out = null; local 217 out = new BufferedOutputStream(new FileOutputStream(outputFile)); 218 imageLoader.save(out, SWT.IMAGE_GIF); 223 if (out != null) { 225 out.close();
|
/external/emma/core/java12/com/vladium/emma/rt/ |
InstrClassLoader.java | 110 // if the class was on the forced delegation list, error out: 202 murle.printStackTrace (System.out); 304 public void debugDump (final PrintWriter out) 306 if (out != null) 308 out.println (this + ": " + m_cacheHits + " class cache hits, " + m_cacheMisses + " misses"); 391 private static void readFully (final InputStream in, final ByteArrayOStream out, final byte [] buf) 396 out.write (buf, 0, read);
|
/external/emma/tools/java/com/vladium/tools/ |
ClassDep.java | 88 final FileOutputStream out = new FileOutputStream (outFile); local 93 result.store (out, "this file is auto-generated, do not edit"); 95 out.close ();
|
/external/guava/guava-tests/test/com/google/common/io/ |
ByteStreamsTest.java | 225 OutputStream out = okWrite.getOutput(); local 226 ByteStreams.copy(okRead, out); 229 out.close(); 231 out = brokenWrite.getOutput(); 233 ByteStreams.copy(okRead, out); 240 out.close(); 242 out = okWrite.getOutput(); 244 ByteStreams.copy(brokenRead, out); 251 out.close(); 253 out = brokenWrite.getOutput() [all...] |
/external/mockito/src/org/mockito/internal/creation/ |
AcrossJVMSerializationFeature.java | 196 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 197 ObjectOutputStream objectOutputStream = new MockitoMockObjectOutputStream(out); 202 out.close(); 205 this.serializedMock = out.toByteArray(); 373 public MockitoMockObjectOutputStream(ByteArrayOutputStream out) throws IOException { 374 super(out);
|
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/ |
WebSocket.java | 21 protected OutputStream out; field in class:WebSocket 34 protected void send(OutputStream out) { 35 WebSocket.this.out = out; 37 super.send(out); 147 frame.write(out); 163 if (out != null) { 165 out.close();
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/ |
SpdyConnectionTest.java | 79 BufferedSink out = Okio.buffer(stream.getSink()); local 80 out.writeUtf8("c3po"); 81 out.close(); 490 BufferedSink out = Okio.buffer(stream.getSink()); 491 out.writeUtf8("square"); 492 out.flush(); 494 out.close(); 496 out.writeUtf8("round"); 533 BufferedSink out = Okio.buffer(stream.getSink()); 536 out.writeUtf8("square") [all...] |
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/ |
Socks5Proxy.java | 359 DataOutputStream out = new DataOutputStream(socket.getOutputStream());
local 389 out.write(authMethodSelectionResponse);
390 out.flush();
395 out.write(authMethodSelectionResponse);
396 out.flush();
407 out.write(connectionRequest);
408 out.flush();
414 out.write(connectionRequest);
415 out.flush();
|
/frameworks/base/core/java/android/app/ |
UiAutomationConnection.java | 239 OutputStream out = null; local 245 out = new FileOutputStream(sink.getFileDescriptor()); 253 out.write(buffer, 0, readByteCount); 259 IoUtils.closeQuietly(out); 291 // Calling out with a lock held is fine since if the system 304 // Calling out with a lock held is fine since if the system 317 // Calling out with a lock held is fine since if the system 329 // Calling out with a lock held is fine since if the system 333 // Calling out with a lock held is fine since if the system
|
/frameworks/base/core/java/android/ddm/ |
DdmHandleHello.java | 140 ByteBuffer out = ByteBuffer.allocate(28 local 145 out.order(ChunkHandler.CHUNK_ORDER); 146 out.putInt(DdmServer.CLIENT_PROTOCOL_VERSION); 147 out.putInt(android.os.Process.myPid()); 148 out.putInt(vmIdent.length()); 149 out.putInt(appName.length()); 150 putString(out, vmIdent); 151 putString(out, appName); 152 out.putInt(UserHandle.myUserId()); 153 out.putInt(instructionSetDescription.length()) 187 ByteBuffer out = ByteBuffer.allocate(size); local [all...] |
/frameworks/base/core/java/android/gesture/ |
GestureStore.java | 226 DataOutputStream out = null; local 236 out = new DataOutputStream((stream instanceof BufferedOutputStream) ? stream : 239 out.writeShort(FILE_FORMAT_VERSION); 241 out.writeInt(maps.size()); 249 out.writeUTF(key); 251 out.writeInt(count); 254 examples.get(i).serialize(out); 258 out.flush(); 267 if (closeStream) GestureUtils.closeStream(out);
|
/frameworks/base/core/java/com/android/internal/os/ |
SamplingProfilerIntegration.java | 180 PrintStream out = new PrintStream(outputStream); local 181 generateSnapshotHeader(name, packageInfo, out); 182 if (out.checkError()) { 214 PrintStream out) { 216 out.println("Version: 3"); 217 out.println("Process: " + processName); 219 out.println("Package: " + packageInfo.packageName); 220 out.println("Package-Version: " + packageInfo.versionCode); 222 out.println("Build: " + Build.FINGERPRINT); 224 out.println() [all...] |
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
FileRotatorTest.java | 190 public void write(OutputStream out) throws IOException { 191 new DataOutputStream(out).writeUTF("bar"); 384 final OutputStream out = new FileOutputStream(new File(mBasePath, name)); local 385 out.close(); 390 final DataOutputStream out = new DataOutputStream( local 392 out.writeUTF(value); 393 out.close(); 398 public void write(OutputStream out) throws IOException { 399 new DataOutputStream(out).writeUTF(value);
|
/frameworks/base/obex/javax/obex/ |
ClientOperation.java | 30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 419 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 479 out.write(headerArray); 503 out.write(0x49); 506 out.write(0x48); 510 out.write((byte)(bodyLength >> 8)); 511 out.write((byte)bodyLength); 514 out.write(body); 521 out.write(0x48); 523 out.write(0x49) [all...] |
HeaderSet.java | 30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 529 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 532 out.write(COUNT); 535 out.write(NAME); 538 out.write(TYPE); 541 out.write(LENGTH); 544 out.write(TIME_ISO_8601); 547 out.write(TIME_4_BYTE); 550 out.write(DESCRIPTION); 553 out.write(TARGET) [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
WifiApConfigStore.java | 181 DataOutputStream out = null; local 183 out = new DataOutputStream(new BufferedOutputStream( 186 out.writeInt(AP_CONFIG_FILE_VERSION); 187 out.writeUTF(config.SSID); 189 out.writeInt(authType); 191 out.writeUTF(config.preSharedKey); 196 if (out != null) { 198 out.close();
|
/frameworks/support/tests/java/android/support/v4/content/ |
FileProviderTest.java | 173 // Verify that null brings out default columns 243 final OutputStream out = mResolver.openOutputStream(uri); local 245 out.write(TEST_DATA_ALT); 247 IoUtils.closeQuietly(out); 263 final OutputStream out = mResolver.openOutputStream(uri); local 265 out.write(TEST_DATA_ALT); 267 IoUtils.closeQuietly(out); 328 final FileOutputStream out = new FileOutputStream(file); local 330 out.write(data); 332 out.close() [all...] |