Searched defs:destination (Results 1 - 7 of 7) sorted by relevance

/libcore/
H A DCaCerts.mk29 # $(3): destination directory
30 define include-prebuilt-with-destination-directory
45 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,target-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_target_directory))))
55 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,host-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_host_directory))))
/libcore/luni/src/main/java/java/io/
H A DPipedWriter.java31 private PipedReader destination; field in class:PipedWriter
45 * Constructs a new {@code PipedWriter} connected to {@code destination}.
46 * Any data written to this writer can be read from {@code destination}.
48 * @param destination
51 * if {@code destination} is already connected.
53 public PipedWriter(PipedReader destination) throws IOException { argument
54 super(destination);
55 connect(destination);
68 PipedReader reader = destination;
72 destination
[all...]
/libcore/luni/src/main/java/org/w3c/dom/ls/
H A DLSSerializer.java381 * @param destination The destination for the serialized DOM.
394 LSOutput destination)
393 write(Node nodeArg, LSOutput destination) argument
/libcore/luni/src/main/java/java/net/
H A DInetAddress.java721 private boolean isReachable(InetAddress destination, InetAddress source, int timeout) throws IOException { argument
729 IoBridge.connect(fd, destination, 7, timeout);
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDocumentImpl.java530 short operation, Node source, NodeImpl destination) {
545 operation, entry.getKey(), userData.value, source, destination);
529 notifyUserDataHandlers( short operation, Node source, NodeImpl destination) argument
/libcore/luni/src/test/java/dalvik/system/
H A DDexClassLoaderTest.java86 File destination) throws IOException {
87 if (destination.exists()) {
93 FileOutputStream out = new FileOutputStream(destination);
85 copyResource(ClassLoader loader, String resourceName, File destination) argument
/libcore/luni/src/main/java/java/util/
H A DCollections.java1506 * Copies the elements from the source list to the destination list. At the
1508 * destination array is larger than the source list, the elements in the
1509 * destination list with {@code index >= source.size()} will be unchanged.
1511 * @param destination
1514 * the list with the elements to be copied into the destination.
1516 * when the destination list is smaller than the source list.
1518 * when replacing an element in the destination list is not
1521 public static <T> void copy(List<? super T> destination, List<? extends T> source) { argument
1522 if (destination.size() < source.size()) {
1523 throw new IndexOutOfBoundsException("destination
[all...]

Completed in 763 milliseconds