Searched defs:ttype (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DToken.java40 public int ttype; field in class:Token
42 public Token(int ttype, String sval, double nval) { argument
43 this.ttype = ttype;
48 public Token(int ttype, String sval) { argument
49 this(ttype, sval, 0);
52 public Token(int ttype) { argument
53 this(ttype, null, 0);
57 switch(ttype) {
71 if (ttype
[all...]
H A DParser.java135 lookahead = new Token(st.ttype, st.sval, st.nval);
145 if ((lookahead.ttype == StreamTokenizer.TT_WORD)
158 private void match(int ttype, String token) argument
160 if (lookahead.ttype == ttype && lookahead.sval.compareTo(token) == 0) {
163 throw new SyntaxException(st.lineno(), new Token(ttype, token),
171 private void match(int ttype) throws ParserException, IOException { argument
172 if (lookahead.ttype == ttype) {
175 throw new SyntaxException(st.lineno(), new Token(ttype), lookahea
182 match(char ttype) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DAliasFileParser.java59 public int ttype; field in class:AliasFileParser.Token
61 public Token(int ttype, String sval) { argument
62 this.ttype = ttype;
78 currentToken = new Token(st.ttype, st.sval);
80 logln("Read token: type = " + currentToken.ttype
88 private void match(int ttype, String token) argument
91 if ((currentToken.ttype == ttype)
93 logln("matched type: " + ttype
106 match(int ttype) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DConstFold.java330 * ttype.
331 * @param ttype The target type of the coercion.
333 Type coerce(Type etype, Type ttype) { argument
334 // WAS if (etype.baseType() == ttype.baseType())
335 if (etype.tsym.type == ttype.tsym.type)
339 switch (ttype.tag) {
356 return ttype;
H A DAttr.java324 public Type coerce(Type etype, Type ttype) { argument
325 return cfolder.coerce(etype, ttype);
/openjdk7/jdk/src/share/classes/java/io/
H A DStreamTokenizer.java128 public int ttype = TT_NOTHING; field in class:StreamTokenizer
151 * initializing ttype. FIXME This could be made public and
163 * <code>ttype</code> field is <code>TT_WORD</code>. The current token is
164 * a quoted string token when the value of the <code>ttype</code> field is
171 * @see java.io.StreamTokenizer#ttype
178 * the <code>ttype</code> field is <code>TT_NUMBER</code>.
183 * @see java.io.StreamTokenizer#ttype
330 * single-character token and sets <code>ttype</code> field to the
339 * @see java.io.StreamTokenizer#ttype
365 * constant, the <code>ttype</cod
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dsubnode.cpp1105 const Type* ttype = phase->type(test_value->in(CMoveNode::IfTrue)); local
1106 if (ftype == TypeInt::ZERO && !TypeInt::ZERO->higher_equal(ttype)) {
1108 } else if (ttype == TypeInt::ZERO && !TypeInt::ZERO->higher_equal(ftype)) {
H A Dloopopts.cpp1538 const TypeInt* ttype = NULL; local
1559 &trunc1, &trunc2, &ttype);
1569 &trunc1, &trunc2, &ttype);
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DStubGenerator.java2235 String testUtil(String objectName, Type ttype) { argument
2237 String correctedName = (String)ttype.getPackageName() + "." + objectName;

Completed in 89 milliseconds