HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1351 - 1375 of 5424) sorted by null

<<51525354555657585960>>

  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageFetcher.java 269 BufferedOutputStream out = null; local
276 out = new BufferedOutputStream(outputStream, IO_BUFFER_SIZE);
280 out.write(b);
290 if (out != null) {
291 out.close();
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageFetcher.java 269 BufferedOutputStream out = null; local
276 out = new BufferedOutputStream(outputStream, IO_BUFFER_SIZE);
280 out.write(b);
290 if (out != null) {
291 out.close();
  /development/samples/training/NsdChat/src/com/example/android/nsdchat/
ChatConnection.java 272 PrintWriter out = new PrintWriter( local
275 out.println(msg);
276 out.flush();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
ExcludedProxyTest.java 98 OutputStream out = conn4.getOutputStream(); local
99 out.write(posted4.getBytes());
100 out.close();
177 OutputStream out = conn.getOutputStream(); local
178 out.write(posted.getBytes());
179 out.close();
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
DexMaker.java 197 * System.out.println(fibMethod.invoke(null, 8));
487 ClassDefItem out = new ClassDefItem(thisType, flags, supertype.constant, local
493 out.addDirectMethod(encoded);
495 out.addVirtualMethod(encoded);
501 out.addStaticField(encoded, Constants.getConstant(field.staticValue));
503 out.addInstanceField(encoded);
507 return out;
  /external/emma/core/java12/com/vladium/logging/
Logger.java 68 public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask)
73 if ((out == null) || out.checkError ())
74 throw new IllegalArgumentException ("null or corrupt input: out");
76 return new Logger (level, out, prefix, classMask);
83 * @param out
89 public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask,
94 return create (level, out, prefix, classMask);
102 final PrintWriter _out = (out != null) && ! out.checkError (
478 final PrintWriter out = m_out; local
526 final PrintWriter out = m_out; local
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
JsonMessageBuilder.java 368 JSONObject out = new JSONObject(); local
373 out.put(OUTER_FIELD_PROTOCOL_VERSION, PROTOCOL_VERSION);
374 out.put(OUTER_FIELD_STATUS, STATUS_OK);
375 out.put(OUTER_FIELD_TYPE, msgType);
376 out.put(OUTER_FIELD_PAYLOAD, innerJson);
380 return out;
396 JSONObject out = new JSONObject(); local
407 out.put(OUTER_FIELD_PROTOCOL_VERSION, PROTOCOL_VERSION);
408 out.put(OUTER_FIELD_STATUS, errorStatus);
412 return out;
    [all...]
  /external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/
GraphvizGrapher.java 41 * {@link com.google.inject.grapher.InjectorGrapher} implementation that writes out a Graphviz DOT
55 private PrintWriter out; field in class:GraphvizGrapher
69 public void setOut(PrintWriter out) {
70 this.out = out;
90 out.flush();
100 out.println("digraph injector {");
103 out.println("graph " + getAttrString(attrs) + ";");
107 out.println("}");
112 out.println(node.getIdentifier() + " " + getAttrString(attrs))
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
WriteCharts.java 52 System.out.println("Printout for '" + source + "'");
57 System.out.println(Integer.toString(start,16) + ".." + Integer.toString(end,16));
69 System.out.println("[Skipping " + source + "]");
73 System.out.println("Source: " + source + ";\tScripts: " + showScripts(scripts));
81 System.out.println("[Skipping '" + source + "-" + target + "']");
84 System.out.println("\tTarget: " + target + ";\tScripts: " + showScripts(scripts));
92 System.out.println("SKIPPING VARIANT, SINCE IT CURRENTLY BREAKS!\t" + id);
96 System.out.println("\t\t\t\tAdding: '" + id + "'");
121 System.out.println("Processing " + rawId);
136 System.out.println("FAILED: "
284 PrintWriter out = new PrintWriter( local
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
CaseIterator.java 250 System.out.println("maxLength = " + maxLength);
252 System.out.println("\nfromCaseFold:");
256 System.out.print(" " + toHex2.transliterate((String)key) + ": ");
264 System.out.print(", ");
266 System.out.print(toHex2.transliterate((String)it2.next()));
268 System.out.println("");
271 System.out.println("\ntoCaseFold:");
276 System.out.println(" " + toHex2.transliterate(key) + ": " + toHex2.transliterate(value));
383 // print it out, so that it can be cut and pasted back into this document.
386 System.out.println("\t// " + toName.transliterate(key))
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
WriteCharts.java 51 System.out.println("Printout for '" + source + "'");
56 System.out.println(Integer.toString(start,16) + ".." + Integer.toString(end,16));
68 System.out.println("[Skipping " + source + "]");
72 System.out.println("Source: " + source + ";\tScripts: " + showScripts(scripts));
80 System.out.println("[Skipping '" + source + "-" + target + "']");
83 System.out.println("\tTarget: " + target + ";\tScripts: " + showScripts(scripts));
91 System.out.println("SKIPPING VARIANT, SINCE IT CURRENTLY BREAKS!\t" + id);
95 System.out.println("\t\t\t\tAdding: '" + id + "'");
120 System.out.println("Processing " + rawId);
135 System.out.println("FAILED: "
283 PrintWriter out = new PrintWriter( local
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
AnalyzerTest.java 293 OutputStream out = new FileOutputStream(file); local
294 ZipOutputStream zip = new ZipOutputStream(out);
296 out.write(0x23); // Unexpected data here
339 OutputStream out = new FileOutputStream(file); local
340 out.write(TargetLoader.getClassDataAsBytes(source));
341 out.close();
  /external/jline/src/src/main/java/jline/
UnixTerminal.java 296 OutputStream out = null; local
311 out = p.getOutputStream();
317 try {out.close();} catch (Exception e) {}
  /external/nanohttpd/nanolets/src/test/java/fi/iki/elonen/router/
TestNanolets.java 31 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
90 System.out.println(URI_PATTERN.matcher(uri).matches());
96 System.out.println("--------------->" + "/" + uri);
99 System.out.println(matcher.group());
102 // System.out.println(matcher.group());
306 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
312 out.write(buffer, 0, count);
314 bytes = out.toByteArray();
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Utf8.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
306 static int encode(CharSequence in, byte[] out, int offset, int length) {
307 return processor.encodeUtf8(in, out, offset, length);
344 * @param out the target buffer to receive the encoded string.
347 static void encodeUtf8(CharSequence in, ByteBuffer out) {
348 processor.encodeUtf8(in, out);
617 * Encodes an input character sequence ({@code in}) to UTF-8 in the target array ({@code out}).
636 * @param out the target array
645 abstract int encodeUtf8(CharSequence in, byte[] out, int offset, int length);
648 * Encodes an input character sequence ({@code in}) to UTF-8 in the target buffer ({@code out})
    [all...]
  /frameworks/base/core/java/android/app/backup/
BlobBackupHelper.java 136 // We explicitly don't close 'out' because we must not close the backing fd.
139 DataOutputStream out = new DataOutputStream(fos); local
141 out.writeInt(mCurrentBlobVersion);
144 out.writeInt(N);
151 out.writeUTF(key);
152 out.writeLong(checksum);
170 DeflaterOutputStream out = new DeflaterOutputStream(sink); local
171 out.write(data);
172 out.close(); // finishes and commits the compression run
  /frameworks/base/obex/javax/obex/
ClientOperation.java 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
443 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
514 out.write(headerArray);
538 out.write(HeaderSet.END_OF_BODY);
541 out.write(HeaderSet.BODY);
545 out.write((byte)(bodyLength >> 8));
546 out.write((byte)bodyLength);
549 out.write(body);
556 out.write(HeaderSet.BODY);
558 out.write(HeaderSet.END_OF_BODY)
    [all...]
  /frameworks/base/sax/tests/saxtests/src/android/sax/
SafeSaxTest.java 150 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
154 out.write(buffer, 0, length);
156 xmlBytes = out.toByteArray();
  /frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
ProcessErrorsTest.java 331 List<ProcessError> out = new ArrayList<ProcessError>(in.size()); local
333 out.add(new ProcessError(info));
335 return out;
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequest.java 136 DataOutputStream out = op.openDataOutputStream(); local
137 out.write(body);
138 out.close();
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
ANQPParserTest.java 227 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
228 out.write((byte) osuSsidBytes.length);
229 out.write(osuSsidBytes);
230 out.write((byte) 1);
231 out.write(OsuProviderInfoTestUtil.TEST_OSU_PROVIDER_INFO_RAW_BYTES);
232 return out.toByteArray();
  /frameworks/rs/tests/java_api/GenImages/src/com/android/rs/genimage/
GenImage.java 262 FileOutputStream out = new FileOutputStream(s); local
263 bmp.compress(Bitmap.CompressFormat.PNG, 95, out);
264 out.close();
  /frameworks/support/core-utils/tests/java/android/support/v4/content/
FileProviderTest.java 197 // Verify that null brings out default columns
271 final OutputStream out = mResolver.openOutputStream(uri); local
273 out.write(TEST_DATA_ALT);
275 closeQuietly(out);
292 final OutputStream out = mResolver.openOutputStream(uri); local
294 out.write(TEST_DATA_ALT);
296 closeQuietly(out);
369 final FileOutputStream out = new FileOutputStream(file); local
371 out.write(data);
373 out.close()
    [all...]
  /frameworks/support/graphics/drawable/static/tests/src/android/support/graphics/drawable/tests/
VectorDrawableTest.java 182 FileOutputStream out = null; local
200 out = new FileOutputStream(outputFile, false);
201 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
206 if (out != null) {
207 out.close();
  /libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
CertBlacklistTest.java 202 FileOutputStream out = new FileOutputStream(tmpFile); local
203 out.write(blacklist.toString().getBytes());
204 out.close();
434 System.out.println("CERTIFICATE PUBLIC KEY HASH: " + getHash(createPublicKey(cert)));
438 System.out.println("CERTIFICATE SERIAL NUMBER: " + createSerialNumber(cert).toString(16));

Completed in 491 milliseconds

<<51525354555657585960>>