Searched refs:object (Results 201 - 225 of 281) sorted by relevance

1234567891011>>

/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x501/
H A DName.java101 * @return equivalent X500Principal object
261 public Collection getValues(Object object) {
262 return ((Name) object).rdn; //FIXME what about get method?
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
H A DIssuingDistributionPoint.java56 * Constructs the object on the base of its distributionPoint and
66 * Creates the extension object on the base of its encoded form.
160 * into the StringBuffer object.
228 protected void getValues(Object object, Object[] values) {
229 IssuingDistributionPoint idp = (IssuingDistributionPoint) object;
H A DTBSCertList.java164 * into the StringBuffer object.
196 protected void getValues(Object object, Object[] values) {
197 RevokedCertificate rcert = (RevokedCertificate) object;
259 // Constructs the object with associated ASN.1 encoding
375 * into the StringBuffer object.
440 protected void getValues(Object object, Object[] values) {
441 TBSCertList tbs = (TBSCertList) object;
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/tsp/
H A DTimeStampReq.java202 protected void getValues(Object object, Object[] values) {
203 TimeStampReq req = (TimeStampReq) object;
/dalvik/libcore/security/src/test/java/tests/security/permissions/
H A DJavaIoObjectOutputStreamTest.java155 public void writeUnshared(Object object) throws IOException {
156 super.writeUnshared(object);
/dalvik/libcore/xml/src/main/java/org/apache/xpath/objects/
H A DXRTreeFrag.java34 * This class represents an XPath result tree fragment object, and is capable of
76 * Return a java object that's closest to the representation
79 * @return The object that this class wraps
81 public Object object() method in class:XRTreeFrag
86 return super.object();
116 * In general, detach should only be called once on the object.
147 * Cast result object to a number.
161 * Cast result object to a boolean. This always returns true for a RTreeFrag
174 * Cast result object to an XMLString.
187 * Cast result object t
[all...]
H A DXNodeSetForDOM.java32 * This class overrides the XNodeSet#object() method to provide the original
33 * Node object, NodeList object, or NodeIterator.
50 * Construct a XNodeSet object.
52 * @param val Value of the XNodeSet object
90 * Return the original DOM object that the user passed in. For use primarily
93 * @return The object that this class wraps
95 public Object object() method in class:XNodeSetForDOM
101 * Cast result object to a nodelist. Always issues an error.
114 * Cast result object t
[all...]
H A DXStringForChars.java43 * Construct a XNodeSet object.
45 * @param val FastStringBuffer object this will wrap, must be non-null.
61 * Construct a XNodeSet object.
63 * @param val String object this will wrap.
73 * Cast result object to a string.
83 * Cast result object to a string.
94 * Tell if this object contains a java String object.
105 * Cast result object to a string.
119 * Since this object i
124 public Object object() method in class:XStringForChars
[all...]
/dalvik/libcore/json/src/main/java/org/json/
H A DJSONTokener.java23 * encoded string into the corresponding object. Most clients of
31 * JSONObject object = (JSONObject) new JSONTokener(json).nextValue();
32 * String query = object.getString("query");
33 * JSONArray locations = object.getJSONArray("locations");</pre>
344 * an object. The opening brace '{' should have already been read.
349 /* Peek to see if this is the empty object. */
390 throw syntaxError("Unterminated object");
/dalvik/libcore/luni/src/main/java/java/io/
H A DObjectInputStream.java96 // Resolve object is a mechanism for replacement
339 * Gets the value of the object field identified by {@code name} from
451 // returns 0 if next data is an object, or N if reading primitive types
459 * read an object, for example, so an exception has to be thrown.
515 * defined in the object's class and superclasses are read from the source
519 * if the object's class cannot be found.
521 * if an I/O error occurs while reading the object data.
537 * Enables object replacement for this stream. By default this is not
542 * {@code true} to enable object replacement; {@code false} to
547 * object replacemen
1421 readHierarchy(Object object, ObjectStreamClass classDesc) argument
1491 readObjectNoData(Object object, Class<?> cl, ObjectStreamClass classDesc) argument
1515 readObjectForClass(Object object, ObjectStreamClass classDesc) argument
2499 registerValidation(ObjectInputValidation object, int priority) argument
2612 resolveObject(Object object) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DCalendar.java30 * {@code Date} object and a set of integer fields such as
32 * {@code HOUR}, and so on. (A {@code Date} object represents a
52 * A {@code Calendar} object can produce all the time field values needed
827 * Compares the specified object to this {@code Calendar} and returns whether they are
828 * equal. The object must be an instance of {@code Calendar} and have the same
831 * @param object
832 * the object to compare with this object.
833 * @return {@code true} if the specified object is equal to this {@code Calendar}, {@code false}
837 public boolean equals(Object object) { argument
[all...]
H A DLocale.java50 * is true even if you construct your own {@code Locale} object, not just of instances returned by
306 * Compares the specified object to this {@code Locale} and returns whether they are
307 * equal. The object must be an instance of {@code Locale} and have the same
310 * @param object
311 * the object to compare with this object.
312 * @return {@code true} if the specified object is equal to this {@code Locale},
317 public boolean equals(Object object) { argument
318 if (object == this) {
321 if (object instanceo
[all...]
H A DArrays.java55 public boolean contains(Object object) { argument
56 if (object != null) {
58 if (object.equals(element)) {
82 public int indexOf(Object object) { argument
83 if (object != null) {
85 if (object.equals(a[i])) {
100 public int lastIndexOf(Object object) { argument
101 if (object != null) {
103 if (object.equals(a[i])) {
118 public E set(int location, E object) { argument
[all...]
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
H A DAbstractCollectionTest.java79 public boolean add(String object) {
80 assertTrue(fixtures.contains(object));
114 public boolean contains(Object object) {
115 assertTrue(fixtures.contains(object));
/dalvik/libcore/xml/src/main/java/javax/xml/validation/
H A DSchemaFactory.java45 * one thread is using a {@link SchemaFactory} object at any
122 * <p>To find a <code>SchemaFactory</code> object for a given schema language,
333 * @param object The requested value for the property.
342 public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSupportedException { argument
402 * the same {@link Throwable} object.
431 * When a new {@link SchemaFactory} object is created, initially
446 * This method returns the object that was last set through
492 * When a new {@link SchemaFactory} object is created, initially
506 * This method returns the object that was last set through
569 * language that this {@link SchemaFactory} object i
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DQName.java32 * Class to represent a qualified name: "The name of an internal XSLT object,
40 * is used as the name of the object. The default namespace is not used for
578 * the passed object is a string and it matches
599 * the passed object is a QName and it matches
604 public boolean equals(Object object) argument
607 if (object == this)
610 if (object instanceof QName) {
611 QName qname = (QName) object;
625 * Given a string, create and return a QName object
630 * @return a QName object
[all...]
/dalvik/vm/mterp/x86/
H A DOP_CHECK_CAST.S2 %verify "null object"
14 GET_VREG(rINST_FULL,rINST_FULL) # rINST_FULL<- vAA (object)
37 * rINST_FULL holds object
49 # class of the object that failed to be cast.
65 * rINST_FULL holds object
/dalvik/vm/mterp/x86-atom/
H A DOP_CHECK_CAST.S36 cmp $$0, rINST # check for null reference object
37 je .L${opcode}_okay # can always cast null object
56 * rINST holds object
72 * class of the object that failed to be cast.
90 * rINST holds object
H A DOP_INSTANCE_OF.S19 * Code: Checks if object is instance of a class. Uses no substitutions.
36 cmp $$0, %edx # check for null object
37 je .L${opcode}_store # null object
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
H A DConstructor.java93 * the class this constructor object belongs to
274 * Indicates whether or not the specified {@code object} is equal to this
275 * constructor. To be equal, the specified object must be an instance
279 * @param object
280 * the object to compare
282 * @return {@code true} if the specified object is equal to this
290 public boolean equals(Object object) { argument
291 return object instanceof Constructor && toString().equals(object.toString());
398 * invoking the constructor represented by this {@code Constructor} object
[all...]
H A DMethod.java342 * Indicates whether or not the specified {@code object} is equal to this
343 * method. To be equal, the specified object must be an instance
347 * @param object
348 * the object to compare
350 * @return {@code true} if the specified object is equal to this
358 public boolean equals(Object object) { argument
359 return object instanceof Method && toString().equals(object.toString());
468 * <li>If this Method object is enforcing access control (see
493 * the object o
[all...]
/dalvik/libcore/text/src/main/java/java/text/
H A DCollator.java250 * Compares this collator with the specified object and indicates if they
253 * @param object
254 * the object to compare with this object.
255 * @return {@code true} if {@code object} is a {@code Collator} object and
261 public boolean equals(Object object) { argument
262 if (!(object instanceof Collator)) {
265 Collator collator = (Collator) object;
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DSQLWarningTest.java426 SQLWarning object = new SQLWarning();
427 SerializationTest.verifySelf(object, SQLWARNING_COMPARATOR);
440 SQLWarning object = new SQLWarning();
445 object.setNextWarning(nextSQLWarning);
447 SerializationTest.verifyGolden(this, object, SQLWARNING_COMPARATOR);
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
H A DNativeDecimalFormat.java172 public boolean equals(Object object) { argument
173 if (object == this) {
176 if (!(object instanceof NativeDecimalFormat)) {
179 NativeDecimalFormat obj = (NativeDecimalFormat) object;
273 public AttributedCharacterIterator formatToCharacterIterator(Object object) { argument
274 if (!(object instanceof Number)) {
277 Number number = (Number) object;
/dalvik/vm/mterp/out/
H A DInterpAsm-x86.S236 /* for move, move-object, long-to-int */
251 /* for: move/from16, move-object/from16 */
266 /* for: move/16, move-object/16 */
330 /* for move, move-object, long-to-int */
347 /* for: move/from16, move-object/from16 */
364 /* for: move/16, move-object/16 */
379 /* for: move-result, move-result-object */
409 /* for: move-result, move-result-object */
429 SET_VREG(%eax,rINST_FULL) # fp[AA]<- exception object
450 * for: return, return-object
[all...]

Completed in 6006 milliseconds

1234567891011>>