/openjdk7/jdk/src/macosx/classes/sun/font/ |
H A D | CStrikeDisposer.java | 54 long pContext, int[] images) 56 super(font2D, desc, 0L, images); 61 long pContext, long[] images) 63 super(font2D, desc, 0L, images); 53 CStrikeDisposer(Font2D font2D, FontStrikeDesc desc, long pContext, int[] images) argument 60 CStrikeDisposer(Font2D font2D, FontStrikeDesc desc, long pContext, long[] images) argument
|
H A D | CStrike.java | 295 void getGlyphImagePtrs(int[] glyphCodes, long[] images, int len) { argument 305 images[i] = ptr; 309 images[i] = 0L; 328 if (images[i] != 0L) continue; // already filled 361 if (images[i] != 0L && images[i] != -1L) { 370 images[i] = glyphInfoCache.get(code); 375 images[i] = ptr;
|
/openjdk7/jdk/src/solaris/classes/sun/font/ |
H A D | NativeStrikeDisposer.java | 55 long pContext, int[] images) { 56 super(font2D, desc, 0L, images); 61 long pContext, long[] images) { 62 super(font2D, desc, 0L, images); 54 NativeStrikeDisposer(Font2D font2D, FontStrikeDesc desc, long pContext, int[] images) argument 60 NativeStrikeDisposer(Font2D font2D, FontStrikeDesc desc, long pContext, long[] images) argument
|
/openjdk7/jdk/make/ |
H A D | jprt.gmk | 37 jprt_build_product: all images 41 jprt_build_fastdebug: fastdebug images 45 jprt_build_debug: debug images
|
/openjdk7/jdk/src/share/classes/sun/font/ |
H A D | FontStrikeDisposer.java | 67 long pContext, int[] images) { 71 this.intGlyphImages = images; 75 long pContext, long[] images) { 79 this.longGlyphImages = images; 66 FontStrikeDisposer(Font2D font2D, FontStrikeDesc desc, long pContext, int[] images) argument 74 FontStrikeDisposer(Font2D font2D, FontStrikeDesc desc, long pContext, long[] images) argument
|
H A D | GlyphList.java | 91 * images are later referenced. This does mean that if such code discards 111 long images[]; field in class:GlyphList 173 images = new long[len]; 267 * chars to glyph ids to directly map to images? 272 info.fontStrike.getGlyphImagePtrs(glyphData, images, len); 293 strikelist = sgv.setupGlyphImages(images, 327 StrikeCache.unsafe.getFloat(images[i]+StrikeCache.topLeftXOffset); 329 StrikeCache.unsafe.getFloat(images[i]+StrikeCache.topLeftYOffset); 339 (images[i]+StrikeCache.xAdvanceOffset); 341 (images[ [all...] |
H A D | FontStrike.java | 54 abstract void getGlyphImagePtrs(int[] glyphCodes, long[] images,int len); argument
|
H A D | CompositeStrike.java | 113 void getGlyphImagePtrs(int[] glyphCodes, long[] images, int len) { argument 115 int numptrs = strike.getSlot0GlyphImagePtrs(glyphCodes, images, len); 121 images[i] = strike.getGlyphImagePtr(glyphCodes[i] & SLOTMASK);
|
/openjdk7/jdk/test/sun/java2d/ |
H A D | XRenderBlitsTest.java | 27 * @summary Test verifies that rendering standard images to screen does 50 final ArrayList<BufferedImage> images = new ArrayList<BufferedImage>(); 60 images.add(img); 63 Frame f = new Frame("Draw images"); 68 return new Dimension(w * images.size(), h); 74 for (BufferedImage img : images) {
|
/openjdk7/jdk/test/sun/java2d/DirectX/NonOpaqueDestLCDAATest/ |
H A D | NonOpaqueDestLCDAATest.java | 91 images = null; 120 for (Image im : images) { 134 for (int i = 0; i < images.length; i++) { 137 if (images[i] instanceof VolatileImage) { 139 ImageIO.write(((VolatileImage)images[i]). 143 ImageIO.write((BufferedImage)images[i], 177 Image images[]; field in class:NonOpaqueDestLCDAATest 179 if (images == null) { 180 images = new Image[6]; 184 gc.createCompatibleVolatileImage(w,h/images [all...] |
/openjdk7/jdk/make/mkdemo/jfc/SwingSet2/ |
H A D | Makefile | 38 DEMO_MANIFEST_ATTR = SplashScreen-Image: resources/images/splash.png
|
/openjdk7/jdk/make/mksample/webservices/EbayServer/ |
H A D | Makefile | 52 $(SAMPLE_DST_DIR)/images/8d_2.jpg \ 53 $(SAMPLE_DST_DIR)/images/sun_blade_1000_h400px.jpg \ 54 $(SAMPLE_DST_DIR)/images/Sun_Fire_E20K_Server.jpg \
|
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/ |
H A D | BufferedTextPipe.java | 111 final long[] images = gl.getImages(); 116 // so that the associated glyph images are not disposed while enqueued 132 buf.put(images, 0, totalGlyphs); 146 images, gl.getPositions()); 161 long[] images, float[] positions); 157 drawGlyphList(int numGlyphs, boolean usePositions, boolean subPixPos, boolean rgbOrder, int lcdContrast, float glOrigX, float glOrigY, long[] images, float[] positions) argument
|
/openjdk7/jdk/src/share/native/sun/java2d/opengl/ |
H A D | OGLTextRenderer.h | 55 unsigned char *images, unsigned char *positions);
|
/openjdk7/jdk/make/java/awt/ |
H A D | Makefile | 68 CURSORSRC = $(TOPDIR)/src/share/lib/images/cursors 69 CURSORDIR = $(LIBDIR)/images/cursors 72 CURSORPROPSRC = $(TOPDIR)/src/windows/lib/images/cursors 81 CURSORPROPSRC = $(TOPDIR)/src/solaris/lib/images/cursors
|
/openjdk7/jdk/make/common/ |
H A D | Sanity.gmk | 33 sanity-images \ 36 post-sanity-images \ 118 sanity-images:: sanity-base 123 post-sanity post-sanity-all post-sanity-docs post-sanity-images: sane-lastrule
|
/openjdk7/jdk/src/windows/classes/sun/font/ |
H A D | NativeStrike.java | 51 void getGlyphImagePtrs(int[] glyphCodes, long[] images,int len) { argument
|
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/ |
H A D | D3DTextRenderer.h | 94 unsigned char *images, unsigned char *positions);
|
/openjdk7/make/ |
H A D | deploy-rules.gmk | 41 IMAGES_TARGET = images 55 DEPLOY_BUILD_TARGETS += images
|
H A D | jdk-rules.gmk | 33 IMAGES_TARGET = images 103 compare-images: compare-image 110 compare-images-clobber: compare-image-clobber
|
/openjdk7/jdk/src/share/demo/java2d/J2DBench/ |
H A D | Makefile | 74 $(CLASSES)/j2dbench/tests/iio/images \ 96 $(CLASSES)/j2dbench/tests/iio/images: $(RESOURCES)/images
|
/openjdk7/jdk/make/javax/swing/beaninfo/ |
H A D | SwingBeans.gmk | 168 $(RM) -r $(BEANCLASSDIR)/$(SWINGPKG)/beaninfo/images 169 $(MKDIR) -p $(BEANCLASSDIR)/$(SWINGPKG)/beaninfo/images 170 $(CP) $(DOCLETSRC)/beaninfo/images/*.gif $(BEANCLASSDIR)/$(SWINGPKG)/beaninfo/images
|
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/ |
H A D | WizardDlg.java | 119 public WizardDlg(JFrame frame, String title, Vector panels, Vector images) argument 123 this.images = images; 330 private Vector images; field in class:WizardDlg
|
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/ |
H A D | D3DTextRenderer.java | 46 long[] images, float[] positions); 42 drawGlyphList(int numGlyphs, boolean usePositions, boolean subPixPos, boolean rgbOrder, int lcdContrast, float glOrigX, float glOrigY, long[] images, float[] positions) argument
|
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/ |
H A D | OGLTextRenderer.java | 46 long[] images, float[] positions); 42 drawGlyphList(int numGlyphs, boolean usePositions, boolean subPixPos, boolean rgbOrder, int lcdContrast, float glOrigX, float glOrigY, long[] images, float[] positions) argument
|