Searched defs:object (Results 126 - 150 of 276) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest6187118.java67 Object object = list.getLast();
69 return getExpression(oldInstance, shortenedList, "add", object);
86 for (T object : iterable) {
87 this.list.add(object);
95 public ImmutableList<T> add(T object) { argument
97 list.list.add(object);
121 public boolean equals(Object object) { argument
122 if (object instanceof ImmutableList) {
123 ImmutableList list = (ImmutableList) object;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DQNameDV.java93 public boolean equals(Object object) { argument
94 if (object instanceof QName) {
95 QName qname = (QName)object;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXBoolean.java26 * This class represents an XPath boolean object, and is capable of
35 * A true boolean object so we don't have to keep creating them.
41 * A true boolean object so we don't have to keep creating them.
46 /** Value of the object.
51 * Construct a XBoolean object.
53 * @param b Value of the boolean object
64 * Construct a XBoolean object.
66 * @param b Value of the boolean object
100 * Cast result object to a number.
102 * @return numeric value of the object valu
135 public Object object() method in class:XBoolean
[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/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...]
H A DValidator.java43 * A validator object is not thread-safe and not reentrant.
45 * sure that one {@link Validator} object is not used from
206 * The <code>Result</code> object that receives (possibly augmented)
259 * the same {@link Throwable} object.
284 * When a new {@link Validator} object is created, initially
296 * This method returns the object that was last set through
336 * When a new {@link Validator} object is created, initially
348 * This method returns the object that was last set through
466 * @param object The requested value for the property.
476 public void setProperty(String name, Object object) argument
[all...]
H A DValidatorHandler.java38 * A {@link ValidatorHandler} object is not thread-safe and not reentrant.
40 * sure that one {@link ValidatorHandler} object is not used from
91 * the {@link org.xml.sax.Attributes} object of the
165 * throws an exception, the same exception object must be thrown
182 * This method returns the object that was last set through
209 * the same {@link Throwable} object will be thrown toward the
235 * When a new {@link ValidatorHandler} object is created, initially
247 * This method returns the object that was last set through
287 * When a new {@link ValidatorHandler} object is created, initially
299 * This method returns the object tha
438 setProperty(String name, Object object) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DCompile.java214 InterfaceEntry object; field in class:Compile
250 object = (InterfaceEntry)symbolTable.get ("Object");
251 object.module ("org/omg/CORBA");
252 object.container (corba);
253 symbolTable.put ("org/omg/CORBA/Object", object);
/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/javax/print/attribute/
H A DHashAttributeSet.java60 * Write the instance to a stream (ie serialize the object)
476 * Compares the specified object with this attribute set for equality.
477 * Returns <tt>true</tt> if the given object is also an attribute set and
483 * @param object to be compared for equality with this attribute set.
485 * @return <tt>true</tt> if the specified object is equal to this
489 public boolean equals(Object object) { argument
490 if (object == null || !(object instanceof AttributeSet)) {
494 AttributeSet aset = (AttributeSet)object;
H A DResolutionSyntax.java285 * object. To be equivalent, all of the following conditions must be true:
288 * <CODE>object</CODE> is not null.
290 * <CODE>object</CODE> is an instance of class ResolutionSyntax.
293 * <CODE>object</CODE>'s cross feed direction resolution.
296 * <CODE>object</CODE>'s feed direction resolution.
299 * @param object Object to compare to.
301 * @return True if <CODE>object</CODE> is equivalent to this resolution
304 public boolean equals(Object object) { argument
306 return(object != null &&
307 object instanceo
[all...]
H A DSetOfIntegerSyntax.java67 * The SetOfIntegerSyntax object's value is actually stored in "<I>canonical</I>
481 * in object. To be equivalent, all of the following conditions must be
485 * <CODE>object</CODE> is not null.
487 * <CODE>object</CODE> is an instance of class SetOfIntegerSyntax.
489 * This set-of-integer attribute's members and <CODE>object</CODE>'s
493 * @param object Object to compare to.
495 * @return True if <CODE>object</CODE> is equivalent to this
498 public boolean equals(Object object) { argument
499 if (object != null && object instanceo
[all...]
H A DSize2DSyntax.java276 * passed in object. To be equivalent, all of the following conditions must
280 * <CODE>object</CODE> is not null.
282 * <CODE>object</CODE> is an instance of class Size2DSyntax.
284 * This attribute's X dimension is equal to <CODE>object</CODE>'s X
287 * This attribute's Y dimension is equal to <CODE>object</CODE>'s Y
291 * @param object Object to compare to.
293 * @return True if <CODE>object</CODE> is equivalent to this
296 public boolean equals(Object object) { argument
297 return(object != null &&
298 object instanceo
[all...]
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DMediaPrintableArea.java102 * Constructs a MediaPrintableArea object from floating point values.
128 * Constructs a MediaPrintableArea object from integer values.
235 * in object.
239 * <CODE>object</CODE> is not null.
241 * <CODE>object</CODE> is an instance of class MediaPrintableArea.
246 * @param object Object to compare to.
248 * @return True if <CODE>object</CODE> is equivalent to this media margins
251 public boolean equals(Object object) { argument
253 if (object instanceof MediaPrintableArea) {
254 MediaPrintableArea mm = (MediaPrintableArea)object;
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DSealedObject.java37 * This class enables a programmer to create an object and protect its
40 * <p> Given any Serializable object, one can create a SealedObject
41 * that encapsulates the original object, in serialized
46 * de-serialized, yielding the original object.
48 * <p> Note that the Cipher object must be fully initialized with the
52 * <p> The original object that was sealed can be recovered in two different
58 * method that takes a <code>Cipher</code> object.
60 * <p> This method requires a fully initialized <code>Cipher</code> object,
63 * object.
66 * sealed object doe
148 SealedObject(Serializable object, Cipher c) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciObjectFactory.hpp62 inline NonPermObject(NonPermObject* &bucket, oop key, ciObject* object);
63 ciObject* object() { return _object; } function in struct:ciObjectFactory::NonPermObject
76 return p->object()->get_oop() == key;
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLocalVariableImpl.java78 public int compareTo(LocalVariable object) { argument
79 LocalVariableImpl other = (LocalVariableImpl)object;
143 // If this variable object exists, there shouldn't be absent info
H A DLocationImpl.java82 public int compareTo(Location object) { argument
83 LocationImpl other = (LocationImpl)object;
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DKeyProtector.java368 * Creates a Cipher object.
385 SealedObjectForKeyProtector(Serializable object, Cipher c) argument
387 super(object, c);
/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/com/sun/xml/internal/bind/api/
H A DBridge.java75 * Gets the {@link JAXBRIContext} to which this object belongs.
90 public final void marshal(T object,XMLStreamWriter output) throws JAXBException { argument
91 marshal(object,output,null);
93 public final void marshal(T object,XMLStreamWriter output, AttachmentMarshaller am) throws JAXBException { argument
96 marshal(m,object,output);
101 public final void marshal(@NotNull BridgeContext context,T object,XMLStreamWriter output) throws JAXBException { argument
102 marshal( ((BridgeContextImpl)context).marshaller, object, output );
105 public abstract void marshal(@NotNull Marshaller m,T object,XMLStreamWriter output) throws JAXBException; argument
109 * Marshals the specified type object with the implicit element name
121 public void marshal(T object,OutputStrea argument
127 marshal(T object,OutputStream output, NamespaceContext nsContext, AttachmentMarshaller am) argument
135 marshal(@otNull BridgeContext context,T object,OutputStream output, NamespaceContext nsContext) argument
139 marshal(@otNull Marshaller m,T object,OutputStream output, NamespaceContext nsContext) argument
142 marshal(T object,Node output) argument
148 marshal(@otNull BridgeContext context,T object,Node output) argument
152 marshal(@otNull Marshaller m,T object,Node output) argument
158 marshal(T object, ContentHandler contentHandler) argument
164 marshal(T object, ContentHandler contentHandler, AttachmentMarshaller am) argument
171 marshal(@otNull BridgeContext context,T object, ContentHandler contentHandler) argument
174 marshal(@otNull Marshaller m,T object, ContentHandler contentHandler) argument
179 marshal(T object, Result result) argument
184 marshal(@otNull BridgeContext context,T object, Result result) argument
187 marshal(@otNull Marshaller m,T object, Result result) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DLocatorEx.java42 * Gets the current location in a {@link ValidationEventLocator} object.
53 private final Object object; field in class:LocatorEx.Snapshot
65 object = vel.getObject();
70 return object;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/jaxb/
H A DMarshallerBridge.java57 public void marshal(Marshaller m, Object object, XMLStreamWriter output) throws JAXBException { argument
60 m.marshal(object,output);
66 public void marshal(Marshaller m, Object object, OutputStream output, NamespaceContext nsContext) throws JAXBException { argument
69 ((MarshallerImpl)m).marshal(object,output,nsContext);
75 public void marshal(Marshaller m, Object object, Node output) throws JAXBException { argument
78 m.marshal(object,output);
84 public void marshal(Marshaller m, Object object, ContentHandler contentHandler) throws JAXBException { argument
87 m.marshal(object,contentHandler);
93 public void marshal(Marshaller m, Object object, Result result) throws JAXBException { argument
96 m.marshal(object,resul
[all...]
/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) {

Completed in 97 milliseconds

1234567891011>>