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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DRequestContext.java74 * So we start by maintaining state as a combination of {@link #others}
100 * typed fields nor {@link #others} directly.
120 private final Map<String,Object> others; field in class:RequestContext
243 others = new HashMap<String, Object>();
250 others = new HashMap<String,Object>(that.others);
264 return others.get(key);
274 return others.put(key,value);
310 if(!others.isEmpty()) {
311 packet.invocationProperties.putAll(others);
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djchuff.c714 int others[257]; /* next symbol in current branch of tree */ local
724 others[i] = -1; /* init links to empty */
767 while (others[c1] >= 0) {
768 c1 = others[c1];
772 others[c1] = c2; /* chain c2 onto c1's tree branch */
776 while (others[c2] >= 0) {
777 c2 = others[c2];

Completed in 38 milliseconds