/prebuilts/tools/common/m2/repository/org/sonatype/gshell/gshell-io/2.4/ |
gshell-io-2.4.jar | |
/libcore/ojluni/src/test/java/time/tck/java/time/zone/ |
TCKZoneRules.java | 57 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 384 ZoneOffsetTransitionRule out = rules.get(1); local 385 assertEquals(out.getMonth(), Month.OCTOBER); 387 assertEquals(out.getDayOfMonthIndicator(), -1); // optimized from -1 388 assertEquals(out.getDayOfWeek(), DayOfWeek.SUNDAY); 389 assertEquals(out.getLocalTime(), LocalTime.of(1, 0)); 390 assertEquals(out.getTimeDefinition(), TimeDefinition.UTC); 391 assertEquals(out.getStandardOffset(), OFFSET_ZERO); 392 assertEquals(out.getOffsetBefore(), OFFSET_PONE); 393 assertEquals(out.getOffsetAfter(), OFFSET_ZERO) [all...] |
/cts/hostsidetests/appsecurity/test-apps/AppWithData/src/com/android/cts/appwithdata/ |
CreatePrivateDataTest.java | 209 OutputStream out = socket.getOutputStream(); local 214 out.write(buf); 215 out.flush(); 217 out.close();
|
/cts/tests/jdwp/runner/host-side/src/com/android/compatibility/testtype/ |
DalvikTest.java | 160 + "not be actually carried out.") 397 PrintWriter out = null; local 401 out = new PrintWriter(excludeFile); 421 out.println(exclude); 424 out.println(exclude); 429 out.println(exclude); 432 out.println(exclude); 437 out.println(exclude); 439 out.flush(); 441 if (out != null) [all...] |
/cts/tests/tests/net/src/android/net/cts/ |
TrafficStatsTest.java | 131 OutputStream out = socket.getOutputStream(); local 137 out.write(buf); 138 out.flush(); 146 out.close();
|
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
CtsApiCoverage.java | 79 System.out.println("Usage: cts-api-coverage [OPTION]... [APK]..."); 80 System.out.println(); 81 System.out.println("Generates a report about what Android framework methods are called "); 82 System.out.println("from the given APKs."); 83 System.out.println(); 84 System.out.println("Use the Makefiles rules in CtsCoverage.mk to generate the report "); 85 System.out.println("rather than executing this directly. If you still want to run this "); 86 System.out.println("directly, then this must be used from the $ANDROID_BUILD_TOP "); 87 System.out.println("directory and dexdeps must be built via \"make dexdeps\"."); 88 System.out.println() 486 OutputStream out = outputFile != null local [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugEventSocketProxy.java | 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 51 protected PrintWriter out; field in class:DebugEventSocketProxy 80 out = new PrintWriter(new BufferedWriter(osw)); 84 out.println("ANTLR "+ DebugEventListener.PROTOCOL_VERSION); 85 out.println("grammar \""+ grammarFileName); 86 out.flush(); 97 out.close(); 116 out.println(event); 117 out.flush();
|
/external/emma/core/java12/com/vladium/emma/data/ |
DataFactory.java | 133 public static void writeMetaData (final IMetaData data, final OutputStream out) 136 ObjectOutputStream oout = new ObjectOutputStream (out); 146 OutputStream out = null; local 149 out = connection.getOutputStream (); 151 writeMetaData (data, out); 152 out.flush (); 156 if (out != null) try { out.close (); } catch (Exception ignore) {} 177 public static void writeCoverageData (final ICoverageData data, final OutputStream out) 182 ObjectOutputStream oout = new ObjectOutputStream (out); [all...] |
/external/guava/guava-tests/test/com/google/common/io/ |
ByteSourceTest.java | 75 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 76 ByteStreams.copy(in, out); 78 out.close(); 81 assertArrayEquals(bytes, out.toByteArray()); 96 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 98 assertEquals(bytes.length, source.copyTo(out)); 101 assertArrayEquals(bytes, out.toByteArray()); 239 TestOutputStream out = new TestOutputStream(ByteStreams.nullOutputStream()); local 240 assertFalse(out.closed()); 241 source.copyTo(out); 273 OutputStream out = new TestOutputStream(ByteStreams.nullOutputStream(), WRITE_THROWS); local 345 runFailureTest(newNormalByteSource(), out); local [all...] |
/external/r8/src/main/java/com/android/tools/r8/utils/ |
AndroidApp.java | 190 List<Resource> out = new ArrayList<>(resources.size()); local 193 out.add(resource); 196 return out; 320 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 321 ByteStreams.copy(dexProgramSources.get(i).getStream(closer), out); local 322 dex.add(out.toByteArray()); 336 try (ZipOutputStream out = new ZipOutputStream(Files.newOutputStream(archive, options))) { 342 out.putNextEntry(zipEntry); 343 out.write(bytes); 344 out.closeEntry() [all...] |
/frameworks/base/obex/javax/obex/ |
ObexHelper.java | 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 356 * <code>false</code> if it should not be nulled out 370 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 380 out.write((byte)HeaderSet.CONNECTION_ID); 381 out.write(headImpl.mConnectionID); 387 out.write((byte)HeaderSet.COUNT); 389 out.write(value); 398 out.write((byte)HeaderSet.NAME); 403 out.write(lengthArray); 404 out.write(value) [all...] |
/frameworks/base/services/backup/java/com/android/server/backup/fullbackup/ |
PerformAdbBackupTask.java | 218 private void finalizeBackup(OutputStream out) { 222 out.write(eof); 312 OutputStream out = null; local 383 out = finalOutput; 413 mBackupEngine = new FullBackupEngine(backupManagerService, out, 424 boolean obbOkay = obbConnection.backupObbs(pkg, out); 438 new KeyValueAdbBackupEngine(out, keyValuePackage, 449 finalizeBackup(out); 456 if (out != null) { 457 out.flush() [all...] |
/frameworks/base/telephony/java/android/telephony/mbms/ |
MbmsDownloadReceiver.java | 518 OutputStream out = null; local 524 out = new FileOutputStream(dst); 529 out.write(buffer, 0, len); 542 if (out != null) { 543 out.close();
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
ZipFileTest.java | 103 OutputStream out = new FileOutputStream(file); local 107 out.write(buf, 0, result); 110 out.close();
|
/libcore/ojluni/src/main/java/java/util/zip/ |
ZipOutputStream.java | 118 * @param out the actual output stream 120 public ZipOutputStream(OutputStream out) { 121 this(out, StandardCharsets.UTF_8); 127 * @param out the actual output stream 134 public ZipOutputStream(OutputStream out, Charset charset) { 135 super(out, new Deflater(Deflater.DEFAULT_COMPRESSION, true)); 341 out.write(b, off, len); 706 OutputStream out = this.out; local 707 out.write(v & 0xff) 715 OutputStream out = this.out; local 725 OutputStream out = this.out; local 737 OutputStream out = this.out; local [all...] |
/packages/apps/Messaging/src/android/support/v7/mms/ |
MmsHttpClient.java | 173 final OutputStream out = local 175 out.write(pdu); 176 out.flush(); 177 out.close();
|
/packages/apps/Settings/src/com/android/settings/ |
IccLockSettings.java | 296 public void onSaveInstanceState(Bundle out) { 303 out.putInt(DIALOG_STATE, mDialogState); 304 out.putString(DIALOG_PIN, mPinDialog.getEditText().getText().toString()); 305 out.putString(DIALOG_ERROR, mError); 306 out.putBoolean(ENABLE_TO_STATE, mToState); 311 out.putString(OLD_PINCODE, mOldPin); 315 out.putString(OLD_PINCODE, mOldPin); 316 out.putString(NEW_PINCODE, mNewPin); 325 super.onSaveInstanceState(out);
|
/packages/services/Mms/src/com/android/mms/service/ |
MmsHttpClient.java | 182 final OutputStream out = local 184 out.write(pdu); 185 out.flush(); 186 out.close();
|
/packages/services/Telephony/src/com/android/phone/settings/fdn/ |
FdnSetting.java | 542 protected void onSaveInstanceState(Bundle out) { 543 super.onSaveInstanceState(out); 544 out.putBoolean(SKIP_OLD_PIN_KEY, mIsPuk2Locked); 545 out.putInt(PIN_CHANGE_STATE_KEY, mPinChangeState); 546 out.putString(OLD_PIN_KEY, mOldPin); 547 out.putString(NEW_PIN_KEY, mNewPin); 548 out.putString(DIALOG_MESSAGE_KEY, mButtonChangePin2.getDialogMessage().toString()); 549 out.putString(DIALOG_PIN_ENTRY_KEY, mButtonChangePin2.getText());
|
/art/runtime/ |
leb128.h | 44 // Note: We don't check to see if cur is out of range here, 58 uint32_t* out) { 86 // Note: We don't check to see if cur is out of range here, 95 *out = static_cast<uint32_t>(result); 131 // Note: We don't check to see if cur is out of range here, 145 int32_t* out) { 181 // Note: We don't check to see if cur is out of range here, 190 *out = static_cast<uint32_t>(result); 213 uint8_t out = value & 0x7f; local 216 *dest++ = out | 0x80 227 uint8_t out = value & 0x7f; local 252 uint8_t out = value & 0x7f; local 267 uint8_t out = value & 0x7f; local [all...] |
utf_test.cc | 190 std::vector<uint8_t> out = prefix_out; local 191 out.insert(out.end(), test_out.begin(), test_out.end()); 192 out.insert(out.end(), suffix_out.begin(), suffix_out.end()); 193 AssertConversion(in, out);
|
/art/test/070-nio-buffer/src/ |
Main.java | 30 System.out.println("Direct byte buffer has array: " + buf.hasArray()); 61 System.out.println("ERROR: out-of-bounds put succeeded\n"); 63 System.out.println("Got expected buffer overflow exception"); 69 System.out.println("ERROR: out-of-bounds put succeeded\n"); 71 System.out.println("Got expected out-of-bounds exception"); 77 System.out.println("ERROR: out-of-bounds put succeeded\n") [all...] |
/art/test/911-get-stack-trace/src/art/ |
Frames.java | 25 System.out.println(); 29 System.out.println(); 35 System.out.println("###################"); 36 System.out.println("### Same thread ###"); 37 System.out.println("###################"); 42 System.out.println(count); 44 System.out.println(Arrays.toString(getFrameLocation(t, -1))); 46 System.out.println(e.getMessage()); 49 System.out.println(Arrays.toString(getFrameLocation(t, i))); 52 System.out.println(Arrays.toString(getFrameLocation(t, count))) [all...] |
/art/test/922-properties/src/art/ |
Test922.java | 30 System.out.println("Recommended properties:"); 42 System.out.println("Missing recommended properties: " + missing); 48 System.out.println("Other properties:"); 53 System.out.println("Non-specified property:"); 57 System.out.println("Non-specified property (2):"); 93 System.out.print(" \"" + key + "\": "); 103 System.out.print("OK"); 105 System.out.println(" !!!" + err); 107 System.out.println(); 110 System.out.println("ERROR !!!" + err) [all...] |
/art/test/993-breakpoints/src/art/ |
Breakpoint.java | 162 LineNumber[] out = new LineNumber[lines.length]; local 164 out[i] = new LineNumber(location[i], lines[i]); 166 return out;
|