Searched refs:rest (Results 1 - 25 of 37) sorted by relevance

12

/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/com/sun/jndi/cosnaming/
H A DExceptionMapper.java68 NameComponent[] rest = ((CannotProceed) e).rest_of_name;
70 // %%% We assume that rest returns *all* unprocessed components.
72 // NotFound doesn't set rest as expected. -RL
73 if (inputName != null && (inputName.length > rest.length)) {
75 new NameComponent[inputName.length - rest.length];
87 ne.setRemainingName(CNNameParser.cosNameToName(rest));
105 NameComponent[] rest = ((NotFound) e).rest_of_name;
109 System.out.println(rest.length);
112 // %%% Using 1.2 & 1.3 Sun's tnameserv, 'rest' contains only the first
113 // component that failed, not *rest* a
[all...]
H A DCNCtx.java121 String rest = ctx.initUsingUrl(
127 // rest is the INS name
133 return new ResolveResult(ctx, parser.parse(rest));
751 NameComponent rest;
754 (rest=e.rest_of_name[0]).id.equals(leaf.id) &&
755 (rest.kind == leaf.kind ||
756 (rest.kind != null && rest.kind.equals(leaf.kind)));
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DRMIConnectionIdTest.java55 String rest = connectionId.substring("rmi://".length());
56 int spaceIndex = rest.indexOf(' ');
61 String clientAddr = rest.substring(0, spaceIndex);
/openjdk7/jdk/test/java/lang/management/CompositeData/
H A DOpenTypeConverter.java162 final String rest;
164 rest = name.substring(3);
166 rest = name.substring(2);
168 rest = name.substring(3);
172 if (rest.equals("") || method.getParameterTypes().length > 0
173 || type == void.class || rest.equals("Class"))
176 names.add(decapitalize(rest));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBitMap.java79 int rest = data[index];
80 for (int offset = index * bitsPerWord; rest != Bits.NoBits; offset++) {
81 if (rest % 2 == 1) {
88 rest = rest >>> 1;
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DPerInterface.java189 int rest = 0;
193 rest = 3;
195 rest = 2;
196 if (rest != 0)
200 rest = 3;
204 if (rest != 0) {
205 String attrName = operation.substring(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/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/jdk/src/windows/classes/sun/misc/
H A DFileURLMapper.java60 String rest = url.getFile();
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11CustomCursor.java112 int rest = pixels.length - ((numColors > 0) ? cols[0].count : 0);
114 if (rest > 0) {
115 rdis = rdis / rest - fcr;
116 gdis = gdis / rest - fcg;
117 bdis = bdis / rest - fcb;
/openjdk7/jdk/test/javax/management/proxy/
H A DNotificationEmitterProxy.java56 final long rest = timeout -
58 if (rest <= 0) break;
59 wait(rest);
/openjdk7/jdk/src/share/classes/java/awt/
H A DJobAttributes.java1014 int rest = ((copies + fromPage + maxPage + minPage + prFirst + prLast +
1021 rest ^= (sum * 31) << 11;
1024 rest ^= fileName.hashCode();
1027 rest ^= printer.hashCode();
1034 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/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DCommandInterpreter.java833 String rest;
835 rest = t.nextToken("").trim();
837 rest = null;
839 if ((rest != null) && rest.startsWith("@")) {
840 t = new StringTokenizer(rest.substring(1));
849 } else if ((rest != null) && rest.startsWith(":")) {
850 t = new StringTokenizer(rest.substring(1));
868 if (rest !
[all...]
/openjdk7/langtools/test/tools/javac/diags/
H A DArgTypeCompilerFactory.java53 String[] rest;
56 rest = new String[0];
59 rest = opts.subList(1, opts.size()).toArray(new String[opts.size() - 1]);
62 return new Jsr199Compiler(verbose, rest);
H A DExample.java304 String[] rest;
307 rest = new String[0];
310 rest = opts.subList(1, opts.size()).toArray(new String[opts.size() - 1]);
313 return new Jsr199Compiler(verbose, rest);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DCommands.java1053 String rest;
1055 rest = t.nextToken("").trim();
1057 rest = null;
1060 if ((rest != null) && rest.startsWith(":")) {
1061 t = new StringTokenizer(rest.substring(1));
1091 if (rest != null) {
1092 if (!rest.startsWith("(") || !rest.endsWith(")")) {
1094 methodName + rest);
[all...]
/openjdk7/jdk/src/share/classes/sun/management/
H A DMappedMXBeanType.java652 final String rest;
654 rest = name.substring(3);
658 rest = name.substring(2);
664 if (rest.equals("") ||
667 rest.equals("Class")) {
672 names.add(decapitalize(rest));
/openjdk7/jdk/src/share/classes/java/beans/
H A DEventHandler.java381 String rest = getters.substring(Math.min(firstDot + 1, getters.length()));
403 return applyGetters(newTarget, 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/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))

Completed in 2986 milliseconds

12