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

/openjdk7/jdk/test/sun/java2d/cmm/ProfileOp/
H A DReadProfileTest.java27 * @summary Verifies reading profiles of the standard color spaces
44 static byte[][] profiles; field in class:ReadProfileTest
73 profiles = new byte[cspaces.length][];
78 profiles[i] = pf.getData();
80 getProfileTags(profiles[i], tags[i]);
92 if (!Arrays.equals(data, profiles[i])) {
H A DReadWriteProfileTest.java27 * @summary Verifies reading and writing profiles and tags of the standard color
44 static byte[][] profiles; field in class:ReadWriteProfileTest
72 profiles = new byte[cspaces.length][];
77 profiles[i] = pf.getData();
79 getProfileTags(profiles[i], tags[i]);
88 if (!Arrays.equals(data, profiles[i])) {
/openjdk7/jdk/src/share/classes/sun/java2d/cmm/lcms/
H A DLCMSTransform.java62 ICC_Profile[] profiles; field in class:LCMSTransform
83 profiles = new ICC_Profile[1];
84 profiles[0] = profile;
94 * output profiles for further usage.
96 numInComponents = profiles[0].getNumComponents();
97 numOutComponents = profiles[profiles.length - 1].getNumComponents();
103 size+=((LCMSTransform)transforms[i]).profiles.length;
105 profiles = new ICC_Profile[size];
110 System.arraycopy(curTrans.profiles,
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DColorConvertOp.java163 profileList = new ICC_Profile [2]; /* 2 profiles in the list */
182 * The sequence of profiles may include profiles that represent color
183 * spaces, profiles that represent effects, etc. If the whole sequence
199 * @param profiles the array of <code>ICC_Profile</code> objects
204 * @exception NullPointerException if profiles is null
206 public ColorConvertOp (ICC_Profile[] profiles, RenderingHints hints) argument
208 if (profiles == null) {
212 profileList = new ICC_Profile[profiles.length];
213 for (int i1 = 0; i1 < profiles
[all...]

Completed in 28 milliseconds