Searched defs:sites (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMutableCallSite.java168 * loaded from the target of any of the call sites.
190 * If possible, it should be buffered for batch processing on sets of call sites.
192 * If {@code sites} contains a null element,
202 * that may access one of the affected call sites.
252 * on a single call site, but rather applies to a set of call sites.
260 * several sites has the same formal effect as many calls,
261 * each on just one of the sites.
270 * @param sites an array of call sites to be synchronized
271 * @throws NullPointerException if the {@code sites} arra
274 syncAll(MutableCallSite[] sites) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDropTargetRegistry.java40 * The class responsible for registration/deregistration of drop sites.
98 private final List<Long> sites = new ArrayList<Long>(); field in class:XDropTargetRegistry.EmbeddedDropSiteEntry
121 if (!sites.contains(lWindow)) {
122 sites.add(lWindow);
130 sites.remove(lWindow);
140 return !sites.isEmpty();
143 long[] ret = new long[sites.size()];
144 Iterator iter = sites.iterator();
155 Iterator<Long> iter = sites.iterator();
306 // No need to update our own drop sites
[all...]

Completed in 30 milliseconds