Lines Matching defs:string

1079           ParseException.wrongType(scanner, entry.fullName (), "primitive or string", entryName (entry.type ()));
1087 ParseException.wrongType (scanner, entry.fullName (), "primitive or string (except " + any + ')', any);
1118 public static String overrideName (String string)
1120 String name = (String)overrideNames.get (string);
1121 return (name == null) ? string : name;
1127 // If entry is string, expression value must be string
1220 String string = (String)(e.value()) ;
1227 if (string.length () > max.intValue ())
1228 ParseException.stringTooLong (scanner, string, max.toString ());
1601 String string = token.name;
1609 literal = exprFactory.terminal (string, parseString (string));
1614 ParseException.notANumber (scanner, string);
1621 literal = exprFactory.terminal ("'" + string.substring (1) + "'",
1622 new Character (string.charAt (0)), isWide );
1628 literal = exprFactory.terminal (string, new Double (string));
1633 ParseException.notANumber (scanner, string);
1651 private BigInteger parseString (String string) throws NumberFormatException
1654 if (string.length() > 1)
1655 if (string.charAt (0) == '0')
1656 if (string.charAt (1) == 'x' || string.charAt (1) == 'X')
1658 string = string.substring (2);
1663 return new BigInteger (string, radix);
1691 // If string literals appear together, concatenate them. Ie:
2512 StringEntry string = stFactory.stringEntry ();
2515 string.name (overrideName ("string"));
2520 string.name (overrideName ("wstring"));
2523 string.maxSize (stringType2 (entry));
2524 return string;
2945 // "primitive or string", entryName (ret.type()));
3004 // If the token is a defined thingy, scan the defined string
3008 String string = (String)symbols.get (token.name);
3009 if (string != null && !string.equals (""))
3014 scanner.scanString (prep.expandMacro (string, token));
3019 scanner.scanString (string);
3639 return "string";