Searched refs:bcc (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContext.java81 * @param bcc the specified child
88 InputStream getResourceAsStream(String name, BeanContextChild bcc) throws IllegalArgumentException; argument
97 * @param bcc the specified child
103 URL getResource(String name, BeanContextChild bcc) throws IllegalArgumentException; argument
H A DBeanContextSupport.java321 BCSChild(Object bcc, Object peer) { argument
324 child = bcc;
655 * @param bcc the child object making the request.
661 public InputStream getResourceAsStream(String name, BeanContextChild bcc) { argument
663 if (bcc == null) throw new NullPointerException("bcc");
665 if (containsKey(bcc)) {
666 ClassLoader cl = bcc.getClass().getClassLoader();
675 * @param bcc the child object making the request.
680 public URL getResource(String name, BeanContextChild bcc) { argument
[all...]
H A DBeanContextChildSupport.java83 public BeanContextChildSupport(BeanContextChild bcc) { argument
86 beanContextChildPeer = (bcc != null) ? bcc : this;
H A DBeanContextServicesSupport.java321 BCSSChild(Object bcc, Object peer) { super(bcc, peer); } argument
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodHandleImpl.java824 Class<?> bcc = UNSAFE.defineAnonymousClass(hostClass, T_BYTES, null);
825 if (hostClass.getClassLoader() != bcc.getClassLoader())
828 if (hostClass.getProtectionDomain() != bcc.getProtectionDomain())
835 MethodHandle init = IMPL_LOOKUP.findStatic(bcc, "init", MethodType.methodType(void.class));
843 bccInvoker = IMPL_LOOKUP.findStatic(bcc, "invoke_V", invokerMT);
850 Object ok = bccInvoker.invokeExact(vamh, new Object[]{hostClass, bcc});

Completed in 279 milliseconds