Lines Matching refs:f
25 Executable method, long location, Class<?> f_klass, Object target, Field f, Object value) { in notifyFieldModify() argument
26 System.out.println("method: " + method + "\tMODIFY: " + f + "\tSet to: " + value); in notifyFieldModify()
30 Executable method, long location, Class<?> f_klass, Object target, Field f) { in notifyFieldAccess() argument
31 System.out.println("method: " + method + "\tACCESS: " + f); in notifyFieldAccess()
94 for (Field f : Transform.class.getDeclaredFields()) { in run()
95 System.out.println(f.toString() + "=" + f.get(null)); in run()
116 for (Field f : Transform.class.getDeclaredFields()) { in run()
117 Trace.watchFieldAccess(f); in run()
118 Trace.watchFieldModification(f); in run()
128 for (Field f : Transform.class.getDeclaredFields()) { in run()
129 System.out.println(f.toString() + "=" + f.get(null)); in run()