Searched defs:nval (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DToken.java39 public double nval; field in class:Token
42 public Token(int ttype, String sval, double nval) { argument
45 this.nval = nval;
92 sb.append("ttype=TT_NUM,").append("nval="+nval);
/openjdk7/jdk/src/share/classes/java/io/
H A DStreamTokenizer.java185 public double nval; field in class:StreamTokenizer
403 * value of the token into the <code>nval</code> field.
405 * @see java.io.StreamTokenizer#nval
511 * <code>nval</code> field or the <code>sval</code> field of this
521 * @see java.io.StreamTokenizer#nval
614 nval = neg ? -v : v;
757 * field, and not to modify the value in the <code>nval</code> or
761 * @see java.io.StreamTokenizer#nval
789 * @see java.io.StreamTokenizer#nval
806 ret = "n=" + nval;
[all...]
/openjdk7/jdk/src/windows/native/sun/font/
H A Dfontpath.c554 DWORD nval; local
658 for (nval = 0; nval < dwNumValues; nval++ ) {
662 ret = RegEnumValueW(hkeyFonts, nval, (LPWSTR)wname, &dwNameSize,
665 ret = RegEnumValueA(hkeyFonts, nval, (LPSTR)cname, &dwNameSize,
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1667 // case [: do(nval:u2) {value};
1683 if ((index += 2) >= limit) return limit; // read nval
1684 int nval = Bytes::get_Java_u2(buffer+index-2); local
1685 while (--nval >= 0 && index < limit) {
/openjdk7/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp3425 jint nval = (obj_array local
3429 Node* cmp = _gvn.transform( new(C) CmpINode(layout_val, intcon(nval)) );

Completed in 71 milliseconds