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

12345

/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 DHashtable.java283 * Returns true if this {@code Hashtable} contains the specified object as a
287 * the object to look for as a key in this {@code Hashtable}.
288 * @return {@code true} if object is a key in this {@code Hashtable},
314 * the object to search for.
337 * Returns true if this {@code Hashtable} contains the specified object as
341 * the object to look for as a value in this {@code Hashtable}.
342 * @return {@code true} if object is a value in this {@code Hashtable},
841 * Compares this {@code Hashtable} with the specified object and indicates
842 * if they are equal. In order to be equal, {@code object} must be an
845 * @param object
851 equals(Object object) argument
941 equals(Object object) argument
1040 equals(Object object) argument
[all...]
H A DTreeMap.java69 public boolean equals(Object object) { argument
70 if (this == object) {
73 if (object instanceof Map.Entry) {
74 Map.Entry<?, ?> entry = (Map.Entry<?, ?>) object;
105 public V setValue(V object) { argument
108 node.values[offset] = object;
112 return put(key, object);
397 Comparable<K> object = toComparable(key);
398 if (hasStart && object.compareTo(startKey) < 0) {
401 if (hasEnd && object
842 contains(Object object) argument
855 remove(Object object) argument
874 contains(Object object) argument
889 remove(Object object) argument
1316 cmp(Comparable<K> object, K key1, K key2) argument
[all...]
H A DCollections.java45 CopiesList(int length, E object) { argument
50 element = object;
54 public boolean contains(Object object) { argument
55 return element == null ? object == null : element.equals(object);
78 public boolean contains(Object object) { argument
103 public boolean contains(Object object) { argument
248 SingletonSet(E object) { argument
249 element = object;
253 public boolean contains(Object object) { argument
292 SingletonList(E object) argument
297 contains(Object object) argument
419 add(E object) argument
437 contains(Object object) argument
461 remove(Object object) argument
563 add(int location, E object) argument
576 equals(Object object) argument
595 indexOf(Object object) argument
619 lastIndexOf(Object object) argument
661 set(int location, E object) argument
743 equals(Object object) argument
831 equals(Object object) argument
983 add(E object) argument
995 contains(Object object) argument
1025 remove(Object object) argument
1095 add(int location, E object) argument
1104 equals(Object object) argument
1117 indexOf(Object object) argument
1121 lastIndexOf(Object object) argument
1175 set(int location, E object) argument
1225 equals(Object object) argument
1242 setValue(V object) argument
1326 equals(Object object) argument
1382 equals(Object object) argument
1486 binarySearch( List<? extends Comparable<? super T>> list, T object) argument
1548 binarySearch(List<? extends T> list, T object, Comparator<? super T> comparator) argument
1649 fill(List<? super T> list, T object) argument
1781 nCopies(final int length, T object) argument
1905 singleton(E object) argument
1917 singletonList(E object) argument
3458 equals(Object object) argument
[all...]
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DCollectionsTest.java267 public int compareTo(MyInt object) { argument
268 return data > object.data ? 1 : (data < object.data ? -1 : 0);
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DClass.java73 * <h4>Class instances representing object types (classes or interfaces)</h4>
111 * which can be either an object type or a primitive type. The signature of a
160 * Returns a {@code Class} object which represents the class with the
186 * Returns a {@code Class} object which represents the class with the
264 * class members or if this object represents a primitive type then an array
267 * @return the public class members of the class represented by this object.
449 * Returns a {@code Class} object which represents the component type if
459 * Returns a {@code Constructor} object which represents the public
573 * Returns a {@code Constructor} object which represents the constructor
665 * Returns a {@code Field} object fo
1354 isInstance(Object object) argument
[all...]
H A DThread.java58 * {@code Thread} instance with a {@link Runnable} object during its creation.
205 * Constructs a new {@code Thread} with no {@code Runnable} object and a
219 * Constructs a new {@code Thread} with a {@code Runnable} object and a
237 * Constructs a new {@code Thread} with a {@code Runnable} object and name
261 * Constructs a new {@code Thread} with no {@code Runnable} object and the
282 * Constructs a new {@code Thread} with a {@code Runnable} object and a
309 * Constructs a new {@code Thread} with a {@code Runnable} object, the given
340 * Constructs a new {@code Thread} with no {@code Runnable} object, the
368 * Constructs a new {@code Thread} with a {@code Runnable} object, the given
435 * Initializes a new, existing Thread object wit
1440 holdsLock(Object object) argument
[all...]
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
H A DField.java202 * Indicates whether or not the specified {@code object} is equal to this
203 * field. To be equal, the specified object must be an instance of
206 * @param object
207 * the object to compare
208 * @return {@code true} if the specified object is equal to this method,
214 public boolean equals(Object object) { argument
215 return object instanceof Field && toString().equals(object.toString());
219 * Returns the value of the field in the specified object. This reproduces
220 * the effect of {@code object
246 get(Object object) argument
274 getBoolean(Object object) argument
303 getByte(Object object) argument
331 getChar(Object object) argument
369 getDouble(Object object) argument
397 getFloat(Object object) argument
425 getInt(Object object) argument
453 getLong(Object object) argument
505 getShort(Object object) argument
581 set(Object object, Object value) argument
615 setBoolean(Object object, boolean value) argument
648 setByte(Object object, byte value) argument
681 setChar(Object object, char value) argument
714 setDouble(Object object, double value) argument
747 setFloat(Object object, float value) argument
780 setInt(Object object, int value) argument
813 setLong(Object object, long value) argument
846 setShort(Object object, short value) argument
[all...]
/dalvik/libcore/text/src/main/java/java/text/
H A DDateFormat.java39 * represented as a {@code Date} object or as the milliseconds since January 1,
311 * Compares this date format with the specified object and indicates if they
314 * @param object
315 * the object to compare with this date format.
316 * @return {@code true} if {@code object} is a {@code DateFormat} object and
322 public boolean equals(Object object) { argument
323 if (this == object) {
326 if (!(object instanceof DateFormat)) {
329 DateFormat dateFormat = (DateFormat) object;
364 format(Object object, StringBuffer buffer, FieldPosition field) argument
[all...]
/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/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/test/java/tests/api/java/io/
H A DObjectOutputStreamTest.java560 public void writeObjectOverride(Object object) throws IOException { argument
561 super.writeObjectOverride(object);
877 * "SerializableTestHelper" is an object created for these tests with
929 assertEquals("Test 2: Incorrect object read.", o, ois.readObject());
930 assertEquals("Test 3: Incorrect object read.", o, ois.readObject());
931 assertEquals("Test 4: Incorrect object read.", o, ois.readObject());
1366 // Dump the object
/dalvik/vm/alloc/
H A DMarkSweep.c92 * where the heap is perfectly full of the smallest object.
154 * current object bitmaps.
196 /* This object was not previously marked.
199 /* This object will need to go on the mark stack.
215 /* obj->clazz can be NULL if we catch an object between
243 /* If the object hasn't already been marked, mark it and
267 * - Associated Thread/VMThread object
278 * - Objects in debugger object registry
350 //TODO: scan object references sitting in gDvm; use pointer begin & end
419 /* All of the fields that contain object reference
1194 isUnmarkedObject(void *object) argument
[all...]
/dalvik/libcore/xml/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp67 /** The Java parser object. */
68 jobject object; member in struct:ParsingContext
327 ParsingContext* newParsingContext(JNIEnv* env, jobject object) { argument
337 result->object = object;
441 jobject javaParser = parsingContext->object;
628 jobject javaParser = parsingContext->object;
660 jobject javaParser = parsingContext->object;
721 jobject javaParser = parsingContext->object;
741 jobject javaParser = parsingContext->object;
857 createEntityParser(JNIEnv* env, jobject object, jint parentParser, jstring javaEncoding, jstring javaContext) argument
892 jobject object = parsingContext->object; local
1020 initialize(JNIEnv* env, jobject object, jstring javaEncoding, jboolean processNamespaces) argument
1075 appendString(JNIEnv* env, jobject object, jint pointer, jstring xml, jboolean isFinal) argument
1105 appendCharacters(JNIEnv* env, jobject object, jint pointer, jcharArray xml, jint offset, jint length) argument
1134 appendBytes(JNIEnv* env, jobject object, jint pointer, jbyteArray xml, jint offset, jint length) argument
1160 releaseParser(JNIEnv* env, jobject object, jint i) argument
1171 release(JNIEnv* env, jobject object, jint i) argument
[all...]
/dalvik/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jar ... Object object public static void assertNull (java.lang.Object) Object object public static void assertNull (java.lang. ...
/dalvik/libcore/luni/src/main/java/java/lang/
H A DCharacter.java82 * The {@link Class} object that represents the primitive type {@code char}.
552 * Compares this character subset with the specified object. Uses
555 * @param object
556 * the object to compare this character subset with.
557 * @return {@code true} if {@code object} is this subset, that is, if
558 * {@code object == this}; {@code false} otherwise.
561 public final boolean equals(Object object) { argument
562 return super.equals(object);
1490 * @return this object's primitive value.
1497 * Compares this object t
2312 equals(Object object) argument
[all...]
/dalvik/libcore/x-net/src/main/native/
H A Dorg_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp44 jobject object; member in struct:jsse_ssl_app_data_t
392 * Gets the chars of a String object as a '\0'-terminated UTF-8 string,
536 * Helper function that grabs the ssl pointer out of the given object.
544 * @param obj non-null; socket object
783 static void free_ssl_ctx(JNIEnv* env, jobject object) { argument
794 SSL_CTX *ctx = (SSL_CTX *)env->GetIntField(object, field_Socket_ssl_ctx);
798 env->SetIntField(object, field_Socket_ssl_ctx, (int) NULL);
809 static void free_ssl(JNIEnv* env, jobject object) { argument
820 SSL *ssl = (SSL *)env->GetIntField(object, field_Socket_ssl);
825 env->SetIntField(object, field_Socket_ss
837 create_ssl(JNIEnv* env, jobject object, SSL_CTX* ssl_ctx) argument
1292 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_init(JNIEnv* env, jobject object, jstring privatekey, jstring certificates, jbyteArray seed) argument
1409 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_connect(JNIEnv* env, jobject object, jint ctx, jobject socketObject, jboolean client_mode, jint session) argument
1577 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_getsslsession(JNIEnv* env, jobject object, jint jssl) argument
1583 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_accept(JNIEnv* env, jobject object, jobject socketObject, jint jssl_ctx, jboolean client_mode) argument
1704 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_setenabledprotocols(JNIEnv* env, jobject object, jlong protocol) argument
1759 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_getsupportedciphersuites(JNIEnv* env, jobject object) argument
1818 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_cipherauthenticationmethod(JNIEnv* env, jobject object) argument
1869 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_read(JNIEnv* env, jobject object, jint timeout) argument
1936 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_write(JNIEnv* env, jobject object, jint b) argument
1989 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_interrupt( JNIEnv* env, jobject object) argument
2013 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_close( JNIEnv* env, jobject object) argument
2069 org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl_free(JNIEnv* env, jobject object) argument
2176 org_apache_harmony_xnet_provider_jsse_OpenSSLServerSocketImpl_init(JNIEnv* env, jobject object, jstring privatekey, jstring certificates, jbyteArray seed) argument
2249 org_apache_harmony_xnet_provider_jsse_OpenSSLServerSocketImpl_setenabledprotocols(JNIEnv* env, jobject object, jlong protocol) argument
2267 org_apache_harmony_xnet_provider_jsse_OpenSSLServerSocketImpl_getsupportedciphersuites(JNIEnv* env, jobject object) argument
2368 org_apache_harmony_xnet_provider_jsse_OpenSSLServerSocketImpl_nativesetclientauth(JNIEnv* env, jobject object, jint value) argument
2378 org_apache_harmony_xnet_provider_jsse_OpenSSLServerSocketImpl_nativefree(JNIEnv* env, jobject object) argument
2397 getSslSessionPointer(JNIEnv* env, jobject object) argument
2402 OpenSSLSessionImpl_getPeerCertificatesImpl(JNIEnv* env, jobject object, jint jssl) argument
2424 OpenSSLSessionImpl_getEncoded(JNIEnv* env, jobject object) argument
2450 OpenSSLSessionImpl_initializeNativeImpl(JNIEnv* env, jobject object, jbyteArray bytes, jint size) argument
2466 OpenSSLSessionImpl_getId(JNIEnv* env, jobject object) argument
2482 OpenSSLSessionImpl_getCreationTime(JNIEnv* env, jobject object) argument
2493 OpenSSLSessionImpl_getProtocol(JNIEnv* env, jobject object) argument
2511 OpenSSLSessionImpl_getCipherSuite(JNIEnv* env, jobject object) argument
2529 OpenSSLSessionImpl_freeImpl(JNIEnv* env, jobject object, jint session) argument
[all...]

Completed in 358 milliseconds

12345