Searched refs:masks (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/tools/
H A DMaskingClassLoader.java31 * {@link ClassLoader} that masks a specified set of classes
41 private final String[] masks; field in class:MaskingClassLoader
43 public MaskingClassLoader(String... masks) { argument
44 this.masks = masks;
47 public MaskingClassLoader(Collection<String> masks) { argument
48 this(masks.toArray(new String[masks.size()]));
51 public MaskingClassLoader(ClassLoader parent, String... masks) { argument
53 this.masks
56 MaskingClassLoader(ClassLoader parent, Collection<String> masks) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCV9MembarInstruction.java48 Vector masks = new Vector();
50 masks.add("#LoadLoad");
52 masks.add("#StoreLoad");
54 masks.add("#LoadStore");
56 masks.add("#StoreStore");
59 masks.add("#Lookaside");
61 masks.add("#MemIssue");
63 masks.add("#Sync");
65 // add all masks
66 Object[] tempMasks = masks
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Robot.c55 static jint * masks; variable
179 masks = (jint *)SAFE_SIZE_ARRAY_ALLOC(malloc, sizeof(jint), num_buttons);
180 if (masks == (jint *) NULL) {
186 masks[i] = tmp[i];
358 if ((buttonMask & masks[i])) {
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Robot.cpp126 if ( buttonMask & AwtComponent::masks[3] ) {
131 if ( buttonMask & AwtComponent::masks[4] ) {
169 if ( buttonMask & AwtComponent::masks[3] ) {
174 if ( buttonMask & AwtComponent::masks[4] ) {
254 // pixel data starts after 3 RGBQUADS for color masks
266 // Setup up color masks
H A Dawt_Win32GraphicsDevice.cpp195 // These values are picked according to standard masks
311 int *masks = (int *)gpBitmapInfo->bmiColors; local
313 unsigned int bits = (masks[0] | masks[1] | masks[2]);
321 masks[0], masks[1], masks[2]);
H A Dawt_PrintJob.cpp2570 DWORD masks[256];
2591 dib.masks[0] = redMask;
2592 dib.masks[1] = greenMask;
2593 dib.masks[2] = blueMask;
2594 dib.masks[3] = alphaMask;
H A Dawt_Component.h125 static jint * masks; //InputEvent mask array member in class:AwtComponent
H A Dawt_Component.cpp193 jint *AwtComponent::masks; member in class:AwtComponent
2622 modifiers |= masks[3];
2625 modifiers |= masks[4];
6310 AwtComponent::masks = SAFE_SIZE_NEW_ARRAY(jint, len); member in class:AwtComponent
6312 AwtComponent::masks[i] = tmp[i]; member in class:AwtComponent
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DCipherBox.java121 * Fixed masks of various block size, as the initial decryption IVs
125 * IVs will be discarded by TLS decryption processes, so the fixed masks
128 private static Hashtable<Integer, IvParameterSpec> masks; field in class:CipherBox
216 if (masks == null) {
217 masks = new Hashtable<Integer, IvParameterSpec>(5);
220 IvParameterSpec iv = masks.get(ivSize);
223 masks.put(ivSize, iv);
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c291 int mask_count; /* number of masks in the following */
292 struct mask_type *masks; member in struct:register_info_type
387 static mask_type *copy_masks(context_type *, mask_type *masks, int mask_count);
1734 idata[0].register_info.masks = NULL;
2465 mask_type *masks = this_idata->register_info.masks; local
2471 mask_type *new_masks = masks;
2523 new_masks = add_to_masks(context, masks, mask_count, operand);
2592 new_register_info->masks = new_masks;
3072 register_info_buf.masks
3248 mask_type *masks = this_reginfo->masks; local
3408 copy_masks(context_type *context, mask_type *masks, int mask_count) argument
3424 add_to_masks(context_type *context, mask_type *masks, int mask_count, int d) argument
4154 mask_type *masks = register_info->masks; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/util/
H A DAbstractSaslImpl.java220 String[] vals, byte[] masks, String[] tokens, boolean ignore)
235 answer[i++] = masks[j];
219 parseProp(String propName, String propVal, String[] vals, byte[] masks, String[] tokens, boolean ignore) argument
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DRaster.java423 * the specified data type, width, height, and band masks.
439 * width, height, and band masks.
540 int[] masks = new int[bands];
562 masks[i] = mask << shift;
566 return createPackedRaster(dataType, w, h, masks, location);
733 * band masks. The number of bands is inferred from bandMasks.length.
745 * and band masks.
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME45 Alpha converting alpha values into masks or alpha channels
92 <img_alpha.h> Produce 1-bit transparency masks from alpha
116 Some platforms may manipulate masks 8-bits at a time and others

Completed in 123 milliseconds