Searched defs:fill (Results 1 - 25 of 62) sorted by relevance

123

/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest4652928.java47 list.add(fill(new BeanContextSupport()));
48 list.add(fill(new BeanContextServicesSupport()));
52 private static BeanContext fill(BeanContext context) { method in class:Test4652928
/openjdk7/hotspot/src/share/vm/utilities/
H A Dcopy.cpp62 jlong fill = (julong)( (jubyte)value ); // zero-extend local
63 if (fill != 0) {
64 fill += fill << 8;
65 fill += fill << 16;
66 fill += fill << 32;
70 *(jlong*)(dst + off) = fill;
73 jint fill local
83 jshort fill = (jushort)( (jubyte)value ); // zero-extend local
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DShapeDrawPipe.java39 public void fill(SunGraphics2D sg, Shape s); method in interface:ShapeDrawPipe
H A DAAShapePipe.java67 public void fill(SunGraphics2D sg, Shape s) { method in class:AAShapePipe
H A DSpanShapeRenderer.java95 fill(sg, sg.stroke.createStrokedShape(s));
103 public void fill(SunGraphics2D sg, Shape s) { method in class:SpanShapeRenderer
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DResourceBundleUtil.java73 public static String getMessage (String key, String fill) argument
75 Object[] args = { fill };
79 public static String getMessage (String key, String[] fill) argument
81 return MessageFormat.format(fBundle.getString(key), fill);
H A DUtil.java207 public static String getMessage (String key, String fill) argument
218 message = message.substring (0, index) + fill + message.substring (index + 2);
223 public static String getMessage (String key, String[] fill) argument
231 for (int i = 0; i < fill.length; ++i)
235 message = message.substring (0, index) + fill[i] + message.substring (index + 2);
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DJulesShapePipe.java86 public void fill(SunGraphics2D sg2d, Shape s) { method in class:JulesShapePipe
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedInputStream.java205 private void fill() throws IOException { method in class:BufferedInputStream
226 // Note: This would need to be changed if fill()
254 fill();
275 fill();
369 fill();
475 // Else retry in case a new buf was CASed in fill()
H A DBufferedReader.java121 private void fill() throws IOException { method in class:BufferedReader
175 fill();
205 fill();
213 fill();
317 fill();
404 fill();
448 fill();
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DInflaterInputStream.java158 fill();
236 protected void fill() throws IOException { method in class:InflaterInputStream
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/sasl/
H A DSaslInputStream.java90 int actual = fill(); // read and unwrap next SASL buffer
92 actual = fill();
103 // trigger fill()
121 private int fill() throws IOException { method in class:SaslInputStream
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinftrees.c74 unsigned fill; /* index for replicating entries */ local
174 Create and fill in decoding tables. In this loop, the table being
179 fill the table with replicated entries.
228 next = *table; /* current table to fill in */
258 fill = 1U << curr;
259 min = fill; /* save offset to next table */
261 fill -= incr;
262 next[(huff >> drop) + fill] = this;
263 } while (fill != 0);
320 drops back to the root table to fill i
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekMetrics.java89 * The application is performing a fill
92 public void fill(Graphics2D g) { method in class:PeekMetrics
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DOopMapCacheEntry.java44 public void fill(Method method, int bci) { method in class:OopMapCacheEntry
118 // fill mask for parameters
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogCleanupReader.java62 private void fill() throws IOException { method in class:LogCleanupReader
171 fill();
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvFill.java43 stubSF.fill(filledSF);
123 void fill(Function filledFunc) { method in class:SourceFile.Function
228 void fill(SourceFile filledSF) { method in class:SourceFile
237 stubFunc.fill(filledFunc);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DMessageContextImpl.java200 void fill(Packet packet) { method in class:MessageContextImpl
H A DMessageUpdatableContext.java53 private void fill(Packet packet) { method in class:MessageUpdatableContext
54 ctxt.fill(packet);
82 fill(packet);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DReadAllStream.java169 int read = fill(in, buf);
180 private int fill(InputStream in, byte[] buf) throws IOException { method in class:ReadAllStream.MemoryStream
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DImageFactory.java90 fill(image);
146 public static void fill(BufferedImage image) { method in class:ImageFactory
/openjdk7/jdk/src/share/classes/java/util/
H A DArrays.java1885 public static void fill(long[] a, long val) { method in class:Arrays
1907 public static void fill(long[] a, int fromIndex, int toIndex, long val) { method in class:Arrays
1920 public static void fill(int[] a, int val) { method in class:Arrays
1942 public static void fill(int[] a, int fromIndex, int toIndex, int val) { method in class:Arrays
1955 public static void fill(short[] a, short val) { method in class:Arrays
1977 public static void fill(short[] a, int fromIndex, int toIndex, short val) { method in class:Arrays
1990 public static void fill(char[] a, char val) { method in class:Arrays
2012 public static void fill(char[] a, int fromIndex, int toIndex, char val) { method in class:Arrays
2025 public static void fill(byte[] a, byte val) { method in class:Arrays
2047 public static void fill(byt method in class:Arrays
2060 public static void fill(boolean[] a, boolean val) { method in class:Arrays
2082 public static void fill(boolean[] a, int fromIndex, int toIndex, method in class:Arrays
2096 public static void fill(double[] a, double val) { method in class:Arrays
2118 public static void fill(double[] a, int fromIndex, int toIndex,double val){ method in class:Arrays
2131 public static void fill(float[] a, float val) { method in class:Arrays
2153 public static void fill(float[] a, int fromIndex, int toIndex, float val) { method in class:Arrays
2168 public static void fill(Object[] a, Object val) { method in class:Arrays
2192 public static void fill(Object[] a, int fromIndex, int toIndex, Object val) { method in class:Arrays
[all...]
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DManifest.java337 fill();
351 fill();
375 fill();
402 fill();
439 private void fill() throws IOException { method in class:Manifest.FastInputStream
/openjdk7/hotspot/src/share/vm/memory/
H A DthreadLocalAllocBuffer.cpp177 void ThreadLocalAllocBuffer::fill(HeapWord* start, function in class:ThreadLocalAllocBuffer
182 print_stats("fill");
264 // TLABs can't be bigger than we can fill with a int[Integer.MAX_VALUE].
271 // which is fine, since we'll be able to fill that.
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifComboBoxUI.java285 private Color fill; field in class:MotifComboBoxUI.MotifComboBoxArrowIcon
287 public MotifComboBoxArrowIcon(Color lightShadow, Color darkShadow, Color fill) { argument
290 this.fill = fill;
309 g.setColor(fill);

Completed in 333 milliseconds

123