Searched refs:obj (Results 276 - 300 of 1610) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/test/java/security/UnresolvedPermission/
H A DDebugPermission0.java34 public boolean equals(Object obj) { argument
H A DDebugPermission1.java34 public boolean equals(Object obj) { argument
/openjdk7/jdk/test/javax/management/loading/LibraryLoader/jar_src/
H A DRandomGen.c9 JNIEXPORT jint JNICALL Java_UseNativeLib_getRandom(JNIEnv *env, jobject obj) { argument
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DMethodAccessor.java38 public Object invoke(Object obj, Object[] args) argument
H A DMethodAccessorImpl.java46 public abstract Object invoke(Object obj, Object[] args) argument
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DDispatcher.java41 * @param obj the target remote object for the call
47 void dispatch(Remote obj, RemoteCall call) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbarClient.java35 public void notifyValue(XScrollbar obj, int type, int value, boolean isAdjusting); argument
/openjdk7/langtools/test/tools/javac/
H A DSuperField.java38 if (SuperField.super.ref.name != "obj.super.ref")
47 SuperField obj = new SuperField("obj");
48 obj.ref = new SuperField("obj.ref");
49 obj.put(new SuperField("obj.super.ref"));
50 IC ins = obj.new IC("ins");
/openjdk7/langtools/test/tools/javac/generics/
H A DT5094318.java44 public static void method(Object obj){ argument
/openjdk7/hotspot/src/share/vm/memory/
H A DpermGen.cpp56 HeapWord* obj; local
61 if ((obj = gen->allocate(size, false)) != NULL) {
62 return obj;
70 obj = request_expand_and_allocate(gen, size, prev_cause);
72 if (obj != NULL || prev_cause == GCCause::_last_ditch_collection) {
73 return obj;
109 obj = op.result();
110 assert(obj == NULL || SharedHeap::heap()->is_in_reserved(obj),
112 if (obj !
[all...]
/openjdk7/corba/make/common/
H A DCancelImplicits.gmk44 %: %.obj
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DControl.java124 public final boolean equals(Object obj) { argument
125 return super.equals(obj);
/openjdk7/jdk/src/share/classes/javax/sql/rowset/spi/
H A DSyncResolver.java313 * Sets <i>obj</i> as the value in column <i>index</i> in the current row of the
314 * <code>RowSet</code> object that is being synchronized. <i>obj</i>
319 * @param obj an <code>Object</code> that is the value to be set in the
323 public void setResolvedValue(int index, Object obj) throws SQLException; argument
326 * Sets <i>obj</i> as the value in column <i>columnName</i> in the current row of the
327 * <code>RowSet</code> object that is being synchronized. <i>obj</i>
332 * @param obj an <code>Object</code> that is the value to be set in the
336 public void setResolvedValue(String columnName, Object obj) throws SQLException; argument
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanParameterInfo.java151 * Tests whether <var>obj</var> is a valid value for the parameter
154 * @param obj the object to be tested.
156 * @return <code>true</code> if <var>obj</var> is a valid value
161 public boolean isValue(Object obj) ; argument
165 * Compares the specified <var>obj</var> parameter with this <code>OpenMBeanParameterInfo</code> instance for equality.
169 * <li><var>obj</var> is non null,</li>
170 * <li><var>obj</var> also implements the <code>OpenMBeanParameterInfo</code> interface,</li>
175 * This ensures that this <tt>equals</tt> method works properly for <var>obj</var> parameters which are
178 * @param obj the object to be compared for equality with this <code>OpenMBeanParameterInfo</code> instance;
182 public boolean equals(Object obj); argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DSearchResultWithControls.java35 public SearchResultWithControls(String name, Object obj, Attributes attrs, argument
38 super(name, obj, attrs, isRelative);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_MacroAssembler_x86.hpp37 Register obj, // result: pointer to object after successful allocation
45 void initialize_header(Register obj, Register klass, Register len, Register t1, Register t2);
46 void initialize_body(Register obj, Register len_in_bytes, int hdr_size_in_bytes, Register t1);
50 // obj : must point to the object to lock, contents preserved
54 int lock_object (Register swap, Register obj, Register disp_hdr, Register scratch, Label& slow_case);
58 // obj : must point to the object to lock, contents preserved
60 void unlock_object(Register swap, Register obj, Register lock, Label& slow_case);
63 Register obj, // result: pointer to object after successful allocation
74 // obj : must be rax, will contain pointer to allocated object
79 void allocate_object(Register obj, Registe
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A DCmdIDList.h38 UINT Add(AwtObject* obj);
51 AwtObject *obj; // object that is assigned this id member in union:AwtCmdIDList::CmdIDEntry
/openjdk7/jdk/test/java/io/Serializable/enum/badResolve/
H A DWrite.java53 static void write(Object obj, String filename) throws Exception { argument
56 oout.writeObject(obj);
/openjdk7/jdk/test/java/io/Serializable/userRWObjError/
H A DUserRWObjError.java45 UserRWObjError obj = new UserRWObjError();
48 out.writeObject(obj);
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/
H A DSunPCSC.java53 public Factory(Object obj) throws PCSCException { argument
54 if (obj != null) {
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DEchoImpl.java52 public EchoImpl(ActivationID id, MarshalledObject obj) argument
56 new MultiSocketFactory.ClientFactory(getProtocol(obj), pattern),
57 new MultiSocketFactory.ServerFactory(getProtocol(obj), pattern));
61 MarshalledObject obj = null;
63 obj = new MarshalledObject(protocol);
67 return obj;
70 private static String getProtocol(MarshalledObject obj) { argument
73 protocol = (String) obj.get();
/openjdk7/jdk/src/share/native/sun/reflect/
H A DNativeAccessors.c31 (JNIEnv *env, jclass unused, jobject m, jobject obj, jobjectArray args)
33 return JVM_InvokeMethod(env, m, obj, args);
30 Java_sun_reflect_NativeMethodAccessorImpl_invoke0(JNIEnv *env, jclass unused, jobject m, jobject obj, jobjectArray args) argument
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DLinuxFileSystemProvider.java54 public <V extends FileAttributeView> V getFileAttributeView(Path obj, argument
59 return (V) new LinuxDosFileAttributeView(UnixPath.toUnixPath(obj),
63 return (V) new LinuxUserDefinedFileAttributeView(UnixPath.toUnixPath(obj),
66 return super.getFileAttributeView(obj, type, options);
70 public DynamicFileAttributeView getFileAttributeView(Path obj, argument
75 return new LinuxDosFileAttributeView(UnixPath.toUnixPath(obj),
79 return new LinuxUserDefinedFileAttributeView(UnixPath.toUnixPath(obj),
82 return super.getFileAttributeView(obj, name, options);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/javax/rmi/
H A DPortableRemoteObject.java85 * @param obj the server object to export.
88 public void exportObject(Remote obj) argument
91 if (obj == null) {
97 if (Util.getTie(obj) != null) {
101 throw new ExportException (obj.getClass().getName() + " already exported");
106 Tie theTie = Utility.loadTie(obj);
112 Util.registerTarget(theTie,obj);
119 UnicastRemoteObject.exportObject(obj);
125 * @param obj the server object for which a stub is required. Must either be a subclass
131 public Remote toStub (Remote obj) argument
174 unexportObject(Remote obj) argument
[all...]
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DUtilDelegate.java67 void writeAny(OutputStream out, Object obj); argument
77 void writeRemoteObject(OutputStream out, Object obj); argument
82 void writeAbstractObject(OutputStream out, Object obj); argument
123 RemoteException wrapException(Throwable obj); argument
128 Object copyObject(Object obj, ORB orb) throws RemoteException; argument
133 Object[] copyObjects(Object[] obj, ORB orb) throws RemoteException; argument

Completed in 285 milliseconds

<<11121314151617181920>>