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

/frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
H A DColorCutQuantizer.java150 final PriorityQueue<Vbox> pq = new PriorityQueue<>(maxColors, VBOX_COMPARATOR_VOLUME);
153 pq.offer(new Vbox(0, mColors.length - 1));
165 * {@link ColorCutQuantizer.Vbox} objects from the queue
172 private void splitBoxes(final PriorityQueue<Vbox> queue, final int maxSize) {
174 final Vbox vbox = queue.poll();
195 private List<Swatch> generateAverageColors(Collection<Vbox> vboxes) {
197 for (Vbox vbox : vboxes) {
211 private class Vbox { class in class:ColorCutQuantizer
222 Vbox(int lowerIndex, int upperIndex) { method in class:ColorCutQuantizer.Vbox
296 final Vbox splitBo
[all...]

Completed in 41 milliseconds