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

1 2 3 4 5 67 8 91011>>

  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidGZIPStreamTest.java 84 GZIPOutputStream out = new GZIPOutputStream(bytesOut); local
87 out.write(input, 0, input.length);
88 //out.finish();
90 out.close();
  /libcore/support/src/test/java/tests/support/
Support_GetLocal.java 45 FileOutputStream out = new FileOutputStream(temp); local
49 out.write(buf, 0, result);
52 out.close();
65 FileOutputStream out = new FileOutputStream(temp); local
69 out.write(buf, 0, result);
72 out.close();
81 ByteArrayOutputStream out = new ByteArrayOutputStream(256); local
85 out.write(buf, 0, result);
87 return new ByteArrayInputStream(out.toByteArray());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/network/
BlockingHttpClient.java 74 OutputStream out = new BufferedOutputStream(mConnection.getOutputStream()); local
75 out.write(request);
76 out.flush();
77 out.close();
  /art/compiler/optimizing/
intrinsics_utils.h 65 Location out = invoke_->GetLocations()->Out(); variable
66 if (out.IsValid()) {
67 DCHECK(out.IsRegister()); // TODO: Replace this when we support output in memory.
68 DCHECK(!invoke_->GetLocations()->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
69 codegen->MoveFromReturnRegister(out, invoke_->GetType());
  /art/runtime/
memory_region.cc 44 uint8_t* out = ComputeInternalPointer<uint8_t>(bit_offset >> kBitsPerByteLog2); local
53 *out = (*out & ~mask) | (value << bit_remainder);
58 *out = (*out & ~(value_mask << bit_remainder)) | ((value & value_mask) << bit_remainder);
62 ++out;
  /art/test/1901-get-bytecodes/
bytecodes.cc 50 jbyteArray out = env->NewByteArray(bytecodes_size); local
54 return out;
56 jbyte* bytes = env->GetByteArrayElements(out, /* is_copy */ nullptr);
58 env->ReleaseByteArrayElements(out, bytes, 0);
59 return out;
  /art/test/301-abstract-protected/src/
Main.java 19 System.out.println(new C().m());
  /art/test/519-bound-load-class/src/
Main.java 29 System.out.println((Main)o);
36 System.out.println((Main)o);
  /art/test/972-iface-super-multidex/src/
Main.java 24 System.out.println("Could not load class");
25 e.printStackTrace(System.out);
30 System.out.println((String)m.invoke(c.newInstance(), new Object[0]));
32 System.out.println("Unknown exception occurred");
33 e.printStackTrace(System.out);
38 System.out.println((String)m.invoke(c.newInstance(), new Object[0]));
43 System.out.println("Unexpected AME caught");
44 e.printStackTrace(System.out);
46 System.out.println("Unexpected NSME caught");
47 e.printStackTrace(System.out);
    [all...]
  /build/blueprint/bootstrap/bpglob/
bpglob.go 17 // out build.ninja regenerations when non-matching files are added. See
30 out = flag.String("o", "", "file to write list of files that match glob")
55 fmt.Fprintf(os.Stderr, "usage: bpglob -o out glob\n")
63 if *out == "" {
72 _, err := pathtools.GlobWithDepFile(flag.Arg(0), *out, *out+".d", excludes)
29 out = flag.String("o", "", "file to write list of files that match glob") var
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 110 public void writeTo(AnnotatedOutput out) {
113 out.writeShort(0x300 | DalvOps.NOP);
114 out.writeShort(elemWidth);
115 out.writeInt(initLength);
123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits());
130 out.writeShort((short) ((CstLiteral32) cst).getIntBits());
137 out.writeInt(((CstLiteral32) cst).getIntBits());
144 out.writeLong(((CstLiteral64) cst).getLongBits());
154 out.writeByte(0x00);
  /dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java 112 public void writeTo(AnnotatedOutput out) {
115 out.writeShort(Opcodes.FILL_ARRAY_DATA_PAYLOAD);
116 out.writeShort(elemWidth);
117 out.writeInt(initLength);
125 out.writeByte((byte) ((CstLiteral32) cst).getIntBits());
132 out.writeShort((short) ((CstLiteral32) cst).getIntBits());
139 out.writeInt(((CstLiteral32) cst).getIntBits());
146 out.writeLong(((CstLiteral64) cst).getLongBits());
156 out.writeByte(0x00);
  /dalvik/libdex/
Leb128.h 46 * Note: We don't check to see if cur is out of
89 * Note: We don't check to see if cur is out of
136 u1 out = data & 0x7f; local
137 if (out != data) {
138 *ptr++ = out | 0x80;
141 *ptr++ = out;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
testcapi_long.h 32 TYPENAME in, out; local
65 out = F_PY_TO_S(pyresult);
66 if (out == (TYPENAME)-1 && PyErr_Occurred())
69 if (out != in)
82 TYPENAME out;
138 out = F_PY_TO_S(y);
139 if (out != (TYPENAME)-1 || !PyErr_Occurred())
163 out = F_PY_TO_S(y);
164 if (out != (TYPENAME)-1 || !PyErr_Occurred())
  /device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/Xen/io/
console.h 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
36 char out[2048]; member in struct:xencons_interface
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
CountingOutputStream.java 32 * @param out the output stream to wrap
34 public CountingOutputStream(OutputStream out) {
35 super(out);
49 out.write(b);
55 out.write(b);
61 out.write(b, off, len);
PartiallyUncompressingPipe.java 35 private final CountingOutputStream out; field in class:PartiallyUncompressingPipe
66 * @param out the stream, to write to
69 public PartiallyUncompressingPipe(OutputStream out, int copyBufferSize) {
70 this.out = new CountingOutputStream(out);
85 long bytesWrittenBefore = out.getNumBytesWritten();
89 out.write(copyBuffer, 0, numRead);
93 uncompressor.uncompress(in, out);
95 out.flush();
96 return out.getNumBytesWritten() - bytesWrittenBefore
    [all...]
  /external/boringssl/mac-x86_64/crypto/fipsmodule/
rdrand-x86_64.S 31 jz L$out
42 L$out:
  /external/boringssl/src/crypto/bio/
printf.c 34 * The word 'cryptographic' can be left out if the rouines from the library
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
72 char buf[256], *out, out_malloced = 0; local
99 out = OPENSSL_malloc(requested_len + 1);
101 if (out == NULL) {
106 out_len = vsnprintf(out, requested_len + 1, format, args);
110 out = buf;
113 ret = BIO_write(bio, out, out_len);
115 OPENSSL_free(out);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERSequence.java 59 ASN1OutputStream out)
62 out.write(BERTags.SEQUENCE | BERTags.CONSTRUCTED);
63 out.write(0x80);
68 out.writeObject((ASN1Encodable)e.nextElement());
71 out.write(0x00);
72 out.write(0x00);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
PKCS12StoreParameter.java 17 private final OutputStream out; field in class:PKCS12StoreParameter
21 public PKCS12StoreParameter(OutputStream out, char[] password)
23 this(out, password, false);
26 public PKCS12StoreParameter(OutputStream out, ProtectionParameter protectionParameter)
28 this(out, protectionParameter, false);
31 public PKCS12StoreParameter(OutputStream out, char[] password, boolean forDEREncoding)
33 this(out, new KeyStore.PasswordProtection(password), forDEREncoding);
36 public PKCS12StoreParameter(OutputStream out, ProtectionParameter protectionParameter, boolean forDEREncoding)
38 this.out = out;
    [all...]
  /external/clang/test/CodeGen/
arm_function_epilog.cpp 13 Vec2 out; local
15 x.v = &out;
16 return out;
  /external/curl/docs/examples/
ftpget.c 38 struct FtpFile *out=(struct FtpFile *)stream; local
39 if(out && !out->stream) {
41 out->stream=fopen(out->filename, "wb");
42 if(!out->stream)
45 return fwrite(buffer, size, nmemb, out->stream);
ftpsget.c 40 struct FtpFile *out=(struct FtpFile *)stream; local
41 if(out && !out->stream) {
43 out->stream=fopen(out->filename, "wb");
44 if(!out->stream)
47 return fwrite(buffer, size, nmemb, out->stream);
sftpget.c 49 struct FtpFile *out=(struct FtpFile *)stream; local
50 if(out && !out->stream) {
52 out->stream=fopen(out->filename, "wb");
53 if(!out->stream)
56 return fwrite(buffer, size, nmemb, out->stream);

Completed in 118 milliseconds

1 2 3 4 5 67 8 91011>>