Searched defs:source (Results 76 - 83 of 83) sorted by relevance

1234

/libcore/ojluni/src/main/java/java/lang/
H A DString.java201 * Array that is the source of characters
228 * Array that is the source of Unicode code points
1716 * source is the character array being searched, and the target
1719 * @param source the characters being searched.
1725 static int indexOf(String source, argument
1728 final int sourceLength = source.length();
1745 if (source.charAt(i)!= first) {
1746 while (++i <= max && source.charAt(i) != first);
1753 for (int k = 1; j < end && source.charAt(j)
1768 * source i
1779 indexOf(char[] source, int sourceOffset, int sourceCount, char[] target, int targetOffset, int targetCount, int fromIndex) argument
1868 lastIndexOf(String source, String target, int fromIndex) argument
1930 lastIndexOf(char[] source, int sourceOffset, int sourceCount, char[] target, int targetOffset, int targetCount, int fromIndex) argument
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DScanner.java138 * <p>When a <code>Scanner</code> is closed, it will close its input source
139 * if the source implements the {@link java.io.Closeable} interface.
331 // The input source
332 private Readable source; field in class:Scanner
334 // Boolean is true if source is done
530 * from the specified source delimited by the specified pattern.
532 * @param source A character source implementing the Readable interface
535 private Scanner(Readable source, Pattern pattern) { argument
536 assert source !
555 Scanner(Readable source) argument
567 Scanner(InputStream source) argument
582 Scanner(InputStream source, String charsetName) argument
602 makeReadable(InputStream source, Charset charset) argument
615 Scanner(File source) argument
631 Scanner(File source, String charsetName) argument
637 Scanner(File source, CharsetDecoder dec) argument
656 makeReadable(ReadableByteChannel source, CharsetDecoder dec) argument
674 Scanner(Path source) argument
696 Scanner(Path source, String charsetName) argument
700 Scanner(Path source, Charset charset) argument
710 Scanner(String source) argument
722 Scanner(ReadableByteChannel source) argument
727 makeReadable(ReadableByteChannel source) argument
742 Scanner(ReadableByteChannel source, String charsetName) argument
[all...]
H A DCollections.java436 * Randomly permutes the specified list using a default source of
441 * default source of randomness is only approximately an unbiased source
442 * of independently chosen bits. If it were a perfect source of randomly
473 * Randomly permute the specified list using the specified source of
475 * assuming that the source of randomness is fair.<p>
491 * @param rnd the source of randomness to use to shuffle the list.
581 * will be identical to its index in the source list. The destination
582 * list must be at least as long as the source list. If it is longer, the
589 * @param src The source lis
939 indexOfSubList(List<?> source, List<?> target) argument
992 lastIndexOfSubList(List<?> source, List<?> target) argument
[all...]
/libcore/ojluni/src/main/java/java/util/logging/
H A DLogManager.java1801 * Returns a new PropertyChangeEvent with the given source, property
1804 static Object newPropertyChangeEvent(Object source, String prop, argument
1808 return propertyEventCtor.newInstance(source, prop, oldValue, newValue);
/libcore/ojluni/src/main/native/
H A DNet.c69 #define IP_BLOCK_SOURCE 58 /* Block data from a given source to a given group */
70 #define IP_UNBLOCK_SOURCE 59 /* Unblock data from a given source to a given group */
71 #define IP_ADD_SOURCE_MEMBERSHIP 60 /* Join a source-specific group */
72 #define IP_DROP_SOURCE_MEMBERSHIP 61 /* Leave a source-specific group */
76 #define IP_ADD_SOURCE_MEMBERSHIP 70 /* join a source-specific group */
77 #define IP_DROP_SOURCE_MEMBERSHIP 71 /* drop a single source */
78 #define IP_BLOCK_SOURCE 72 /* block a source */
79 #define IP_UNBLOCK_SOURCE 73 /* unblock a source */
96 #define MCAST_JOIN_SOURCE_GROUP 82 /* join a source-specific group */
97 #define MCAST_LEAVE_SOURCE_GROUP 83 /* leave a single source */
152 initGroupSourceReq(JNIEnv* env, jbyteArray group, jint index, jbyteArray source, struct my_group_source_req* req) argument
534 Java_sun_nio_ch_Net_joinOrDrop4(JNIEnv *env, jobject this, jboolean join, jobject fdo, jint group, jint interf, jint source) argument
580 Java_sun_nio_ch_Net_blockOrUnblock4(JNIEnv *env, jobject this, jboolean block, jobject fdo, jint group, jint interf, jint source) argument
613 Java_sun_nio_ch_Net_joinOrDrop6(JNIEnv *env, jobject this, jboolean join, jobject fdo, jbyteArray group, jint index, jbyteArray source) argument
654 Java_sun_nio_ch_Net_blockOrUnblock6(JNIEnv *env, jobject this, jboolean block, jobject fdo, jbyteArray group, jint index, jbyteArray source) argument
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DSocketChannelTest.java3787 public int write(ByteBuffer source) throws IOException { argument
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp1247 const char** source = reinterpret_cast<const char**>(static_cast<uintptr_t>(address)); local
1255 int length = strlen(source[i]);
1273 const char* sourceString = source[i];
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 464 milliseconds

1234