/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/cldr/ |
CheckSystemFonts.java | 60 System.out.println("Arguments:\t" + Arrays.asList(args)); 170 System.out.println("\n***COVERAGE:\t" + map.keySet().size() + "\n"); 171 PrintWriter out = BagFormatter.openUTF8Writer(outputDirectoryName, "coverage.txt"); local 180 out.println(codes + "\t" + toShortName.get(map.get(it.codepoint)) + "\t" + names); 184 out.println("\nMISSING:\t" + missing.size() + "\n"); 202 out.println(codes + "\t" + value + "\t" + names); 204 out.println(); 206 out.close(); 210 System.out.println("\n***COMBO NAMES\n"); 211 PrintWriter out = BagFormatter.openUTF8Writer(outputDirectoryName, "combo_names.txt") local 238 PrintWriter out = BagFormatter.openUTF8Writer(outputDirectoryName, "raw_coverage.txt"); local 252 PrintWriter out = BagFormatter.openUTF8Writer(outputDirectoryName, "equiv_coverage.txt"); local 282 PrintWriter out = BagFormatter.openUTF8Writer(outputDirectoryName, "same_glyphs.txt"); local 344 PrintWriter out = BagFormatter.openUTF8Writer(outputDirectoryName, "invisibles.txt"); local [all...] |
/external/testng/src/main/java/org/testng/internal/ |
Utils.java | 258 System.out.println("vvvvv"); 260 System.out.println(entry.getKey() + " => " + entry.getValue()); 262 System.out.println("^^^^^"); 373 * Logs the the message to System.out if level is greater than 381 * @param msg the message to log to System.out. 387 System.out.println("[" + cls + "] " + msg); 390 System.out.println(msg); 752 try (InputStream in = new FileInputStream(from); OutputStream out = new FileOutputStream(to)) { 756 out.write(buf, 0, len); 775 BufferedWriter out = new BufferedWriter(new FileWriter(result)) local [all...] |
/frameworks/base/core/java/android/app/backup/ |
FullBackup.java | 148 FileOutputStream out = null; local 161 out = new FileOutputStream(outFile); 178 if (out != null) { 180 out.write(buffer, 0, got); 185 out.close(); 186 out = null; 192 if (out != null) out.close(); 235 * Parse out the semantic domains into the correct physical location.
|
/frameworks/base/core/java/com/android/internal/backup/ |
LocalTransport.java | 541 BackupDataOutput out = new BackupDataOutput(outFd.getFileDescriptor()); local 551 out.writeEntityHeader(keyEntry.key, size); 552 out.writeEntityData(buf, size);
|
/frameworks/base/services/core/java/com/android/server/ |
DropBoxManagerService.java | 368 StringBuilder out = new StringBuilder(); local 377 out.append("Unknown argument: ").append(args[i]).append("\n"); 383 out.append("Drop box contents: ").append(mAllFiles.contents.size()).append(" entries\n"); 386 out.append("Searching for:"); 387 for (String a : searchArgs) out.append(" ").append(a); 388 out.append("\n"); 393 out.append("\n"); 405 if (doPrint) out.append("========================================\n"); 406 out.append(date).append(" ").append(entry.tag == null ? "(no tag)" : entry.tag); 408 out.append(" (no file)\n") [all...] |
/frameworks/base/services/core/java/com/android/server/notification/ |
RankingHelper.java | 192 public void writeXml(XmlSerializer out, boolean forBackup) throws IOException { 193 out.startTag(null, TAG_RANKING); 194 out.attribute(null, ATT_VERSION, Integer.toString(XML_VERSION)); 206 out.startTag(null, TAG_PACKAGE); 207 out.attribute(null, ATT_NAME, r.pkg); 209 out.attribute(null, ATT_IMPORTANCE, Integer.toString(r.importance)); 212 out.attribute(null, ATT_PRIORITY, Integer.toString(r.priority)); 215 out.attribute(null, ATT_VISIBILITY, Integer.toString(r.visibility)); 219 out.attribute(null, ATT_UID, Integer.toString(r.uid)); 222 out.endTag(null, TAG_PACKAGE) [all...] |
/libcore/luni/src/test/java/libcore/xml/ |
XsltXPathConformanceTestSuite.java | 128 System.out.println("Usage: XsltXPathConformanceTestSuite <catalog-xml>"); 129 System.out.println(); 130 System.out.println(" catalog-xml: an XML file describing an OASIS test suite"); 131 System.out.println(" such as: " + defaultCatalogFile); 198 * <output-file role="principal" compare="XML">attribset01.out</output-file> 351 System.out.println("Purpose: " + purpose); 354 System.out.println("Spec: " + spec); 603 StringWriter out = new StringWriter(); local 607 out.write(buffer, 0, count); 610 return out.toString() [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
VoicemailProviderTest.java | 118 OutputStream out = mResolver.openOutputStream(uri); local 120 out.write(outBuffer); 121 out.flush(); 122 out.close();
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadThread.java | 427 // Enforce the cleartext traffic opt-out for the UID. This cannot be enforced earlier 547 OutputStream out = null; local 562 out = new DrmOutputStream(drmClient, outPfd, mInfoDelta.mMimeType); 564 out = new ParcelFileDescriptor.AutoCloseOutputStream(outPfd); 598 transferData(in, out, outFd); 601 if (out instanceof DrmOutputStream) { 602 ((DrmOutputStream) out).finish(); 616 if (out != null) out.flush(); 620 IoUtils.closeQuietly(out); [all...] |
/packages/services/Telephony/src/com/android/phone/common/mail/store/ |
ImapFolder.java | 260 * Figure out what command we are going to run: 399 // TODO: Figure out what kinds of exceptions might actually be thrown 402 // time to figure out what exceptions might be thrown. 429 OutputStream out = tempBody.getOutputStream(); local 435 out.write(buffer, 0, n); 440 out.write(warning.getBytes()); 442 out.close(); 504 * This is a body. We need to add as much information as we can find out about 548 * If there are body params we might be able to get some more information out 588 * information about the attachment out [all...] |
/frameworks/base/services/core/java/com/android/server/pm/ |
PackageInstallerService.java | 434 XmlSerializer out = new FastXmlSerializer(); local 435 out.setOutput(fos, StandardCharsets.UTF_8.name()); 436 out.startDocument(null, true); 437 out.startTag(null, TAG_SESSIONS); 441 writeSessionLocked(out, session); 443 out.endTag(null, TAG_SESSIONS); 444 out.endDocument(); 454 private void writeSessionLocked(XmlSerializer out, PackageInstallerSession session) 458 out.startTag(null, TAG_SESSION); 460 writeIntAttribute(out, ATTR_SESSION_ID, session.sessionId) [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
AnimatedVectorDrawableTest.java | 82 FileOutputStream out = null; local 99 out = new FileOutputStream(outputFile, false); 100 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out); 105 if (out != null) { 106 out.close();
|
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/ |
ImageCache.java | 255 OutputStream out = null; local 261 out = editor.newOutputStream(DISK_CACHE_INDEX); 263 mCacheParams.compressFormat, mCacheParams.compressQuality, out); 265 out.close(); 276 if (out != null) { 277 out.close(); 359 * @param options - BitmapFactory.Options with out* options populated 515 * @param targetOptions - Options that have the out* value populated
|
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/ |
ImageCache.java | 255 OutputStream out = null; local 261 out = editor.newOutputStream(DISK_CACHE_INDEX); 263 mCacheParams.compressFormat, mCacheParams.compressQuality, out); 265 out.close(); 276 if (out != null) { 277 out.close(); 359 * @param options - BitmapFactory.Options with out* options populated 515 * @param targetOptions - Options that have the out* value populated
|
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/ |
ImageCache.java | 255 OutputStream out = null; local 261 out = editor.newOutputStream(DISK_CACHE_INDEX); 263 mCacheParams.compressFormat, mCacheParams.compressQuality, out); 265 out.close(); 276 if (out != null) { 277 out.close(); 359 * @param options - BitmapFactory.Options with out* options populated 515 * @param targetOptions - Options that have the out* value populated
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
AbstractFieldMatrix.java | 177 final FieldMatrix<T> out = createMatrix(rowCount, columnCount); local 180 out.setEntry(row, col, getEntry(row, col).add(m.getEntry(row, col))); 184 return out; 196 final FieldMatrix<T> out = createMatrix(rowCount, columnCount); local 199 out.setEntry(row, col, getEntry(row, col).subtract(m.getEntry(row, col))); 203 return out; 212 final FieldMatrix<T> out = createMatrix(rowCount, columnCount); local 215 out.setEntry(row, col, getEntry(row, col).add(d)); 219 return out; 228 final FieldMatrix<T> out = createMatrix(rowCount, columnCount) local 249 final FieldMatrix<T> out = createMatrix(nRows, nCols); local 439 final FieldMatrix<T> out = createMatrix(1, nCols); local 472 final FieldMatrix<T> out = createMatrix(nRows, 1); local 551 final T[] out = buildArray(field, nCols); local 583 final T[] out = buildArray(field, nRows); local 630 final FieldMatrix<T> out = createMatrix(nCols, nRows); local 683 final T[] out = buildArray(field, nRows); local 710 final T[] out = buildArray(field, nRows); local 735 final T[] out = buildArray(field, nCols); local 763 final T[] out = buildArray(field, nCols); local [all...] |
ArrayRealVector.java | 265 double[] out = data.clone(); local 269 out[e.getIndex()] += e.getValue(); 271 return new ArrayRealVector(out, false); 280 double[] out = data.clone(); local 282 out[i] += v[i]; 284 return new ArrayRealVector(out, false); 306 double[] out = data.clone(); local 310 out[e.getIndex()] -= e.getValue(); 312 return new ArrayRealVector(out, false); 321 double[] out = data.clone() local 598 double[] out = data.clone(); local 611 double[] out = data.clone(); local 636 double[] out = data.clone(); local 649 double[] out = data.clone(); local 946 final RealMatrix out = MatrixUtils.createRealMatrix(m, m); local 973 final RealMatrix out = MatrixUtils.createRealMatrix(m, m); local 1012 final double[] out = new double[data.length + 1]; local 1025 ArrayRealVector out = new ArrayRealVector(n); local [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
KeyStore2Test.java | 135 ByteArrayOutputStream out = null; local 152 out = new ByteArrayOutputStream(); 153 keyTest.store(out, pssWord); 154 out.close(); 156 return out.toByteArray();
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-javamail.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
Utils.java | 398 OutputStream out = null; local 400 out = new BufferedOutputStream(new FileOutputStream(outputFile)); 401 imageLoader.save(out, SWT.IMAGE_GIF); 406 if (out != null) { 408 out.close();
|
/external/guava/guava/src/com/google/common/io/ |
ByteStreams.java | 114 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 115 copy(in, out); 116 return out.toByteArray(); 148 FastByteArrayOutputStream out = new FastByteArrayOutputStream(); local 149 out.write(b); // write the byte we read when testing for end of stream 150 copy(in, out); 152 byte[] result = new byte[bytes.length + out.size()]; 154 out.writeTo(result, bytes.length);
|
/external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/ |
BaseEncoding.java | 535 ByteOutput encodingStream(final CharOutput out) { 536 checkNotNull(out); 550 out.write(alphabet.encode(charIndex)); 558 out.flush(); 566 out.write(alphabet.encode(charIndex)); 570 out.write(paddingChar.charValue()); 575 out.close();
|
/external/guava/guava-tests/test/com/google/common/io/ |
ByteStreamsTest.java | 42 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 43 WritableByteChannel outChannel = Channels.newChannel(out); 48 assertEquals(expected, out.toByteArray()); 289 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 290 assertEquals(0, out.toByteArray().length); 294 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 295 out.writeInt(0x12345678); 296 out.writeInt(0x76543210); 297 assertEquals(bytes, out.toByteArray()); 301 ByteArrayDataOutput out = ByteStreams.newDataOutput(4) local 308 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 314 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 320 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 327 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 334 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 342 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 348 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 356 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 367 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 373 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 379 ByteArrayDataOutput out = ByteStreams.newDataOutput(); local 387 ByteArrayDataOutput out = ByteStreams.newDataOutput(baos); local 442 private final ByteArrayOutputStream out = new ByteArrayOutputStream(); field in class:ByteStreamsTest.TestByteProcessor [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
RBBITest.java | 507 StringBuffer out = new StringBuffer(); local 511 out.append(c); 513 out.append("\\u"); 515 out.append(zeros.substring(0, 4 - temp.length())); 516 out.append(temp); 519 logln(out.toString()); [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
RBBITest.java | 503 StringBuffer out = new StringBuffer(); local 507 out.append(c); 509 out.append("\\u"); 511 out.append(zeros.substring(0, 4 - temp.length())); 512 out.append(temp); 515 logln(out.toString()); [all...] |