HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1526 - 1550 of 3043) sorted by null

<<61626364656667686970>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jsch.jar 
  /prebuilts/tools/common/m2/repository/jdom/jdom/1.0/
jdom-1.0.jar 
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java 577 ByteArrayOutputStream out; local
580 out = new ByteArrayOutputStream();
581 xml.setOutput(out, "utf-8");
591 final InputStream in = new ByteArrayInputStream(out.toByteArray());
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
NativeDecoderTest.java 276 // we ran out of samples without ever signaling EOS to the codec,
406 ParcelFileDescriptor out = ParcelFileDescriptor.open(new File(tmpFile), local
411 out.getFd(), webm));
419 remux.setDataSource(out.getFileDescriptor());
448 int out, boolean webm);
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 202 File file = getContext().getFileStreamPath("dump.out");
206 FileOutputStream out = getContext().openFileOutput("dump.out", Context.MODE_PRIVATE); local
207 assertFalse(Debug.dumpService("xyzzy -- not a valid service name", out.getFD(), null));
208 out.close();
214 out = getContext().openFileOutput("dump.out", Context.MODE_PRIVATE);
215 assertTrue(Debug.dumpService(Context.POWER_SERVICE, out.getFD(), null));
216 out.close();
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
UnknownFieldSet.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
150 final ByteString.CodedBuilder out = local
152 writeTo(out.getCodedOutput());
153 return out.build();
  /external/conscrypt/src/test/java/org/conscrypt/
