Searched refs:opaque (Results 1 - 25 of 35) sorted by relevance

12

/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DOpaqueClassFile.java33 final Opaque opaque; field in class:OpaqueClassFile
35 public OpaqueClassFile(final Opaque opaque) { argument
36 super(opaque.parent.pkg, opaque.type.getJType().getJavaClassName(), com.apple.jobjc.Opaque.class.getCanonicalName());
37 this.opaque = opaque;
41 out.println("\t// " + opaque.type);
42 out.println("\t// " + opaque.type.getJType());
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzutil.c240 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
242 voidpf buf = opaque; /* just to make some compilers happy */
264 void zcfree (voidpf opaque, voidpf ptr) argument
282 ptr = opaque; /* just to make some compilers happy */
299 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
301 if (opaque) opaque = 0; /* to make compiler happy */
305 void zcfree (voidpf opaque, voidpf ptr) argument
307 if (opaque) opaque
[all...]
H A Dcompress.c68 stream.opaque = (voidpf)0;
H A Dzutil.h286 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
287 void zcfree OF((voidpf opaque, voidpf ptr));
290 (*((strm)->zalloc))((strm)->opaque, (items), (size))
291 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
H A Dzlib.h101 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
102 typedef void (*free_func) OF((voidpf opaque, voidpf address));
120 voidpf opaque; /* private data object passed to zalloc and zfree */ member in struct:z_stream_s
156 opaque before calling the init function. All other fields are set by the
159 The opaque value provided by the application will be passed as the first
162 opaque value.
229 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
247 zalloc, zfree and opaque must be initialized before by the caller.
370 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
512 fields next_in, zalloc, zfree and opaque mus
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DMultipleGradientPaint.java235 boolean opaque = true;
237 opaque = opaque && (colors[i].getAlpha() == 0xff);
239 this.transparency = opaque ? OPAQUE : TRANSLUCENT;
303 * {@code Paint} object are opaque,
305 * colors used by this {@code Paint} object is not opaque.
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/dk/
H A DDes3DkCrypto.java65 private byte[] stringToKey(byte[] secretAndSalt, byte[] opaque) argument
68 if (opaque != null && opaque.length > 0) {
H A DArcFourCrypto.java76 private byte[] stringToKey(char[] secret, byte[] opaque) argument
79 if (opaque != null && opaque.length > 0) {
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DDefaultSynthStyle.java50 * Should the component be opaque?
52 private boolean opaque; field in class:DefaultSynthStyle
96 opaque = style.opaque;
121 * @param opaque Whether or not the background is completely painted in
122 * an opaque color
126 public DefaultSynthStyle(Insets insets, boolean opaque, argument
129 this.opaque = opaque;
343 * Sets whether or not the JComponent should be opaque
347 setOpaque(boolean opaque) argument
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/
H A DJType.java133 final Opaque opaque; field in class:JType.JOpaque
134 public JOpaque(final Opaque opaque){ this.opaque = opaque; } argument
135 @Override public String getJavaTypeName() { return opaque.parent.pkg + "." + opaque.name + "Opaque"; }
H A DTypeToJType.java86 final Opaque opaque = TypeCache.inst().getOpaqueForName(type.name);
87 if(opaque != null) return new JOpaque(opaque);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DDigestAuthentication.java62 private String opaque; field in class:DigestAuthentication.Parameters
86 opaque = null;
140 synchronized String getOpaque () { return opaque;}
141 synchronized void setOpaque (String s) { opaque=s;}
277 params.setOpaque (p.findValue("opaque"));
333 String opaque = params.getOpaque();
368 if (opaque != null) {
369 value = value + "\", opaque=\"" + opaque;
391 String opaque
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCWrapper.java66 public static native void setOpaque(long window, boolean opaque); argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalSplitPaneDivider.java200 * If necessary <code>c</code> is made opaque.
203 Object opaque = UIManager.get("SplitPane.oneTouchButtonsOpaque");
204 if (opaque != null) {
205 c.setOpaque(((Boolean)opaque).booleanValue());
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DGraphicsTests.java71 static Color makeAlphaColor(Color opaque, int alpha) { argument
73 opaque = new Color(opaque.getRed(),
74 opaque.getGreen(),
75 opaque.getBlue(),
79 return opaque;
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DUIStyle.java122 @XmlAttribute private boolean opaque = false; field in class:UIRegion
193 // write opaque if true
194 if (opaque) {
195 sb.append(String.format(" d.put(\"%s.opaque\", Boolean.TRUE);\n", prefix));
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME91 <img_opaque.h> No alpha processing (must be opaque input)
125 where any existing opaque converted data resides and to
147 with the indicated "bit" to indicate an opaque pixel. If bits set
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCWrapper.m367 (JNIEnv *env, jclass cls, jlong windowPtr, jboolean opaque)
373 [window setOpaque:(BOOL)opaque];
/openjdk7/jdk/src/share/bin/
H A Dparse_manifest.c81 zs.opaque = (voidpf)Z_NULL;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicMenuItemUI.java124 Object opaque = UIManager.get(getPropertyPrefix() + ".opaque");
125 if (opaque != null) {
126 LookAndFeel.installProperty(menuItem, "opaque", opaque);
129 LookAndFeel.installProperty(menuItem, "opaque", Boolean.TRUE);
466 * so override update (which fills the background of opaque
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusStyle.java230 //foreground, font, and opaque onto the swing component.
607 * then it defaults to being non-opaque.
610 // Force Table CellRenderers to be opaque
614 Boolean opaque = (Boolean)get(ctx, "opaque");
615 return opaque == null ? false : opaque;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableUI.java369 // because in Synth cell renderers are likely to be opaque
750 private boolean opaque; field in class:SynthTableUI.SynthTableCellRenderer
753 opaque = isOpaque;
757 return opaque;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Window.h291 void SetTranslucency(BYTE opacity, BOOL opaque, BOOL setValues = TRUE,
H A Dawt_Window.cpp2594 void AwtWindow::SetTranslucency(BYTE opacity, BOOL opaque, BOOL setValues, argument
2600 if (opacity == old_opacity && opaque == old_opaque) {
2606 m_opaque = opaque;
2617 if (opaque != old_opaque) {
2621 if (opaque && opacity == 0xff) {
2632 if ((opaque && opacity < 0xff) ^ (old_opaque && old_opacity < 0xff)) {
2642 if (opaque) {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java264 * If <code>paintingChild</code> is opaque, no need to paint
758 * invoker super's implementation you must honor the opaque property,
760 * if this component is opaque, you must completely fill in the background
761 * in a non-opaque color. If you do not honor the opaque property you
838 // Enable painting of heavyweights in non-opaque windows.
899 // heavyweight in a non-opaque window
2708 * color is used only if the component is opaque, and only
4112 if (propertyName == "opaque") {
4328 * Returns true if this component is completely opaque
[all...]

Completed in 111 milliseconds

12