Searched defs:bcs (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeANewArray.java63 public static BytecodeANewArray at(BytecodeStream bcs) { argument
64 return new BytecodeANewArray(bcs.method(), bcs.bci());
H A DBytecodeBipush.java63 public static BytecodeBipush at(BytecodeStream bcs) { argument
64 return new BytecodeBipush(bcs.method(), bcs.bci());
H A DBytecodeCheckCast.java63 public static BytecodeCheckCast at(BytecodeStream bcs) { argument
64 return new BytecodeCheckCast(bcs.method(), bcs.bci());
H A DBytecodeGetField.java63 public static BytecodeGetField at(BytecodeStream bcs) { argument
64 return new BytecodeGetField(bcs.method(), bcs.bci());
H A DBytecodeGetStatic.java63 public static BytecodeGetStatic at(BytecodeStream bcs) { argument
64 return new BytecodeGetStatic(bcs.method(), bcs.bci());
H A DBytecodeGoto.java63 public static BytecodeGoto at(BytecodeStream bcs) { argument
64 return new BytecodeGoto(bcs.method(), bcs.bci());
H A DBytecodeGotoW.java63 public static BytecodeGotoW at(BytecodeStream bcs) { argument
64 return new BytecodeGotoW(bcs.method(), bcs.bci());
H A DBytecodeIf.java65 public static BytecodeIf at(BytecodeStream bcs) { argument
66 return new BytecodeIf(bcs.method(), bcs.bci());
H A DBytecodeIinc.java64 public static BytecodeIinc at(BytecodeStream bcs) { argument
65 return new BytecodeIinc(bcs.method(), bcs.bci());
H A DBytecodeInstanceOf.java63 public static BytecodeInstanceOf at(BytecodeStream bcs) { argument
64 return new BytecodeInstanceOf(bcs.method(), bcs.bci());
H A DBytecodeJsr.java63 public static BytecodeJsr at(BytecodeStream bcs) { argument
64 return new BytecodeJsr(bcs.method(), bcs.bci());
H A DBytecodeJsrW.java63 public static BytecodeJsrW at(BytecodeStream bcs) { argument
64 return new BytecodeJsrW(bcs.method(), bcs.bci());
H A DBytecodeLoad.java69 public static BytecodeLoad at(BytecodeStream bcs) { argument
70 return new BytecodeLoad(bcs.method(), bcs.bci());
H A DBytecodeMultiANewArray.java67 public static BytecodeMultiANewArray at(BytecodeStream bcs) { argument
68 return new BytecodeMultiANewArray(bcs.method(), bcs.bci());
H A DBytecodeNew.java63 public static BytecodeNew at(BytecodeStream bcs) { argument
64 return new BytecodeNew(bcs.method(), bcs.bci());
H A DBytecodeNewArray.java122 public static BytecodeNewArray at(BytecodeStream bcs) { argument
123 return new BytecodeNewArray(bcs.method(), bcs.bci());
H A DBytecodePutField.java63 public static BytecodePutField at(BytecodeStream bcs) { argument
64 return new BytecodePutField(bcs.method(), bcs.bci());
H A DBytecodePutStatic.java63 public static BytecodePutStatic at(BytecodeStream bcs) { argument
64 return new BytecodePutStatic(bcs.method(), bcs.bci());
H A DBytecodeRet.java59 public static BytecodeRet at(BytecodeStream bcs) { argument
60 return new BytecodeRet(bcs.method(), bcs.bci());
H A DBytecodeSipush.java63 public static BytecodeSipush at(BytecodeStream bcs) { argument
64 return new BytecodeSipush(bcs.method(), bcs.bci());
H A DBytecodeStore.java69 public static BytecodeStore at(BytecodeStream bcs) { argument
70 return new BytecodeStore(bcs.method(), bcs.bci());
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextServiceAvailableEvent.java47 * @param bcs The context in which the service has become available
50 public BeanContextServiceAvailableEvent(BeanContextServices bcs, Class sc) { argument
51 super((BeanContext)bcs);
H A DBeanContextServiceProvider.java59 * @param bcs The <code>BeanContextServices</code> associated with this
73 Object getService(BeanContextServices bcs, Object requestor, Class serviceClass, Object serviceSelector); argument
81 * @param bcs the <code>BeanContextServices</code> associated with this
88 public void releaseService(BeanContextServices bcs, Object requestor, Object service); argument
99 * @param bcs the <code>BeanContextServices</code> for this request
103 Iterator getCurrentServiceSelectors(BeanContextServices bcs, Class serviceClass); argument
H A DBeanContextServiceRevokedEvent.java44 * @param bcs the <code>BeanContextServices</code>
49 public BeanContextServiceRevokedEvent(BeanContextServices bcs, Class sc, boolean invalidate) { argument
50 super((BeanContext)bcs);
/openjdk7/jdk/test/java/beans/beancontext/
H A DTest4328406.java60 BeanContextServices bcs = (BeanContextServices) getBeanContext();
61 bcs.addService(this.getClass(), this);
64 public Object getService(BeanContextServices bcs, Object requestor, Class serviceClass, Object serviceSelector) { argument
68 public void releaseService(BeanContextServices bcs, Object requestor, Object argument
72 public Iterator getCurrentServiceSelectors(BeanContextServices bcs, Class serviceClass) { argument
81 BeanContextServicesSupport bcs = (BeanContextServicesSupport) getBeanContext();
83 bcs.getService(this, this, MyService1.class, null, this);
88 bcs.addService(this.getClass(), this);
94 BeanContextServices bcs = (BeanContextServices) getBeanContext();
95 bcs
98 getService(BeanContextServices bcs, Object requestor, Class serviceClass, Object serviceSelector) argument
102 releaseService(BeanContextServices bcs, Object requestor, Object service) argument
105 getCurrentServiceSelectors(BeanContextServices bcs, Class serviceClass) argument
[all...]

Completed in 580 milliseconds

12