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

/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DToken.java38 public String sval; field in class:Token
42 public Token(int ttype, String sval, double nval) { argument
44 this.sval = sval;
48 public Token(int ttype, String sval) { argument
49 this(ttype, sval, 0);
65 if (sval == null) {
68 return "IDENTIFIER " + sval;
73 if (sval != null)
74 msg = msg + " \"" + sval
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DAliasFileParser.java58 public String sval; field in class:AliasFileParser.Token
61 public Token(int ttype, String sval) { argument
63 this.sval = sval;
78 currentToken = new Token(st.ttype, st.sval);
81 + " string = " + currentToken.sval);
92 && (currentToken.sval.compareTo(token) == 0)) {
94 + currentToken.sval);
108 logln("matched type: " + ttype + ", token = " + currentToken.sval);
142 || (currentToken.sval
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DStreamTokenizer.java173 public String sval; field in class:StreamTokenizer
366 * delimiter and the <code>sval</code> field is set to the body of
381 * @see java.io.StreamTokenizer#sval
479 * <code>sval</code> field is lowercased whenever a word token is
485 * <code>sval</code> field is not modified.
511 * <code>nval</code> field or the <code>sval</code> field of this
522 * @see java.io.StreamTokenizer#sval
531 sval = null;
629 sval = String.copyValueOf(buf, 0, i);
631 sval
[all...]
/openjdk7/jdk/src/share/demo/applets/SpreadSheet/
H A DSpreadSheet.java828 String sval; field in class:InputField
849 sval = initValue;
859 sval = "";
861 sval = val;
863 nChars = sval.length();
864 sval.getChars(0, sval.length(), buffer, 0);
868 return sval;
874 if (sval != null) {
876 g.drawString(sval,
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp5205 Node* sval = make_load(control(), sptr, TypeInt::INT, T_INT, adr_type); local
5206 store_to_memory(control(), dptr, sval, T_INT, adr_type); local

Completed in 56 milliseconds