Searched defs:to (Results 1 - 9 of 9) sorted by relevance

/dalvik/tests/004-annotations/src/android/test/anno/
H A DIntToString.java11 String to(); method in interface:IntToString
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
H A DSynthesizer.java2 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * The ASF licenses this file to You under the Apache License, Version 2.0
11 * Unless required by applicable law or agreed to in writing, software
43 boolean remapInstrument(Instrument from, Instrument to); argument
/dalvik/libcore/json/src/main/java/org/json/
H A DJSONTokener.java10 * Unless required by applicable law or agreed to in writing, software
55 * <p>Each tokener may be used to parse a single JSON string. Instances of this
68 * The index of the next character to be returned by {@link #next}. When
151 * specify this behaviour, but it's required to parse
181 * Returns the string up to but not including {@code quote}, unescaping any
194 * sequence, we need to use a StringBuilder to compose the result.
198 /* the index of the first character not yet appended to the builder. */
290 /* try to parse as an integral type... */
312 * unquoted strings. Fall through to tr
569 skipTo(char to) argument
[all...]
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DOpenSSLSocketImplWrapper.java2 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * The ASF licenses this file to You under the Apache License, Version 2.0
11 * Unless required by applicable law or agreed to in writing, software
109 public void setSoTimeout(int to) throws SocketException { argument
110 socket.setSoTimeout(to);
111 super.setSoTimeout(to);
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DFloatControl.java2 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * The ASF licenses this file to You under the Apache License, Version 2.0
11 * Unless required by applicable law or agreed to in writing, software
133 public void shift(float from, float to, int microseconds) { argument
134 setValue(to);
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DCopyOnWriteArrayList.java2 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * licenses this file to you under the Apache License, Version 2.0 (the
11 * Unless required by applicable law or agreed to in writing, software
38 * created. They are not updated to reflect subsequent changes to the list. In
65 * @param c the collection the elements of which are to be copied into
76 * @param array the array the elements of which are to be copied into the
171 * Adds to this CopyOnWriteArrayList all those elements from a given
177 * @return the number of elements actually added to this list.
206 * Adds to thi
605 toArray(Object[] to, Object[] data, int start, int size) argument
[all...]
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DVectorTest.java2 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * The ASF licenses this file to You under the Apache License, Version 2.0
11 * Unless required by applicable law or agreed to in writing, software
114 assertEquals("Failed to inc capacity by proper amount",
176 assertTrue("Failed to add Object", tVector.get(45) == o);
177 assertTrue("Failed to fix-up existing indices", tVector.get(46) == prev);
182 assertNull("Failed to add null", tVector.get(50));
183 assertTrue("Failed to fix-up existing indices after adding null",
215 assertTrue("Failed to add Object", tVector.lastElement() == o);
219 assertNull("Failed to ad
1450 removeRange(int from, int to) argument
[all...]
/dalvik/libcore/openssl/src/main/java/org/openssl/
H A DNativeBN.java10 * Unless required by applicable law or agreed to in writing, software
39 public static native boolean BN_copy(int to, int from); argument
41 // BIGNUM *BN_copy(BIGNUM *to, const BIGNUM *from);
76 public static native byte[] BN_bn2bin(int a, byte[] to); argument
78 // int BN_bn2bin(const BIGNUM *a, unsigned char *to);
80 public static native int[] bn2litEndInts(int a, int[] to); argument
/dalvik/libcore/openssl/src/main/native/
H A DBNInterface.c10 * Unless required by applicable law or agreed to in writing, software
121 static jboolean NativeBN_BN_copy(JNIEnv* env, jclass cls, BIGNUM* to, BIGNUM* from) { argument
122 if (!twoValidHandles(env, to, from)) return FALSE;
123 return (BN_copy(to, from) != NULL);
200 else return -1; // Error outside BN. mc FIXME: what to do in this case? Does JNI throw exception itself?
222 // need to call this due to clear byte at top if avoiding
260 // Put bytes to the int array starting from the end of the byte array
318 // We need to apply two's complement:
326 else return -1; // Error outside BN. mc FIXME: what to d
401 NativeBN_BN_bn2bin(JNIEnv* env, jclass cls, BIGNUM* a, jbyteArray to) argument
423 NativeBN_bn2litEndInts(JNIEnv* env, jclass cls, BIGNUM* a, jintArray to) argument
[all...]

Completed in 515 milliseconds