Searched defs:object (Results 101 - 125 of 276) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djmemnobs.c45 jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject) argument
47 free(object);
65 jpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject) argument
67 free(object);
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingLazyValue.java89 private void makeAccessible(final AccessibleObject object) { argument
92 object.setAccessible(true);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXObject.java33 displayed/manipulated as a GUI object.
37 private Object object; field in class:XObject
40 public XObject (Object object, Icon icon) { argument
41 this(object);
45 public XObject (Object object) { argument
46 setObject(object);
53 return object.equals(((XObject)o).getObject());
65 return object;
68 //if true the the object.hashcode is added to the label
78 public void setObject(Object object) { argument
[all...]
/openjdk7/jdk/test/javax/management/loading/
H A DMLetContentTest.java50 attributes.put("object", object);
84 if (!object.equals(content.getSerializedObject())) {
85 throw new RuntimeException("The user specific object is changed.");
136 private static final String object = "my object"; field in class:MLetContentTest
/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/management/jmxremote/
H A DSingleEntryRegistry.java46 SingleEntryRegistry(int port, String name, Remote object) argument
50 this.object = object;
57 Remote object)
61 this.object = object;
70 return object;
88 private final Remote object; field in class:SingleEntryRegistry
53 SingleEntryRegistry(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, String name, Remote object) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DQName.java173 /** Returns a clone of this object. */
182 /** Returns the hashcode for this object. */
192 public boolean equals(Object object) { argument
193 if (object == this) {
197 if (object != null && object instanceof QName) {
198 QName qname = (QName)object;
210 /** Returns a string representation of this object. */
/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...]
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DAttributeSet.java30 * attributes. A printing attribute is an object whose class implements
41 * attribute object's category may be a superclass of the attribute object's
42 * class rather than the attribute object's class itself. An attribute
43 * object's
283 * Compares the specified object with this attribute set for equality.
284 * Returns <tt>true</tt> if the given object is also an attribute set and
290 * @param object to be compared for equality with this attribute set.
292 * @return <tt>true</tt> if the specified object is equal to this
295 public boolean equals(Object object); argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DValueFormatter.java98 public String valueToString(Object object) throws ParseException { argument
99 if (object instanceof Integer) {
101 return object.toString();
103 int value = (Integer) object;
112 throw new ParseException("illegal object", 0);
/openjdk7/jdk/src/share/classes/javax/swing/undo/
H A DStateEdit.java36 * <P>This edit class works by asking an object to store it's state in
38 * object is told to restore it's state from these Hashtables.</P>
42 * // Create the edit during the "before" state of the object
44 * // Modify the object
46 * // "end" the edit when you are done modifying the object
69 * The object being edited
71 protected StateEditable object; field in class:StateEdit
95 * @param anObject The object to watch for changing state
107 * @param anObject The object to watch for changing state
118 this.object
[all...]
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletProps.java214 public boolean action(Event event, Object object) { argument
/openjdk7/jdk/src/share/classes/java/security/
H A DSignedObject.java36 * object, the (to-be-)signed object and its signature.
38 * <p> The signed object is a "deep copy" (in serialized form) of an
39 * original object. Once the copy is made, further manipulation of
40 * the original object has no side effect on the copy.
43 * object passed to the constructor and the <code>verify</code> method.
106 * can be used to sign and serialize data/object for storage outside
134 * Constructs a SignedObject from any Serializable object.
135 * The given object is signed with the given signing key, using the
138 * @param object th
146 SignedObject(Serializable object, PrivateKey signingKey, Signature signingEngine) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttributeList.java44 * an object that is not an {@code Attribute} will produce an {@code
150 * an object to that instance which is not an {@code Attribute}
172 * @param object The attribute to be added.
174 public void add(Attribute object) { argument
175 super.add(object);
185 * @param object The <CODE>Attribute</CODE> object to be inserted.
187 * object is to be inserted.
189 public void add(int index, Attribute object) { argument
191 super.add(index, object);
208 set(int index, Attribute object) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DCounterMonitorMBean.java88 * @param object the MBean for which the derived gauge is to be returned
93 public Number getDerivedGauge(ObjectName object); argument
98 * @param object the MBean for which the derived gauge timestamp is to be returned
103 public long getDerivedGaugeTimeStamp(ObjectName object); argument
108 * @param object the MBean for which the threshold value is to be returned
115 public Number getThreshold(ObjectName object); argument
H A DGaugeMonitorMBean.java64 * @param object the MBean for which the derived gauge is to be returned
69 public Number getDerivedGauge(ObjectName object); argument
74 * @param object the MBean for which the derived gauge timestamp is to be returned
79 public long getDerivedGaugeTimeStamp(ObjectName object); argument
H A DMonitorMBean.java54 * Adds the specified object in the set of observed MBeans.
56 * @param object The object to observe.
57 * @exception java.lang.IllegalArgumentException the specified object is null.
60 public void addObservedObject(ObjectName object) throws java.lang.IllegalArgumentException; argument
63 * Removes the specified object from the set of observed MBeans.
65 * @param object The object to remove.
68 public void removeObservedObject(ObjectName object); argument
71 * Tests whether the specified object i
77 containsObservedObject(ObjectName object) argument
109 setObservedObject(ObjectName object) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelIdentifier.java87 private String object = null; field in class:ModelIdentifier
91 public ModelIdentifier(String object) { argument
92 this.object = object;
95 public ModelIdentifier(String object, int instance) { argument
96 this.object = object;
100 public ModelIdentifier(String object, String variable) { argument
101 this.object = object;
106 ModelIdentifier(String object, String variable, int instance) argument
125 setObject(String object) argument
[all...]
/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/src/share/classes/com/sun/beans/finder/
H A DSignature.java66 * Indicates whether some other object is "equal to" this one.
68 * @param object the reference object with which to compare
69 * @return {@code true} if this object is the same as the
70 * {@code object} argument, {@code false} otherwise
74 public boolean equals(Object object) { argument
75 if (this == object) {
78 if (object instanceof Signature) {
79 Signature signature = (Signature) object;
88 * Indicates whether some object i
163 addHashCode(int code, Object object) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.inline.hpp64 assert(_object, "Fatal logic error in ObjectMonitor object!");
72 inline void* ObjectMonitor::object() const { function in class:ObjectMonitor
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJInvocation.java41 private JGenerable object; field in class:JInvocation
66 * Invokes a method on an object.
68 * @param object
69 * JExpression for the object upon which
76 JInvocation(JExpression object, String name) { argument
77 this( (JGenerable)object, name );
80 JInvocation(JExpression object, JMethod method) { argument
81 this( (JGenerable)object, method );
95 private JInvocation(JGenerable object, String name) { argument
96 this.object
102 JInvocation(JGenerable object, JMethod method) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/
H A DEncodingAlgorithmContentHandler.java49 * and an object implementing this interface (or null) as the value.
93 * Receive notification of encoding algorithm data as an object.
97 * array of byte to an object more suitable for processing.<p>
101 * @param o the encoding algorithm object
106 public void object(String URI, int algorithm, Object o) throws SAXException; method in interface:EncodingAlgorithmContentHandler
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DSolarisWatchService.c66 uintptr_t object = (uintptr_t)jlong_to_ptr(objectAddress); local
68 if (port_associate((int)port, (int)source, object, (int)events, NULL) == -1) {
77 uintptr_t object = (uintptr_t)jlong_to_ptr(objectAddress); local
79 if (port_dissociate((int)port, (int)source, object) == -1) {
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4498236.java182 private static void test(String expected, Object object) { argument
183 String actual = object.toString();
184 if (!actual.equals(object.getClass().getName() + expected)) {

Completed in 241 milliseconds

1234567891011>>