Searched defs:new_ (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DClassGen.java298 * add the new_ method to the class anyway.
300 public void replaceMethod(Method old, Method new_) { argument
301 if(new_ == null)
307 method_vec.add(new_);
309 method_vec.set(i, new_);
313 * add the new_ field to the class anyway.
315 public void replaceField(Field old, Field new_) { argument
316 if(new_ == null)
322 field_vec.add(new_);
324 field_vec.set(i, new_);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java759 public static final String replace(String str, String old, String new_) { argument
770 buf.append(new_); // append replacement
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DByteCodes.java229 new_ = 187, field in interface:ByteCodes

Completed in 228 milliseconds