Lines Matching refs:String

66         String one, two, three, four;  in showStrings()
70 one = (String) field.get(instance); in showStrings()
73 two = (String) field.get(instance); in showStrings()
76 three = (String) field.get(instance); in showStrings()
142 meth = target.getMethod("myMethod", String[].class, float.class, char.class); in run()
147 new String[] { "hi there" }, in run()
183 String strVal = (String) field.get(instance); in run()
188 field.set(instance, new String("a new string")); in run()
189 strVal = (String) field.get(instance); in run()
204 String four; in run()
206 four = (String) field.get(instance); in run()
217 String three; in run()
219 three = (String) field.get(this); in run()
230 String four; in run()
241 String msg = nsfe.getMessage(); in run()
295 field.set(instance, new String("abc")); in run()
343 String val = (String) field.get(instance); in run()
434 String s = "Should be ignored"; in checkSwap()
505 public List<String> stringList;
506 public Map<Integer,String> fancyMethod(ArrayList<String> blah) { return null; } in fancyMethod()
542 private static String stringifyTypeArray(Type[] types) { in stringifyTypeArray()
741 public static void main(String[] args) throws Exception { in main()
792 public int myMethod(String[] strarg, float f, char c) { in myMethod()
811 public String string1 = "hey";
812 public String string2 = "yo";
813 public String string3 = "there";
814 private String string4 = "naughty";
815 public static final String constantString = "a constant string";
864 public void aMethod(Set<String> names) {} in aMethod()
865 public void aMethodIdentical(Set<String> names) {} in aMethodIdentical()