HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 726 - 750 of 4549) sorted by null

<<21222324252627282930>>

  /development/samples/ApiDemos/src/com/example/android/apis/view/
TextSwitcher1.java 53 Animation out = AnimationUtils.loadAnimation(this, local
56 mSwitcher.setOutAnimation(out);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeRewriter.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
103 System.out.println(((Tree)oldTree).toStringTree()+" -> "+
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialFunctionNewtonForm.java 113 double[] out = new double[a.length]; local
114 System.arraycopy(a, 0, out, 0, a.length);
115 return out;
126 double[] out = new double[c.length]; local
127 System.arraycopy(c, 0, out, 0, c.length);
128 return out;
142 double[] out = new double[coefficients.length]; local
143 System.arraycopy(coefficients, 0, out, 0, coefficients.length);
144 return out;
PolynomialSplineFunction.java 203 double out[] = new double[n + 1]; local
204 System.arraycopy(knots, 0, out, 0, n + 1);
205 return out;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
AbstractContinuousDistribution.java 182 double[] out = new double[sampleSize]; local
184 out[i] = sample();
186 return out;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
BitStringTest.java 94 DerOutputStream out = new DerOutputStream(asn1, local
97 (byte[]) validBitstring[i][1], out.encoded));
240 DerOutputStream out = new DerOutputStream(encoder, local
243 (byte[]) testcaseBoolean[i][1], out.encoded));
SequenceOfTest.java 97 DerOutputStream out = new DerOutputStream(sequenceOf, local
100 (byte[]) testcases[i][1], out.encoded));
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
CertificateRequestTest.java 75 HandshakeIODataStream out = new HandshakeIODataStream(); local
76 message.send(out);
77 byte[] encoded = out.getData(1000);
78 assertEquals("incorrect out data length", message.length(), encoded.length);
ServerKeyExchangeTest.java 49 HandshakeIODataStream out = new HandshakeIODataStream(); local
50 message.send(out);
51 byte[] encoded = out.getData(1000);
52 assertEquals("incorrect out data length", message.length(),
103 HandshakeIODataStream out = new HandshakeIODataStream(); local
104 message.send(out);
105 byte[] encoded = out.getData(1000);
106 assertEquals("incorrect out data length", message.length(),
152 HandshakeIODataStream out = new HandshakeIODataStream(); local
153 message.send(out);
    [all...]
  /external/apache-http/android/src/com/android/internal/http/multipart/
FilePart.java 184 * @param out The output stream
189 protected void sendDispositionHeader(OutputStream out)
191 LOG.trace("enter sendDispositionHeader(OutputStream out)");
192 super.sendDispositionHeader(out);
195 out.write(FILE_NAME_BYTES);
196 out.write(QUOTE_BYTES);
197 out.write(EncodingUtils.getAsciiBytes(filename));
198 out.write(QUOTE_BYTES);
204 * @param out The output stream.
209 protected void sendData(OutputStream out) throws IOException
    [all...]
  /external/apache-http/src/org/apache/commons/codec/binary/
Hex.java 67 byte[] out = new byte[len >> 1];
75 out[i] = (byte) (f & 0xFF);
78 return out;
110 char[] out = new char[l << 1]; local
114 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4 ];
115 out[j++] = DIGITS[ 0x0F & data[i] ];
118 return out;
  /external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/bsdiff/
BsPatchTest.java 640 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
641 BsPatch.pipe(in, out, new byte[100], dataLength);
642 int actualLength = out.toByteArray().length;
723 FileOutputStream out = new FileOutputStream(oldFile); local
724 out.write(buffer);
725 out.flush();
726 out.close();
735 OutputStream out = new FileOutputStream(oldFile); local
737 out.write(0);
739 out.close()
762 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /external/boringssl/src/crypto/cipher/
cipher_test.cc 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
119 const std::vector<uint8_t> *in, *out; local
122 out = &ciphertext;
125 out = &plaintext;
154 if (in->size() != out->size()) {
156 (unsigned)out->size());
196 if (!t->ExpectBytesEqual(out->data(), out->size(), result.data(),
  /external/boringssl/src/crypto/modes/
gcm_test.c 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
241 static int from_hex(uint8_t *out, char in) {
243 *out = in - '0';
247 *out = in - 'a' + 10;
251 *out = in - 'A' + 10;
258 static int decode_hex(uint8_t **out, size_t *out_len, const char *in,
264 *out = NULL;
292 *out = buf;
305 *nonce = NULL, *ciphertext = NULL, *tag = NULL, *out = NULL; local
319 goto out;
    [all...]
  /external/boringssl/win-x86_64/crypto/rand/
rdrand-x86_64.asm 50 jz NEAR $L$out
61 $L$out:
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Boolean.java 172 ASN1OutputStream out)
175 out.writeEncoded(BERTags.BOOLEAN, value);
ASN1Enumerated.java 121 ASN1OutputStream out)
124 out.writeEncoded(BERTags.ENUMERATED, bytes);
DERIA5String.java 143 ASN1OutputStream out)
146 out.writeEncoded(BERTags.IA5_STRING, string);
DERNumericString.java 137 ASN1OutputStream out)
140 out.writeEncoded(BERTags.NUMERIC_STRING, string);
DERPrintableString.java 132 ASN1OutputStream out)
135 out.writeEncoded(BERTags.PRINTABLE_STRING, string);
DERUniversalString.java 132 ASN1OutputStream out)
135 out.writeEncoded(BERTags.UNIVERSAL_STRING, this.getOctets());
  /external/curl/docs/examples/
http2-download.c 144 FILE *out; local
149 out = fopen(filename, "wb");
152 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, out);
  /external/deqp/framework/qphelper/
qpDebugOut.c 114 FILE* out = getOutFile(type); local
117 fprintf(out, "FATAL ERROR: ");
119 fputs(message, out);
123 putc('\n', out);
124 fflush(out);
130 FILE* out = getOutFile(type); local
133 fprintf(out, "FATAL ERROR: ");
135 vfprintf(out, format, args);
139 putc('\n', out);
140 fflush(out);
    [all...]
  /external/deqp/modules/egl/
teglInfoTests.cpp 50 int out; local
51 strStream >> out; local
52 return out;
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
EncodedArrayItem.java 95 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local
96 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out);
99 encodedForm = out.toByteArray();
105 protected void writeTo0(DexFile file, AnnotatedOutput out) {
106 boolean annotates = out.annotates();
109 out.annotate(0, offsetString() + " encoded array");
116 ValueEncoder encoder = new ValueEncoder(file, out);
119 out.write(encodedForm);

Completed in 51 milliseconds

<<21222324252627282930>>