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

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputBytecode.java34 private InputMethod inlined; field in class:InputBytecode
42 return inlined;
45 public void setInlined(InputMethod inlined) { argument
46 this.inlined = inlined;
H A DInputMethod.java40 private List<InputMethod> inlined; field in class:InputMethod
51 inlined = new ArrayList<InputMethod>();
60 return Collections.unmodifiableList(inlined);
66 for (InputMethod m2 : inlined) {
70 inlined.add(m);
110 for (InputMethod m : inlined) {
/openjdk7/hotspot/test/compiler/6478991/
H A DNullCheckTest.java30 * @run main/othervm -XX:CompileOnly=NullCheckTest.test,NullCheckTest.inlined -Xcomp NullCheckTest
37 public final void inlined(A a) { method in class:NullCheckTest.A
51 // exception in the inlined method is thrown before the null check
53 a1.inlined(a2);

Completed in 251 milliseconds