Searched defs:rest (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DArgumentList.java34 public ArgumentList(Expression arg, ArgumentList rest) { argument
36 _rest = rest;
H A DUnionPathExpr.java54 public UnionPathExpr(Expression pathExpr, Expression rest) { argument
56 _rest = rest;
/openjdk7/jdk/src/share/classes/java/util/
H A DEnumSet.java315 * @param rest the remaining elements the set is to contain initially
317 * or if <tt>rest</tt> is null
321 public static <E extends Enum<E>> EnumSet<E> of(E first, E... rest) { argument
324 for (E e : rest)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DBIElement.java62 this.rest = BIContent.create(c,this);
66 if(p.getLocalName().equals("rest"))
67 this.rest = BIContent.create(p,this);
144 * The "rest" content-property declaration.
146 * This field is null when there was no "rest" declaration.
148 private BIContent rest; field in class:BIElement
246 * Iterates all content-property declarations (except 'rest').
263 * Gets the 'rest' content-property declaration, if any.
265 * if there is no 'rest' declaration, return null.
267 public BIContent getRest() { return this.rest; }
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DList.java107 public static <A> List<A> of(A x1, A x2, A x3, A... rest) { argument
108 return new List<A>(x1, new List<A>(x2, new List<A>(x3, from(rest))));
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DPostExceptionTest.java64 public static Case caze(Throwable t, WHERE w, WHERE... rest) { argument
65 return new Case(t,EnumSet.of(w,rest));
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp421 idx_t rest = size(); local
422 for (; rest >= (idx_t) BitsPerWord; rest -= BitsPerWord) {
426 return rest == 0 || (*word | ~right_n_bits((int)rest)) == (bm_word_t) AllBits;
432 idx_t rest = size(); local
433 for (; rest >= (idx_t) BitsPerWord; rest -= BitsPerWord) {
437 return rest == 0 || (*word & right_n_bits((int)rest))
456 idx_t rest = map(index) >> (offset & (BitsPerWord - 1)); local
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJavahTask.java396 private void handleOption(String name, Iterator<String> rest) throws BadArgs { argument
400 if (rest.hasNext())
401 o.process(this, name, rest.next());
408 while (rest.hasNext())
409 rest.next();
415 if (fileManager.handleOption(name, rest))
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DJavapTask.java544 private void handleOption(String name, Iterator<String> rest) throws BadArgs { argument
548 if (rest.hasNext())
549 o.process(this, name, rest.next());
556 while (rest.hasNext())
557 rest.next();
563 if (fileManager.handleOption(name, rest))
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsintrp.c194 int cell0, rest; local
209 rest = FIXED_REST_TO_INT(val3); // Rest is 16 LSB bits
215 Output[0] = LinearInterp(rest, y0, y1);
226 cmsFloat32Number val2, rest; local
242 rest = val2 - cell0;
247 Output[0] = y0 + (y1 - y0) * rest;
290 cmsFloat32Number val2, rest; local
307 rest = val2 - cell0;
317 Output[OutChan] = y0 + (y1 - y0) * rest;
1034 cmsFloat32Number rest; local
1122 cmsFloat32Number rest; local
1209 cmsFloat32Number rest; local
1294 cmsFloat32Number rest; local
1379 cmsFloat32Number rest; local
[all...]
H A Dcmslut.c772 int i, t, nTotalPoints, index, rest; local
797 rest = i;
800 cmsUInt32Number Colorant = rest % nSamples[t];
802 rest /= nSamples[t];
832 int i, t, nTotalPoints, index, rest; local
851 rest = i;
854 cmsUInt32Number Colorant = rest % nSamples[t];
856 rest /= nSamples[t];
890 int i, t, nTotalPoints, rest; local
900 rest
920 int i, t, nTotalPoints, rest; local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp1717 // for the rest of its life! Just another racing bug in the life of
1971 double rest = sum; local
1974 rest -= histo[i];
1977 tty->print_cr("rest: %7d (%5.1f%%))", (int)rest, rest / percent);

Completed in 72 milliseconds