Searched refs:object (Results 151 - 175 of 387) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/ci/
H A DciField.hpp136 // 3. If the field is an object or array, then the oop
152 // object.
153 ciConstant constant_value_of(ciObject* object) { argument
155 assert(object->is_instance(), "must be instance");
156 return object->as_instance()->field_value(this);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DMethodNode.java53 protected Node[] createNodes(Object object) { argument
54 assert object instanceof InputBytecode;
55 InputBytecode bc = (InputBytecode) object;
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTestListeners.java107 public boolean equals(Object object) { argument
108 if (object instanceof TestListeners) {
109 TestListeners test = (TestListeners)object;
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DTestEditor.java44 Object object = execute("Executor", "execute", this.editor.getJavaInitializationString());
47 System.out.println("Property value after: " + object);
49 if (!areEqual(value, object))
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTestListeners.java108 public boolean equals(Object object) { argument
109 if (object instanceof TestListeners) {
110 TestListeners test = (TestListeners)object;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DMonitorCacheDumpPanel.java69 OopHandle obj = mon.object();
102 OopHandle object = mon.object();
103 if (object == null) {
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DCounterMonitor.java158 * <BR>The default value is a null Integer object.
164 * <BR>The default value is a null Integer object.
186 * the threshold when a new object is added to the list and reset
259 * Gets the derived gauge of the specified object, if this object is
262 * @param object the name of the object whose derived gauge is to
265 * @return The derived gauge of the specified object.
269 public synchronized Number getDerivedGauge(ObjectName object) { argument
270 return (Number) super.getDerivedGauge(object);
285 getDerivedGaugeTimeStamp(ObjectName object) argument
300 getThreshold(ObjectName object) argument
841 createObservedObject(ObjectName object) argument
858 isComparableTypeValid(ObjectName object, String attribute, Comparable<?> value) argument
883 getDerivedGaugeFromComparable( ObjectName object, String attribute, Comparable<?> value) argument
930 buildAlarmNotification( ObjectName object, String attribute, Comparable<?> value) argument
968 isThresholdTypeValid(ObjectName object, String attribute, Comparable<?> value) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/security/
H A DMBeanServerAccessController.java56 * <p>An object of this class implements the MBeanServer interface
58 * and then forwards the request to a wrapped MBeanServer object. The
61 * wrapped object.</p>
97 throw new IllegalArgumentException("MBeanServer object already " +
140 * wrapped object.
154 * wrapped object.
168 * wrapped object.
180 Object object = getMBeanServer().instantiate(className);
181 checkClassLoader(object);
182 return getMBeanServer().registerMBean(object, nam
512 registerMBean(Object object, ObjectName name) argument
611 checkClassLoader(Object object) argument
[all...]
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_Utils.h107 OSStatus GetAudioObjectPropertySize(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 *size);
108 OSStatus GetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 *size, void *data);
109 OSStatus GetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 size, void *data, int checkSize);
112 OSStatus SetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 size, void *data);
H A DPLATFORM_API_MacOSX_Utils.cpp231 OSStatus GetAudioObjectPropertySize(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 *size) argument
236 err = AudioObjectGetPropertyDataSize(object, &address, 0, NULL, size);
241 OSStatus GetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 *size, void *data) argument
246 err = AudioObjectGetPropertyData(object, &address, 0, NULL, size, data);
251 OSStatus GetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 size, void *data, int checkSize) argument
257 err = AudioObjectGetPropertyData(object, &address, 0, NULL, &size, data);
265 OSStatus SetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 size, void *data) argument
269 OSStatus err = AudioObjectSetPropertyData(object, &address, 0, NULL, size, data);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/wbmp/
H A DWBMPMetadata.java99 Object object) {
101 if (object != null) {
102 child.setUserObject(object);
103 child.setNodeValue(ImageUtil.convertObjectToString(object));
97 addChildNode(IIOMetadataNode root, String name, Object object) argument
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DValidationEventLocatorImpl.java55 * Creates an object with all fields unavailable.
61 * Constructs an object from an org.xml.sax.Locator.
63 * The object's ColumnNumber, LineNumber, and URL become available from the
68 * @param loc the SAX Locator object that will be used to populate this
84 * Constructs an object from the location information of a SAXParseException.
86 * The object's ColumnNumber, LineNumber, and URL become available from the
91 * @param e the SAXParseException object that will be used to populate this
107 * Constructs an object that points to a DOM Node.
109 * The object's Node becomes available. ColumnNumber, LineNumber, Object,
112 * @param _node the DOM Node object tha
158 private Object object = null; field in class:ValidationEventLocatorImpl
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DSolarisEventPort.c62 uintptr_t object = (uintptr_t)jlong_to_ptr(objectAddress); local
63 if (port_associate((int)port, (int)source, object, (int)events, NULL) == 0) {
76 uintptr_t object = (uintptr_t)jlong_to_ptr(objectAddress); local
78 if (port_dissociate((int)port, (int)source, object) == 0) {
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_check.h54 #define CHECK_OBJECT_SERIAL_NO(sno) CHECK_SERIAL_NO(object,sno)
H A Dhprof_tag.c79 tag_new_object(jobject object, ObjectKind kind, SerialNumber thread_serial_num, argument
86 /* New object for this site. */
90 setTag(object, tag);
110 /* If we don't know the size of a java.lang.Class object, get it */
117 /* Tag this java.lang.Class object if it hasn't been already */
120 /* New object for this site. */
131 /* Record this object index in the Class table */
H A Dhprof_event.c110 TraceIndex trace_index, jobject object)
125 klass = getObjectClass(env, object);
130 /* Tag the object */
131 size = (jint)getObjectSize(object);
132 tag_new_object(object, OBJECT_NORMAL, thread_serial_num, size, site_index);
135 /* Handle a java.lang.Object.<init> object allocation. */
137 event_object_init(JNIEnv *env, jthread thread, jobject object) argument
149 HPROF_ASSERT(object!=NULL);
155 any_allocation(env, thread_serial_num, trace_index, object);
162 event_newarray(JNIEnv *env, jthread thread, jobject object) argument
109 any_allocation(JNIEnv *env, SerialNumber thread_serial_num, TraceIndex trace_index, jobject object) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTextFieldEditor.java126 Object object = getValue();
128 if (object instanceof XObject) {
129 return ((XObject) object).getObject();
132 return object;
/openjdk7/jdk/test/javax/swing/
H A DSwingTest.java62 private Object object; field in class:SwingTest
87 if (this.object == null) {
92 this.object = this.type.getConstructor(this.frame.getClass()).newInstance(this.frame);
97 this.method.invoke(this.object);
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DVmIdentifier.java111 * object named <em>remoteobjectname</em> as registered with
217 * Create a VmIdentifier instance from a URI object.
232 * This method constructs a HostIdentifier object from the VmIdentifier.
425 * @param object the object to be test for equality.
426 * @return boolean - returns true if the given object is of type
428 * this object's URI field. Otherwise, return false.
432 public boolean equals(Object object) { argument
433 if (object == this) {
436 if (!(object instanceo
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelPerformer.java132 public void setUserObject(Object object) { argument
133 userObject = object;
/openjdk7/hotspot/src/share/vm/prims/
H A Dwhitebox.cpp135 int WhiteBox::offset_for_field(const char* field_name, oop object, argument
140 //Get the class of our object
141 klassOop arg_klass = object->klass();
166 const char* WhiteBox::lookup_jstring(const char* field_name, oop object) { argument
167 int offset = offset_for_field(field_name, object,
169 oop string = object->obj_field(offset);
177 bool WhiteBox::lookup_bool(const char* field_name, oop object) { argument
179 offset_for_field(field_name, object, vmSymbols::bool_signature());
180 bool ret = (object->bool_field(offset) == JNI_TRUE);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkCodeBuffer.hpp77 int inline_oop(jobject object) const {
80 masm()->store_oop(object);
/openjdk7/jdk/src/share/demo/jvmti/waiters/
H A Dwaiters.cpp192 jthread thread, jobject object)
197 thread, object);
203 jthread thread, jobject object)
208 thread, object);
214 jthread thread, jobject object, jlong timeout)
219 object, timeout);
225 jthread thread, jobject object, jboolean timed_out)
230 object, timed_out);
191 monitor_contended_enter(jvmtiEnv* jvmti, JNIEnv *env, jthread thread, jobject object) argument
202 monitor_contended_entered(jvmtiEnv* jvmti, JNIEnv *env, jthread thread, jobject object) argument
213 monitor_wait(jvmtiEnv* jvmti, JNIEnv *env, jthread thread, jobject object, jlong timeout) argument
224 monitor_waited(jvmtiEnv* jvmti, JNIEnv *env, jthread thread, jobject object, jboolean timed_out) argument
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest4165217.java65 private static byte[] serialize(Object object) throws IOException { argument
68 oos.writeObject(object);
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DClassDecl.java55 private ClassDeclaration object = null; // java.lang.object field in class:ClassDecl
84 object = (ClassDeclaration)
162 @Test(result={"nested", "object", "i"})
189 return object.getPackage();
204 return object.getQualifiedName();
239 return object.getSuperclass();

Completed in 187 milliseconds

1234567891011>>