Searched refs:unpack (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/invoke/
H A DMethodTypeForm.java215 private static char unpack(long packed, int word) { // word==0 => return a, ==3 => return d method in class:MethodTypeForm
221 return unpack(argCounts, 3);
224 return unpack(argCounts, 2);
227 return unpack(argCounts, 1);
230 return unpack(argCounts, 0);
233 return unpack(primCounts, 3);
236 return unpack(primCounts, 2);
239 return unpack(primCounts, 1);
242 return unpack(primCounts, 0);
/libcore/ojluni/src/main/java/java/util/jar/
H A DPack200.java87 * unpacker.unpack(f, jostream);
199 * and to pack a JAR, you must first pack and unpack the JAR to
536 * <tt>unpack.</tt> are reserved for use by this API.
665 String DEFLATE_HINT = "unpack.deflate.hint";
680 String PROGRESS = "unpack.progress";
698 * <tt>unpack.</tt> are reserved for use by this API.
721 void unpack(InputStream in, JarOutputStream out) throws IOException; method in interface:Pack200.Unpacker
732 void unpack(File in, JarOutputStream out) throws IOException; method in interface:Pack200.Unpacker

Completed in 96 milliseconds