Searched defs:ref (Results 151 - 175 of 266) sorted by relevance

1234567891011

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DIncrementalSAXSource_Xerces.java24 package com.sun.org.apache.xml.internal.dtm.ref;
H A DChunkedIntArray.java23 package com.sun.org.apache.xml.internal.dtm.ref;
H A DDTMDefaultBaseTraversers.java23 package com.sun.org.apache.xml.internal.dtm.ref;
H A DDTMManagerDefault.java23 package com.sun.org.apache.xml.internal.dtm.ref;
39 import com.sun.org.apache.xml.internal.dtm.ref.dom2dtm.DOM2DTM;
40 import com.sun.org.apache.xml.internal.dtm.ref.sax2dtm.SAX2DTM;
41 import com.sun.org.apache.xml.internal.dtm.ref.sax2dtm.SAX2RTFDTM;
352 Class.forName("com.sun.org.apache.xml.internal.dtm.ref.IncrementalSAXSource_Xerces").newInstance();
499 if (node instanceof com.sun.org.apache.xml.internal.dtm.ref.DTMNodeProxy)
500 return ((com.sun.org.apache.xml.internal.dtm.ref.DTMNodeProxy) node).getDTMNodeNumber();
567 if(node instanceof com.sun.org.apache.xml.internal.dtm.ref.dom2dtm.DOM2DTMdefaultNamespaceDeclarationNode)
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2RTFDTM.java23 package com.sun.org.apache.xml.internal.dtm.ref.sax2dtm;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DFieldImpl.java59 sun.jvm.hotspot.oops.Field ref() { method in class:FieldImpl
71 sun.jvm.hotspot.oops.Field saField = (sun.jvm.hotspot.oops.Field) ref();
113 (ref().equals(other.ref())) &&
/openjdk7/jdk/src/share/classes/java/net/
H A DURLStreamHandler.java136 String ref = u.getRef();
305 setURL(u, protocol, host, port, authority, userInfo, path, query, ref);
374 // Generate the ref part.
375 String ref = u.getRef();
376 if (ref != null)
377 h += ref.hashCode();
524 * @param ref the reference.
532 String query, String ref) {
538 u.set(u.getProtocol(), host, port, authority, userInfo, path, query, ref);
551 * @param ref th
530 setURL(URL u, String protocol, String host, int port, String authority, String userInfo, String path, String query, String ref) argument
558 setURL(URL u, String protocol, String host, int port, String file, String ref) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DNamingManager.java132 * @param ref The non-null reference to use.
134 * @return The object factory for the object identified by ref; null
138 Reference ref, String factoryName)
156 (codebase = ref.getFactoryClassLocation()) != null) {
305 Reference ref = null;
307 ref = (Reference) refInfo;
309 ref = ((Referenceable)(refInfo)).getReference();
314 if (ref != null) {
315 String f = ref.getFactoryClassName();
319 factory = getObjectFactoryFromReference(ref,
137 getObjectFactoryFromReference( Reference ref, String factoryName) argument
351 processURLAddrs(Reference ref, Name name, Context nameCtx, Hashtable environment) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/pool/
H A DConnections.java32 import java.lang.ref.Reference;
33 import java.lang.ref.SoftReference;
77 private Reference ref; // maintains reference to id to prevent premature GC field in class:Connections
104 // Maintain soft ref to id so that this Connections' entry in
106 ref = new SoftReference(id);
275 // Once ref has been removed, it cannot be reinstated.
276 ref = null;
/openjdk7/jdk/src/share/back/
H A DObjectReferenceImpl.c283 jobject ref; local
298 ref = commonRef_idToRef(env, id);
299 (void)outStream_writeBoolean(out, (jboolean)(ref == NULL));
301 commonRef_idToRef_delete(env, ref);
343 jobject ref; local
345 ref = referrerBatch.objects[kk];
346 (void)outStream_writeByte(out, specificTypeKey(env, ref));
347 (void)outStream_writeObjectRef(env, out, ref);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJExpression.java147 JFieldRef ref(JVar field); method in interface:JExpression
148 JFieldRef ref(String field); method in interface:JExpression
H A DJExpressionImpl.java154 public final JFieldRef ref(JVar field) { method in class:JExpressionImpl
155 return JExpr.ref(this, field);
158 public final JFieldRef ref(String field) { method in class:JExpressionImpl
159 return JExpr.ref(this, field);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DAbstractListField.java79 protected final JClass listT = codeModel.ref(List.class).narrow(exposedType.boxify());
130 * Generates statement(s) so that the successive {@link Accessor#ref(boolean)} with
141 return codeModel.ref(List.class).narrow(exposedType.boxify());
176 field = $target.ref(AbstractListField.this.field);
205 protected final JExpression ref(boolean canBeNull) { method in class:AbstractListField.Accessor
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/core/
H A DTypeInfoSet.java118 NonElement<T,C> getTypeInfo(Ref<T,C> ref); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DReferencePropertyInfoImpl.java97 public Set<? extends Element<T,C>> ref() { method in class:ReferencePropertyInfoImpl
122 XmlElementRef ref = seed.readAnnotation(XmlElementRef.class);
124 if(refs!=null && ref!=null) {
128 ref.annotationType().getName(), refs.annotationType().getName()),
129 ref, refs ));
135 if(ref!=null)
136 ann = new XmlElementRef[]{ref};
147 final T defaultType = nav.ref(XmlElementRef.DEFAULT.class);
167 if(type.equals(nav.ref(JAXBElement.class))) {
180 // often the element ref fiel
279 isRequired(XmlElementRef ref) argument
[all...]
H A DRuntimeModelBuilder.java134 public static Transducer createTransducer(RuntimeNonElementRef ref) { argument
135 Transducer t = ref.getTarget().getTransducer();
136 RuntimePropertyInfo src = ref.getSource();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DTransducedAccessor.java141 public static <T> TransducedAccessor<T> get(JAXBContextImpl context, RuntimeNonElementRef ref) { argument
142 Transducer xducer = RuntimeModelBuilder.createTransducer(ref);
143 RuntimePropertyInfo prop = ref.getSource();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DDelayedRef.java69 if(ref==null) // redefinition can set ref without actually resolving the reference
86 private Object ref=null; field in class:DelayedRef
88 if(ref==null) throw new InternalError("unresolved reference");
89 return ref;
93 ref = resolveReference(name);
94 if(ref==null)
109 ref = d;
/openjdk7/jdk/test/com/sun/jdi/
H A DInvokeHangTest.java145 void doInvoke(ThreadReference thread, ObjectReference ref, String methodName) { argument
146 List methods = ref.referenceType().methodsByName(methodName);
150 ref.invokeMethod(thread, method, new ArrayList(), ref.INVOKE_NONVIRTUAL);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_loader.c76 jobject ref; local
80 ref = info->globalref;
82 if ( ref != NULL ) {
83 deleteWeakGlobalReference(env, ref);
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DValidationTests.java185 public Data dereference(final URIReference ref, XMLCryptoContext ctx) argument
187 String uri = ref.getURI();
192 return new OctetStreamData(fis,ref.getURI(),ref.getType());
197 return defaultUd.dereference(ref, ctx);
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivatableRef.java49 protected RemoteRef ref; field in class:ActivatableRef
65 public ActivatableRef(ActivationID id, RemoteRef ref) argument
68 this.ref = ref;
102 * method invocation to the underlying ref type. If the
127 * Attempt object activation if active ref is unknown.
131 if (ref == null) {
135 localRef = ref;
195 if (localRef == ref) {
196 ref
406 remoteEquals(RemoteRef ref) argument
[all...]
H A DUnicastRef.java59 Log.getLog("sun.rmi.client.ref", "transport", Util.logLevel);
70 protected LiveRef ref; field in class:UnicastRef
82 ref = liveRef;
94 return ref;
129 Connection conn = ref.getChannel().newConnection();
144 call = new StreamRemoteCall(conn, ref.getObjID(), -1, opnum);
185 ref.getChannel().free(conn, true);
256 ref.getChannel().free(conn, reuse);
341 Connection conn = ref.getChannel().newConnection();
351 new StreamRemoteCall(conn, ref
[all...]
H A DUtil.java75 Log.getLog("sun.rmi.server.ref", "transport", Util.logLevel);
115 * @param clientRef the remote ref to use in the invocation handler
275 private static RemoteStub createStub(Class<?> remoteClass, RemoteRef ref) argument
289 return (RemoteStub) cons.newInstance(new Object[] { ref });
/openjdk7/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A DCountServerImpl.java56 private TestInterface ref; field in class:CountServerImpl
65 ref = (TestInterface)data.get();
66 ref.ping(SERVER_OBJECT);

Completed in 300 milliseconds

1234567891011