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...]