Searched defs:atoms (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAtomList.java31 * Helper class to ease the work with the lists of atoms.
34 Set<XAtom> atoms = new HashSet<XAtom>(); field in class:XAtomList
45 * Uses default display to initialize atoms.
58 * the arrays of atoms. Array can contain null atoms.
60 public XAtomList(XAtom[] atoms) { argument
61 init(atoms);
63 private void init(XAtom[] atoms) { argument
64 for (int i = 0; i < atoms.length; i++) {
65 add(atoms[
150 addAll(XAtomList atoms) argument
[all...]
H A DXMSelection.java66 XAtom atoms[]; field in class:XMSelection
240 atoms = new XAtom[getNumberOfScreens()];
266 if (atoms != null) {
267 return atoms[screen];
273 if (atoms != null) {
274 atoms[screen] = a;
H A DXAtom.java31 * Standard X Atom are defined by X11 and these atoms are defined in this class
34 * atoms are defined in the Inter client communications converntions manual.
663 * @return array of atoms, array of length 0 if the atom list is empty
701 * @return list of atoms, empty list if the atom list is empty
715 * Sets property value of type ATOM list to the list of atoms.
717 void setAtomListProperty(long window, XAtom[] atoms) { argument
718 long data = toData(atoms);
719 setAtomData(window, XAtom.XA_ATOM, data, atoms.length);
724 * Sets property value of type ATOM list to the list of atoms specified by XAtomList
726 void setAtomListProperty(long window, XAtomList atoms) { argument
734 setAtomListProperty(XBaseWindow window, XAtom[] atoms) argument
741 setAtomListProperty(XBaseWindow window, XAtomList atoms) argument
760 toData(XAtom[] atoms) argument
[all...]
H A DXlibWrapper.java306 static native int XInternAtoms(long display, String[] names, boolean only_if_exists, long atoms); argument
/openjdk7/jdk/src/share/demo/applets/MoleculeViewer/
H A DXYZApp.java71 Atom atoms[]; field in class:XYZChemModel
157 atoms = new Atom[maxvert];
164 System.arraycopy(atoms, 0, na, 0, atoms.length);
165 atoms = na;
172 atoms[i] = a;
247 atoms[j / 3].paint(g, v[j], v[j + 1], grey);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c54 * arrays of atoms is safe.
69 * JDK by interning these atoms. Use awt_wm_atomInterned() to intern
91 * _NET_WM_STATE is a list of atoms.
151 * Intern a bunch of atoms we are going use.
156 /* Minimize X traffic by creating atoms en mass... This requires
163 /* Just add new atoms to this list */
201 Atom atoms[ATOM_LIST_LENGTH]; local
210 DTRACE_PRINT("WM: initializing atoms ... ");
212 False, atoms);
218 /* Store returned atoms int
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java4140 // j is the number of atoms that have matched
4181 // j is the number of atoms that have matched
4479 Node[] atoms = new Node[2]; field in class:Pattern.Branch
4484 atoms[0] = first;
4485 atoms[1] = second;
4489 if (size >= atoms.length) {
4490 Node[] tmp = new Node[atoms.length*2];
4491 System.arraycopy(atoms, 0, tmp, 0, atoms.length);
4492 atoms
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c1342 (JNIEnv *env, jclass clazz, jlong display, jobjectArray names_arr, jboolean only_if_exists, jlong atoms)
1361 status = XInternAtoms((Display*)jlong_to_ptr(display), names, name_index, only_if_exists, (Atom*) jlong_to_ptr(atoms));
1341 Java_sun_awt_X11_XlibWrapper_XInternAtoms(JNIEnv *env, jclass clazz, jlong display, jobjectArray names_arr, jboolean only_if_exists, jlong atoms) argument

Completed in 187 milliseconds