Searched refs:object (Results 251 - 275 of 387) sorted by relevance

<<111213141516

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXNodeSetForDOM.java34 * This class overrides the XNodeSet#object() method to provide the original
35 * Node object, NodeList object, or NodeIterator.
52 * Construct a XNodeSet object.
54 * @param val Value of the XNodeSet object
92 * Return the original DOM object that the user passed in. For use primarily
95 * @return The object that this class wraps
97 public Object object() method in class:XNodeSetForDOM
103 * Cast result object to a nodelist. Always issues an error.
116 * Cast result object t
[all...]
H A DXStringForChars.java45 * Construct a XNodeSet object.
47 * @param val FastStringBuffer object this will wrap, must be non-null.
63 * Construct a XNodeSet object.
65 * @param val String object this will wrap.
75 * Cast result object to a string.
85 * Cast result object to a string.
96 * Tell if this object contains a java String object.
107 * Cast result object to a string.
121 * Since this object i
126 public Object object() method in class:XStringForChars
[all...]
H A DXNumber.java38 /** Value of the XNumber object.
43 * Construct a XNodeSet object.
45 * @param d Value of the object
55 * Construct a XNodeSet object.
57 * @param num Value of the object
90 * Cast result object to a number.
92 * @return the value of the XNumber object
114 * Cast result object to a boolean.
124 // * Cast result object to a string.
274 * Cast result object t
379 public Object object() method in class:XNumber
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadReferenceImpl.java289 // save object of current wait() call (if any) for later comparison
290 waitingObj = waitingMonitor.object();
294 // save object of current enter() call (if any) for later comparison
295 pendingObj = pendingMonitor.object();
309 // this monitor doesn't have an owning object so skip it
332 // already have this object so don't include it
335 // add the owning object to our list
368 OopHandle handle = mon.object();
378 OopHandle handle = mon.object();
380 Assert.that(handle != null, "Object.wait() should have an object");
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DObjectMonitor.java96 public OopHandle object() { method in class:ObjectMonitor
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractMidiDevice.java86 * Constructs an AbstractMidiDevice with the specified info object.
130 * Transmitter just created as the object parameter to this method. Storing references to
134 * @object The Receiver or Transmitter instance that triggered this implicit open.
136 private void openInternal(Object object) throws MidiUnavailableException { argument
141 getOpenKeepingObjects().add(object);
172 /** Close the device for an object that implicitely opened it.
174 * Those methods should pass this for the object parameter. Since Transmitters or Receivers
181 * @param object The object that might have been opening the device implicitely (for now,
184 public final void closeInternal(Object object) { argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPMetadata.java298 Object object) {
300 if (object != null) {
301 child.setUserObject(object);
302 child.setNodeValue(ImageUtil.convertObjectToString(object));
296 addChildNode(IIOMetadataNode root, String name, Object object) argument
/openjdk7/hotspot/src/share/vm/utilities/
H A Dxmlstream.hpp143 void object(const char* attr, Handle val);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DAttachmentPart.java35 * A single attachment to a <code>SOAPMessage</code> object. A <code>SOAPMessage</code>
36 * object may contain zero, one, or many <code>AttachmentPart</code> objects.
37 * Each <code>AttachmentPart</code> object consists of two parts,
42 * An <code>AttachmentPart</code> object must conform to certain standards.
51 * <code>AttachmentPart</code> object and MUST conform to [RFC2045].
57 * <code>AttachmentPart</code> object, sets the header shown in
67 * AttachmentPart</code> object. The content may be anything from a
68 * simple plain text object to a complex XML document or image file.
71 * An <code>AttachmentPart</code> object is created with the method
73 * the <code>AttachmentPart</code> object i
253 setContent(Object object, String contentType) argument
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLEventReaderImpl.java246 Object object = null;
248 object = nextEvent();
256 return object;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLParser.java88 private T object; field in class:XMLParser.ElementHandler
136 return object;
165 object = start();
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.hpp208 llvm::Value* CreateInlineOop(jobject object, const char* name = "");
209 llvm::Value* CreateInlineOop(ciObject* object, const char* name = "") { argument
210 return CreateInlineOop(object->constant_encoding(), name);
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DConfig.java343 Object object = temp.get(name);
344 if (object instanceof Vector) {
346 int length = ((Vector)object).size();
350 (String)(((Vector)object).elementAt(i));
353 (String)(((Vector)object).elementAt(i))
358 result = (String)object;
927 Object object = table.get(key);
931 if (object instanceof Hashtable) {
934 listTable((Hashtable)object);
938 } else if (object instanceo
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.hpp271 bool is_owned_monitor_on_stack(oop object);
272 void add_jni_locked_monitor(oop object) { _jni_locked_monitors->append(object); } argument
282 GrowableArray<oop>* _locked_monitors; // list of object monitors locked by this frame
442 // Change status to waiting on an object (timed or indefinite)
523 if (is_alive(java_thread) && ServiceUtil::visible_oop((oop)obj_m->object())) {
544 if (is_alive() && ServiceUtil::visible_oop((oop)obj_m->object()) && obj_m->contentions() > 0) {
H A DthreadService.cpp154 obj = (oop) wait_obj->object();
155 assert(obj != NULL, "Object.wait() should have an object");
160 obj = (oop) enter_obj->object();
249 // Allocate the resulting StackTraceElement[][] object
266 // Construct an array of java/lang/StackTraceElement object
289 // Find deadlocks involving object monitors and concurrent locks if concurrent_locks is true
386 // Create a new ThreadDumpResult object and append to the list.
393 // Create a new ThreadDumpResult object and append to the list.
443 assert(monitor->owner(), "This monitor must have an owning object");
484 oop object local
545 is_owned_monitor_on_stack(oop object) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.cpp674 // if the object is a java.lang.Class then return the java mirror
729 JvmtiMonitorEventMark(JavaThread *thread, oop object) argument
731 _jobj = to_jobject(object);
1457 // non-static field accessors have an object, but we need a handle
1458 assert(obj != NULL, "non-static needs an object");
1468 address location, KlassHandle field_klass, Handle object, jfieldID field) {
1491 jobject field_jobject = jem.to_jobject(object());
1554 // non-static field accessors have an object, but we need a handle
1555 assert(obj != NULL, "non-static needs an object");
1566 address location, KlassHandle field_klass, Handle object, jfieldI
1467 post_field_access(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field) argument
1565 post_raw_field_modification(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field, char sig_type, jvalue *value) argument
1623 post_field_modification(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field, char sig_type, jvalue *value_ptr) argument
1964 oop object = (oop)obj_mntr->object(); local
1999 oop object = (oop)obj_mntr->object(); local
2033 post_monitor_wait(JavaThread *thread, oop object, jlong timeout) argument
2066 oop object = (oop)obj_mntr->object(); local
2102 post_vm_object_alloc(JavaThread *thread, oop object) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DeventFilter.c297 /* Return the object instance in which the event occurred */
302 jobject object = NULL; local
333 object = evinfo->object;
334 return object;
336 return object; /* NULL */
347 (gdata->jvmti, thread, fnum, &object);
349 /* get slot zero object "this" */
351 (gdata->jvmti, thread, fnum, 0, &object);
354 object
[all...]
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h799 jobject object,
809 jobject object,
845 jobject object);
851 jobject object);
857 jobject object,
864 jobject object,
916 jobject object,
1309 jobject object,
1314 jobject object,
1549 jobject object,
1986 GetTag(jobject object, jlong* tag_ptr) argument
1991 SetTag(jobject object, jlong tag) argument
2008 IterateOverObjectsReachableFromObject(jobject object, jvmtiObjectReferenceCallback object_reference_callback, const void* user_data) argument
2238 GetObjectSize(jobject object, jlong* size_ptr) argument
2243 GetObjectHashCode(jobject object, jint* hash_code_ptr) argument
2248 GetObjectMonitorUsage(jobject object, jvmtiMonitorUsage* info_ptr) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultMutableTreeNode.java54 * A <code>DefaultMutableTreeNode</code> may also hold a reference to a user object, the
57 * representation of its user object.
105 /** optional user object */
122 * children, and initializes it with the specified user object.
133 * the specified user object, and that allows children only if
326 * Sets the user object for this node to <code>userObject</code>.
338 * Returns this node's user object.
635 * Returns the user object path, from the root, to get to this node.
1234 * user object, or the empty string if the node has no user object
1405 public Object object; field in class:DefaultMutableTreeNode.BreadthFirstEnumeration.Queue.QNode
1407 QNode(Object object, QNode next) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaUtils.java160 final T object = ref.get();
161 if (object != null) return object;
163 final T object = getInstance();
164 ref = new SoftReference<T>(object);
166 return object;
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/resources/
H A Djconsole.js133 * Creates a new (M&M) Attribute object
278 * script object -- so that setting/getting MBean attributes
395 function wait(object) {
398 waitMethod.invoke(object, null);
408 function notify(object) {
411 notifyMethod.invoke(object, null);
421 function notifyAll(object) {
424 notifyAllMethod.invoke(object, null);
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DBeanValidator.java54 throw new IllegalStateException("could not compare object with null");
105 throw new IllegalStateException("the first object is not equal to the second one");
115 throw new IllegalStateException("the first comparable object is not equal to the second one");
225 Object object = this.cache.get(object1);
226 if (object == null) {
229 if (object == object2) {
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DUtil.java133 "object does not implement a remote interface: " +
192 return cl; // this class implements remote object
269 * derived class in the remote object's superclass chain that
313 * Locate and return the Skeleton for the specified remote object
315 static Skeleton createSkeleton(Remote object) argument
320 cl = getRemoteClass(object.getClass());
323 "object does not implement a remote interface: " +
324 object.getClass().getName());
/openjdk7/jaxp/src/javax/xml/validation/
H A DSchemaFactory.java51 * one thread is using a {@link SchemaFactory} object at any
131 * <p>To find a <code>SchemaFactory</code> object for a given schema language,
332 * to how the special {@link Schema} object returned by {@link
429 * @param object The requested value for the property.
438 public void setProperty(String name, Object object) argument
502 * the same {@link Throwable} object.
531 * When a new {@link SchemaFactory} object is created, initially
545 * This method returns the object that was last set through
591 * When a new {@link SchemaFactory} object is created, initially
605 * This method returns the object tha
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorImpl.java223 public void setProperty(String name, Object object) argument
229 fComponentManager.setProperty(name, object);

Completed in 112 milliseconds

<<111213141516