Searched refs:Reference (Results 1 - 25 of 199) sorted by relevance

12345678

/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/
H A DReentrantContext.java27 import java.lang.ref.Reference;
39 * Reference to this instance (hard, soft or weak).
42 Reference<? extends ReentrantContext> reference = null;
H A DReentrantContextProviderCLQ.java27 import java.lang.ref.Reference;
44 private final ConcurrentLinkedQueue<Reference<K>> ctxQueue
45 = new ConcurrentLinkedQueue<Reference<K>>();
66 Reference<K> ref = null;
H A DReentrantContextProviderTL.java27 import java.lang.ref.Reference;
44 private final ThreadLocal<Reference<K>> ctxTL
45 = new ThreadLocal<Reference<K>>();
90 final Reference<K> ref = ctxTL.get();
/openjdk9/jdk/src/java.naming/share/classes/javax/naming/
H A DReferenceable.java30 * Reference to itself.
32 * A Reference represents a way of recording address information about
35 * for programs that use that object to determine what its Reference is.
38 * get its Reference to use for binding.
46 * @see Reference
51 * Retrieves the Reference of this object.
53 * @return The non-null Reference of this object.
57 Reference getReference() throws NamingException;
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DReferenceList.java45 * @see Reference
59 * @throws IllegalAccessException if the {@code Reference} is not an
62 void add(Reference reference);
69 void remove(Reference reference);
87 * Returns an {@code Iterator} over all the {@code Reference}s
92 Iterator<Reference> getReferences();
100 Reference newDataReference(String uri);
108 Reference newKeyReference(String uri);
/openjdk9/jdk/src/jdk.naming.rmi/share/classes/com/sun/jndi/rmi/registry/
H A DReferenceWrapper.java36 * The ReferenceWrapper class is a Remote wrapper for Reference
37 * objects. It wraps around a Reference on the server, and makes the
38 * Reference accessible to clients.
48 protected Reference wrappee; // reference being wrapped
50 public ReferenceWrapper(Reference wrappee)
56 public Reference getReference() throws RemoteException {
H A DRemoteReference.java35 * The RemoteReference interface wraps a Reference in a Remote wrapper.
43 Reference getReference() throws NamingException, RemoteException;
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DMissingResourceFailureException.java28 * {@link com.sun.org.apache.xml.internal.security.signature.Reference}s.
41 private Reference uninitializedReference = null;
49 public MissingResourceFailureException(String msgID, Reference reference) {
63 public MissingResourceFailureException(String msgID, Object exArgs[], Reference reference) {
78 String msgID, Exception originalException, Reference reference
95 String msgID, Object exArgs[], Exception originalException, Reference reference
103 * used to set the uninitialized {@link com.sun.org.apache.xml.internal.security.signature.Reference}
105 * @param reference the Reference object
108 public void setReference(Reference reference) {
113 * used to get the uninitialized {@link com.sun.org.apache.xml.internal.security.signature.Reference}
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/site/
H A DReference.java28 public abstract class Reference { class
H A DDataPatch.java36 public Reference reference;
39 public DataPatch(int pcOffset, Reference reference) {
45 public DataPatch(int pcOffset, Reference reference, Object note) {
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/api/
H A DReference.java36 * Reference to a JAXB type (from JAX-RPC.)
50 public final class Reference { class
65 public Reference(ExecutableElement method) { method in class:Reference
73 public Reference(VariableElement param) { method in class:Reference
80 public Reference(TypeElement type, ProcessingEnvironment env) { method in class:Reference
87 public Reference(TypeMirror type, Element annotations) { method in class:Reference
96 if (!(o instanceof Reference)) return false;
98 final Reference that = (Reference) o;
H A DJavaCompiler.java61 * the XML types mapped from the corresponding {@link Reference}s.
62 * Those {@link Reference}s must be included in the {@code rootTypes} parameter.
63 * In this map, a {@link Reference} can be null, in which case the element name is
79 Collection<Reference> rootTypes,
80 Map<QName, Reference> additionalElementDecls,
/openjdk9/jdk/src/java.base/share/classes/java/lang/ref/
H A DReferenceQueue.java32 * Reference queues, to which registered reference objects are appended by the
47 boolean enqueue(Reference<? extends S> r) {
57 private volatile Reference<? extends T> head;
60 boolean enqueue(Reference<? extends T> r) { /* Called only by Reference class */
84 private Reference<? extends T> reallyPoll() { /* Must hold lock */
85 Reference<? extends T> r = head;
92 Reference<? extends T> rn = r.next;
112 public Reference<? extends T> poll() {
140 public Reference<
[all...]
H A DFinalReference.java31 class FinalReference<T> extends Reference<T> {
H A DPhantomReference.java50 public class PhantomReference<T> extends Reference<T> {
H A DWeakReference.java48 public class WeakReference<T> extends Reference<T> {
H A DReference.java44 public abstract class Reference<T> { class
46 /* A Reference instance is in one of four possible internal states:
54 * pending-Reference list. Newly-created instances are Active.
56 * Pending: An element of the pending-Reference list, waiting to be
57 * enqueued by the Reference-handler thread. Unregistered instances
83 * to determine whether a Reference instance requires special treatment: If
87 * To ensure that a concurrent collector can discover active Reference
91 * field is also used for linking Reference objects in the pending list.
104 volatile Reference next;
110 private transient Reference<
309 Reference(T referent) { method in class:Reference
313 Reference(T referent, ReferenceQueue<? super T> queue) { method in class:Reference
[all...]
/openjdk9/hotspot/test/gc/g1/humongousObjects/objectGraphTest/
H A DReferenceInfo.java26 import java.lang.ref.Reference;
40 public final Reference<T> reference;
46 public ReferenceInfo(Reference<T> reference, String graphId, String nodeId, boolean softlyReachable,
/openjdk9/jdk/test/javax/naming/module/src/fruit/org/example/fruit/
H A DFruitFactory.java40 if (obj instanceof Reference) {
41 Reference ref = (Reference)obj;
H A DFruit.java41 public Reference getReference() throws NamingException {
42 return new Reference(
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/beans/
H A DWeakCache.java27 import java.lang.ref.Reference;
45 private final Map<K, Reference<V>> map = new WeakHashMap<K, Reference<V>>();
55 Reference<V> reference = this.map.get(key);
/openjdk9/jdk/src/java.xml.crypto/share/classes/javax/xml/crypto/dsig/
H A DManifest.java42 * <element ref="ds:Reference" maxOccurs="unbounded"/>
54 * Reference ref = factory.newReference("#reference-1", DigestMethod.SHA1);
55 * List&lt;Reference&gt; references = Collections.singletonList(ref);
70 * {@link Reference} class to identify the referent's type).
84 * list} of one or more {@link Reference}s that are contained in this
87 * @return an unmodifiable list of one or more <code>Reference</code>s
89 List<Reference> getReferences();
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/annotations/
H A DReference.java32 * Reference node in AST, i.e. anything not a copy. Important for
37 public @interface Reference { interface
/openjdk9/jdk/test/javax/naming/RefAddr/
H A DNullContent.java37 Reference ref = new Reference("com.sun.test.Class", addr1);
/openjdk9/jdk/test/javax/naming/spi/DirectoryManager/
H A DGetContDirCtx.java45 Reference ref = new Reference("java.lang.Object",

Completed in 213 milliseconds

12345678