Searched defs:chunks (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/javax/swing/system/6799345/
H A DTestShutdown.java194 public void process(java.util.List<Integer> chunks) argument
196 for (Integer i : chunks)
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DChunkedIntArray.java47 static final int lowbits=10; // How many bits address within chunks
51 ChunksVector chunks=new ChunksVector(); field in class:ChunkedIntArray
65 chunks.addElement(fastArray);
94 if (chunkpos > chunks.size() - 1)
95 chunks.addElement(new int[chunkalloc]);
96 int[] chunk = chunks.elementAt(chunkpos);
128 int[] chunk = chunks.elementAt(chunkpos);
150 int[] chunk = chunks.elementAt(chunkpos);
209 int[] chunk = chunks.elementAt(chunkpos);
230 if (chunkpos > chunks
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingWorker.java189 * protected void process(List&lt;Integer&gt; chunks) {
190 * for (int number : chunks) {
339 * Sends data chunks to the {@link #process} method. This method is to be
394 * protected void process(List&lt;Object[]&gt; chunks) {
395 * for (Object[] row : chunks) {
402 * @param chunks intermediate results to process
408 protected final void publish(V... chunks) { argument
423 doProcess.add(chunks);
427 * Receives data chunks from the {@code publish} method asynchronously on the
433 * @param chunks intermediat
438 process(List<V> chunks) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJFIFMarkerSegment.java93 * Set to <code>true</code> when reading the chunks of an
94 * ICC profile. All chunks are consolidated to create a single
95 * "segment" containing all the chunks. This flag is a state
104 * until all chunks have been read.
1370 * a profile larger than 64K is broken up into a series of chunks.
1372 * combining chunks as necessary.
1375 ArrayList chunks = null; field in class:JFIFMarkerSegment.ICCMarkerSegment
1384 chunks = null;
1406 // get the total number of chunks
1411 ("Image format Error; chunk num > num chunks");
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMethodGenerator.java822 * Find the outlineable chunks in this method that would be the best choices
849 // of outlineable chunks.
852 // keeps track of the child chunks of a chunk. For each chunk,
860 // the list of chunks which have been accepted as candidates chunks
886 // nested within that previous chunk - push the list of chunks
902 // marks the end of a chunk that contained child chunks.
931 // as candidates, after merging adjacent chunks to produce
932 // chunks that are as large as possible
941 // Gather all the child chunks o
996 mergeAdjacentChunks(Chunk[] chunks) argument
[all...]

Completed in 52 milliseconds