TrustedCertificateStoreTest.java 633 OutputStream out = new FileOutputStream(file); local
634 out.write(x.getEncoded());
635 out.close();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
ScenarioData.java 247 stream = System.out;
324 if (stream != System.out)
418 if (stream == null) stream = System.out;
451 OutputStream out = null; local
453 out = new BufferedOutputStream(new FileOutputStream(outputFile));
454 il.save(out, SWT.IMAGE_GIF);
460 if (out != null) {
462 out.close();
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 111 final OutputStream out = new FileOutputStream (getFullOutFile (parentDir, archive, IN_LIB)); local
113 m_archiveOut = outManifest != null ? new JarOutputStream (out, outManifest) : new JarOutputStream (out);
137 final OutputStream out = new FileOutputStream (m_tempArchiveFile); local
139 m_archiveOut = outManifest != null ? new JarOutputStream (out, outManifest) : new JarOutputStream (out);
277 fnfe.printStackTrace (System.out);
448 // otherwise, instrument only if the dest file is out of date
481 // System.out.println (clsDef.getName () + " metadata:");
482 // System.out.println (profile.root ().dump (0.2))
    [all...]
  /external/javassist/src/main/javassist/
CtClass.java 65 System.out.println("Javassist version " + CtClass.version);
66 System.out.println("Copyright (C) 1999-2010 Shigeru Chiba."
258 * Returns true if the class has been loaded or written out
289 * written out. This method should be called only in a case
290 * that the class will be reloaded or written out later again.
1277 DataOutputStream out = new DataOutputStream(barray); local
1324 DataOutputStream out local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
AnalysisAdapter.java 11 private Hashtable<Node,Object> out; field in class:AnalysisAdapter
42 if(this.out == null)
47 return this.out.get(node);
52 if(this.out == null)
54 this.out = new Hashtable<Node,Object>(1);
59 this.out.put(node, o);
63 this.out.remove(node);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassWriter.java 27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
778 ByteVector out = new ByteVector(size); local
779 out.putInt(0xCAFEBABE).putInt(version);
780 out.putShort(index).putByteArray(pool.data, 0, pool.length);
781 out.putShort(access).putShort(name).putShort(superName);
782 out.putShort(interfaceCount);
784 out.putShort(interfaces[i]);
786 out.putShort(nbFields);
789 fb.put(out);
792 out.putShort(nbMethods);
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java 294 serverSocket.close(); // Should cause acceptConnections() to break out.
355 OutputStream out = new BufferedOutputStream(socket.getOutputStream());
357 while (processOneRequest(socket, in, out)) {
365 out.close();
388 private boolean processOneRequest(Socket socket, InputStream in, OutputStream out)
390 RecordedRequest request = readRequest(socket, in, out, sequenceNumber);
395 writeResponse(out, response);
398 out.close();
434 private RecordedRequest readRequest(Socket socket, InputStream in, OutputStream out,
468 out.write(("HTTP/1.1 100 Continue\r\n").getBytes(Util.US_ASCII))
    [all...]
  /frameworks/base/core/java/android/text/
Html.java 143 StringBuilder out = new StringBuilder(); local
144 withinHtml(out, text);
145 return out.toString();
152 StringBuilder out = new StringBuilder(); local
153 withinStyle(out, text, 0, text.length());
154 return out.toString();
157 private static void withinHtml(StringBuilder out, Spanned text) {
182 out.append("<div ").append(elements).append(">");
185 withinDiv(out, text, i, next);
188 out.append("</div>")
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
PackageManagerBackupAgent.java 285 // metadata again. In either case, take it out of mExisting so that
443 private static void writeSignatureHashArray(DataOutputStream out, ArrayList<byte[]> hashes)
446 out.writeInt(hashes.size());
450 out.writeInt(buffer.length);
451 out.write(buffer);
507 // Util: parse out an existing state file into a usable structure
593 // Util: write out our new backup state file
598 DataOutputStream out = new DataOutputStream(outbuf); local
603 out.writeUTF(STATE_FILE_HEADER);
604 out.writeInt(STATE_FILE_VERSION)
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AssetAtlasService.java 212 * a. If a best configuration was computed, write it out to disk for
251 // will be zero'd out so there's no need to waste time applying blending
320 * will then be saved out to disk for debugging purposes.
349 FileOutputStream out = new FileOutputStream(dataFile); local
350 mAtlasBitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
351 out.close();
464 * and save the result out to disk.
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 422 * Zero out the buffer from last time
452 System.out.print((char)data);
456 System.out.println();
504 // Bomb out if stream closes prematurely
573 // Bomb out if stream closes prematurely
687 // Write out the data
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 262 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
263 AsciiHprofWriter.write(hprofData, out);
264 assertFalse(out.toByteArray().length == 0);
273 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
274 BinaryHprofWriter.write(hprofData, out);
275 out.close();
277 byte[] bytes = out.toByteArray();
284 System.out.println("Wrote binary hprof data to " + file);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
PrintStreamTest.java 564 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
565 PrintStream printStream = new PrintStream(out);
568 assertEquals(String.valueOf(testChar), out.toString());
577 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
578 PrintStream printStream = new PrintStream(out);
581 assertEquals(testString, out.toString());
590 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
591 PrintStream printStream = new PrintStream(out);
594 assertEquals(testString.substring(1, 3), out.toString());
PrintWriterTest.java 47 public MockPrintWriter(OutputStream out, boolean autoflush) {
48 super(out, autoflush);
682 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
683 PrintWriter printWriter = new PrintWriter(out);
686 assertEquals(String.valueOf(testChar), out.toString());
696 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
697 PrintWriter printWriter = new PrintWriter(out);
700 assertEquals(testString, out.toString());
710 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
711 PrintWriter printWriter = new PrintWriter(out);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetTest.java 280 ByteBuffer out = cs.encode(s); local
281 byte[] bytes = new byte[out.remaining()];
282 out.get(bytes);
288 CharBuffer out = cs.decode(in); local
289 assertEquals(s, out.toString());
797 protected CoderResult encodeLoop(CharBuffer in, ByteBuffer out) {
799 out.put((byte) in.get());
800 // out.put((byte) '!');
811 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) {
813 out.put((char) in.get())
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
MessageFormatTest.java 53 ObjectOutputStream out = new ObjectOutputStream(ba); local
54 out.writeObject(format);
55 out.close();
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldFileChannelTest.java 642 File logFile = File.createTempFile("out", "tmp");
644 FileOutputStream out = new FileOutputStream(logFile, true); local
645 FileChannel channel = out.getChannel();
646 out.write(1);
648 out.close();
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CRLTest.java 151 PrintStream out = new PrintStream(errBuffer); local
172 out.append("Error encountered checking " + p.getName() + "\n");
173 e.printStackTrace(out);
177 out.flush();
373 System.out.println(Arrays.toString(dsaEntry.getExtensionValue("2.5.29.21")));
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java 467 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
471 out.write(buff, 0, readlen);
474 return out.toByteArray();
741 * 1. openssl genrsa -des3 -out test.key 1024
742 * 2. openssl req -new -key test.key -out test.csr
744 * 4. openssl rsa -in test.key.org -out test.key
745 * 5. openssl x509 -req -days 37273 -in test.csr -signkey test.key -out test.cert
771 * 1. openssl genrsa -des3 -out test.key 1024
772 * 2. openssl req -new -key test.key -out test.csr
774 * 4. openssl rsa -in test.key.org -out test.ke
    [all...]

Completed in 709 milliseconds

<<61626364656667686970>>