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

/external/proguard/src/proguard/io/
H A DCascadingDataEntryWriter.java72 Finisher finisher) throws IOException
76 dataEntryWriter1.getOutputStream(dataEntry, finisher);
82 dataEntryWriter2.getOutputStream(dataEntry, finisher);
71 getOutputStream(DataEntry dataEntry, Finisher finisher) argument
H A DDataEntryWriter.java59 * @param finisher the optional finisher that will be called before this
66 Finisher finisher) throws IOException;
65 getOutputStream(DataEntry dataEntry, Finisher finisher) argument
H A DParentDataEntryWriter.java63 Finisher finisher) throws IOException
66 finisher);
62 getOutputStream(DataEntry dataEntry, Finisher finisher) argument
H A DDirectoryWriter.java85 Finisher finisher) throws IOException
114 currentFinisher = finisher;
153 // Let any finisher finish up first.
84 getOutputStream(DataEntry dataEntry, Finisher finisher) argument
H A DFilteredDataEntryWriter.java97 Finisher finisher) throws IOException
106 dataEntryWriter.getOutputStream(dataEntry, finisher) :
96 getOutputStream(DataEntry dataEntry, Finisher finisher) argument
H A DJarWriter.java101 // Clear the finisher.
116 Finisher finisher) throws IOException
145 // Set up the finisher for the entry.
146 currentFinisher = finisher;
224 // Let any finisher finish up first.
115 getOutputStream(DataEntry dataEntry, Finisher finisher) argument
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DOutputCollector.java33 * {@code non-null;} the associated finisher (which holds the instruction
36 private final OutputFinisher finisher; field in class:OutputCollector
55 this.finisher = new OutputFinisher(dexOptions, initialCapacity, regCount);
65 finisher.add(insn);
79 finisher.reverseBranch(which, newTarget);
95 * @return {@code non-null;} the output finisher
105 return finisher;
116 finisher.add(suffix.get(i));
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DFuturesTest.java723 * purposes and a {@code finisher}, a task that will complete the future in
730 final Runnable finisher; field in class:FuturesTest.TestFuture
733 ListenableFuture<String> future, String name, Runnable finisher) {
736 this.finisher = finisher;
1039 inputs.allFutures.get(iBeforeJ ? i : j).finisher.run();
1040 inputs.allFutures.get(iBeforeJ ? j : i).finisher.run();
732 TestFuture( ListenableFuture<String> future, String name, Runnable finisher) argument

Completed in 71 milliseconds