/libcore/ojluni/src/main/java/java/io/ |
FilterOutputStream.java | 49 protected OutputStream out; field in class:FilterOutputStream 55 * @param out the underlying output stream to be assigned to 56 * the field <tt>this.out</tt> for later use, or 60 public FilterOutputStream(OutputStream out) { 61 this.out = out; 69 * that is, it performs <tt>out.write(b)</tt>. 77 out.write(b); 131 * to be written out to the stream. 137 * @see java.io.FilterOutputStream#out [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
ProxyOutputStream.java | 41 // the proxy is stored in a protected superclass variable named 'out' 50 out.write(idx); 59 out.write(bts); 70 out.write(bts, st, end); 78 out.flush(); 86 out.close();
|
ProxyWriter.java | 43 // the proxy is stored in a protected superclass variable named 'out' 52 out.write(idx); 61 out.write(chr); 72 out.write(chr, st, end); 81 out.write(str); 92 out.write(str, st, end); 100 out.flush(); 108 out.close();
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/ |
DeltaOutputStream.java | 18 private FinishableOutputStream out; field in class:DeltaOutputStream 31 DeltaOutputStream(FinishableOutputStream out, DeltaOptions options) { 32 this.out = out; 54 out.write(filterBuf); 60 out.write(filterBuf, 0, len); 75 out.flush(); 88 out.finish(); 99 if (out != null) { 101 out.close() [all...] |
/libcore/luni/src/test/java/libcore/java/util/zip/ |
ZipOutputStreamTest.java | 70 ZipOutputStream out = local 73 out.close(); 82 ZipOutputStream out = new ZipOutputStream(new ByteArrayOutputStream()); local 83 out.setComment(null); 84 out.putNextEntry(new ZipEntry("name")); 85 out.write(new byte[1]); 86 out.closeEntry(); 87 out.finish();
|
/art/test/121-modifiers/src/ |
Asm.java | 98 OutputStream out = new FileOutputStream(clazz + ".out"); local 99 out.write(b, 0, b.length); 100 out.close();
|
/external/apache-http/src/org/apache/http/impl/io/ |
IdentityOutputStream.java | 58 private final SessionOutputBuffer out; field in class:IdentityOutputStream 63 public IdentityOutputStream(final SessionOutputBuffer out) { 65 if (out == null) { 68 this.out = out; 79 this.out.flush(); 84 this.out.flush(); 91 this.out.write(b, off, len); 102 this.out.write(b);
|
/external/okhttp/okio/okio/src/main/java/okio/ |
Okio.java | 60 /** Returns a sink that writes to {@code out}. */ 61 public static Sink sink(OutputStream out) { 62 return sink(out, new Timeout()); 65 private static Sink sink(final OutputStream out, final Timeout timeout) { 66 if (out == null) throw new IllegalArgumentException("out == null"); 76 out.write(head.data, head.pos, toCopy); 90 out.flush(); 94 out.close(); 102 return "sink(" + out + ")" [all...] |
/external/vogar/src/vogar/tasks/ |
ExtractJarResourceTask.java | 42 OutputStream out = new BufferedOutputStream(new FileOutputStream(extractedResource)); local 46 out.write(buf, 0, count); 48 out.close();
|
/bionic/libc/bionic/ |
sigblock.c | 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 38 } in, out; local 43 n = sigprocmask(SIG_BLOCK, &in.the_sigset, &out.the_sigset); 47 return out.the_mask;
|
sigsetmask.c | 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 39 } in, out; local 44 n = sigprocmask(SIG_SETMASK, &in.the_sigset, &out.the_sigset); 48 return out.the_mask;
|
/bionic/tests/ |
libgen_test.cpp | 25 const char* out = dirname(&writable_in[0]); local 26 ASSERT_STREQ(expected_out, out) << in;
|
uchar_test.cpp | 47 char out[MB_LEN_MAX]; local 53 EXPECT_EQ(static_cast<size_t>(-1), c32rtomb(out, 0x00a2, &ps)); 65 EXPECT_EQ(1U, c32rtomb(out, L'\0', &ps)); 161 char16_t out; local 163 out = L'x'; 164 ASSERT_EQ(0U, mbrtoc16(&out, "hello", 0, NULL)); 165 ASSERT_EQ(L'x', out); 167 ASSERT_EQ(0U, mbrtoc16(&out, "hello", 0, NULL)); 168 ASSERT_EQ(0U, mbrtoc16(&out, "", 0, NULL)); 169 ASSERT_EQ(1U, mbrtoc16(&out, "hello", 1, NULL)) 178 char16_t out; local 199 char16_t out; local 213 char16_t out; local 223 char16_t out; local 236 char16_t out; local 324 char32_t out[8]; local 374 char32_t out; local [all...] |
/bootable/recovery/otafault/ |
test.cpp | 27 const char* out = "321"; local 30 int writev = ota_write(fd, out, 4);
|
/dalvik/dx/tests/119-merge-conflict/testdata/ |
B.java | 5 System.out.println(new A().hello());
|
/external/guava/guava-tests/test/com/google/common/io/ |
LittleEndianDataOutputStreamTest.java | 38 private LittleEndianDataOutputStream out = new LittleEndianDataOutputStream(baos); field in class:LittleEndianDataOutputStreamTest 42 /* Write out various test values in LITTLE ENDIAN FORMAT */ 43 out.write(new byte[] { -100, 100 }); 44 out.writeBoolean(true); 45 out.writeBoolean(false); 46 out.writeByte(100); 47 out.writeByte(-100); 48 out.writeByte((byte) 200); 49 out.writeChar('a'); 50 out.writeShort((short) -30000) [all...] |
/external/icu/icu4j/perf-tests/ |
perftests.pl | 16 $CLASSPATH="../icu4j.jar:../tools/misc/out/lib/icu4j-tools.jar:out/bin"; 18 $CLASSPATH="../icu4j.jar;../tools/misc/out/lib/icu4j-tools.jar;out/bin"; 84 $OUT = ''; 269 # Append text to the global variable $OUT 270 sub out { subroutine 271 $OUT .= join('', @_); 386 my @out; 388 push(@out, $_) [all...] |
/external/junit/src/org/junit/internal/ |
JUnitSystem.java | 7 PrintStream out(); method in interface:JUnitSystem
|
RealSystem.java | 11 public PrintStream out() { method in class:RealSystem 12 return System.out;
|
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/ |
xsputn.pass.cpp | 39 char out[sizeof(in)] = {0}; local 40 t.setp(out, out+sizeof(out)); 42 assert(strcmp(in, out) == 0);
|
/external/libcxx/test/std/re/re.results/re.results.form/ |
form1.pass.cpp | 16 // format(OutputIter out, const char_type* fmt_first, const char_type* fmt_last, 31 char out[100] = {0}; local 33 char* r = m.format(output_iterator<char*>(out), 35 assert(r == out + 58); 36 assert(std::string(out) == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e"); 43 char out[100] = {0}; local 45 char* r = m.format(output_iterator<char*>(out), 48 assert(r == out + 59); 49 assert(std::string(out) == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2"); 56 char out[100] = {0} local 70 wchar_t out[100] = {0}; local 82 wchar_t out[100] = {0}; local 95 wchar_t out[100] = {0}; local [all...] |
form2.pass.cpp | 16 // format(OutputIter out, const basic_string<char_type, ST, SA>& fmt, 36 char out[100] = {0}; local 38 char* r = m.format(output_iterator<char*>(out), fmt).base(); 39 assert(r == out + 58); 40 assert(std::string(out) == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e"); 47 char out[100] = {0}; local 49 char* r = m.format(output_iterator<char*>(out), 51 assert(r == out + 59); 52 assert(std::string(out) == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2"); 59 char out[100] = {0} local 72 wchar_t out[100] = {0}; local 83 wchar_t out[100] = {0}; local 95 wchar_t out[100] = {0}; local [all...] |
form3.pass.cpp | 36 nstr out = m.format(fmt); local 37 assert(out == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e"); 45 nstr out = m.format(fmt, std::regex_constants::format_sed); local 46 assert(out == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2"); 54 nstr out = m.format(fmt, std::regex_constants::format_sed); local 55 assert(out == "match: cdefghi, m[1]: efg, m[2]: e"); 64 wstr out = m.format(fmt); local 65 assert(out == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e"); 73 wstr out = m.format(fmt, std::regex_constants::format_sed); local 74 assert(out == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2") 82 wstr out = m.format(fmt, std::regex_constants::format_sed); local [all...] |
/external/skia/src/gpu/ |
GrProcOptInfo.cpp | 20 GrInitInvariantOutput out; local 21 out.fIsSingleComponent = areCoverageStages; 22 out.fColor = startColor; 23 out.fValidFlags = flags; 24 out.fIsLCDCoverage = isLCD; 25 fInOut.reset(out);
|
/external/sl4a/Utils/src/com/googlecode/android_scripting/ |
IoUtils.java | 36 BufferedOutputStream out = new BufferedOutputStream(output, BUFFER_SIZE); local 40 out.write(buffer, 0, n); 43 out.flush(); 46 out.close();
|