Searched defs:from (Results 1 - 8 of 8) sorted by relevance

/dalvik/tests/004-annotations/src/android/test/anno/
H A DIntToString.java10 int from(); method in interface:IntToString
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
H A DSynthesizer.java43 boolean remapInstrument(Instrument from, Instrument to); argument
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DHandshakeIODataStream.java41 * consume the data from the pipe. The second pipe is an outcoming
125 * Removes the data from the marked position to
127 * to delete one message from the internal buffer.
192 private void append(byte[] src, int from, int length) { argument
212 System.arraycopy(src, from, buffer, read_pos_end, length);
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DFloatControl.java133 public void shift(float from, float to, int microseconds) { argument
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DVectorTest.java1450 protected void removeRange(int from, int to) { argument
1451 super.removeRange(from, to);
/dalvik/libcore/math/src/main/java/java/math/
H A DBigInt.java138 public void putCopy(BigInt from) { argument
140 Check(NativeBN.BN_copy(this.bignum, from.bignum));
/dalvik/libcore/openssl/src/main/java/org/openssl/
H A DNativeBN.java39 public static native boolean BN_copy(int to, int from); argument
41 // BIGNUM *BN_copy(BIGNUM *to, const BIGNUM *from);
42 // public static native int BN_dup(int from);
/dalvik/libcore/openssl/src/main/native/
H A DBNInterface.c135 static jboolean NativeBN_BN_copy(JNIEnv* env, jclass cls, BIGNUM* to, BIGNUM* from) { argument
136 if (!twoValidHandles(env, to, from)) return FALSE;
137 return (BN_copy(to, from) != NULL);
274 // Put bytes to the int array starting from the end of the byte array
619 // Following code insourced from bn_shift.c in order to have bug fixed:
812 * Defines the mapping from Java methods and their signatures

Completed in 1100 milliseconds