Searched refs:object (Results 51 - 75 of 281) sorted by relevance

1234567891011>>

/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMyGuard.java33 public void checkGuard(Object object) { argument
/dalvik/vm/mterp/armv5te/
H A DOP_ARRAY_LENGTH.S7 GET_VREG(r0, r1) @ r0<- vB (object ref)
9 cmp r0, #0 @ is object null?
H A DOP_THROW.S2 %verify "exception for null object"
4 * Throw an exception object in the current thread.
8 GET_VREG(r1, r2) @ r1<- vAA (exception object)
10 cmp r1, #0 @ null object?
H A DOP_IPUT_WIDE_QUICK.S2 %verify "null object"
7 GET_VREG(r2, r1) @ r2<- fp[B], the object pointer
9 cmp r2, #0 @ check object for null
11 beq common_errNullObject @ object was null
H A DOP_APUT_OBJECT.S3 * Store an object into an array. vBB[vCC] <- vAA.
13 GET_VREG(r1, r2) @ r1<- vBB (array object)
15 cmp r1, #0 @ null array object?
36 bl dvmCanPutArrayElement @ test object type vs. array type
H A DOP_MONITOR_EXIT.S2 %verify "exception for null object (impossible in javac)"
5 * Unlock an object.
14 GET_VREG(r1, r2) @ r1<- vAA (object)
15 cmp r1, #0 @ null object?
/dalvik/vm/mterp/armv6t2/
H A DOP_ARRAY_LENGTH.S7 GET_VREG(r0, r1) @ r0<- vB (object ref)
8 cmp r0, #0 @ is object null?
/dalvik/vm/mterp/x86/
H A DOP_AGET.S6 * for: aget, aget-object, aget-boolean, aget-byte, aget-char, aget-short
12 GET_VREG(%eax,%eax) # eax<- vBB (array object)
14 testl %eax,%eax # null array object?
H A DOP_APUT.S6 * for: aput, aput-object, aput-boolean, aput-byte, aput-char, aput-short
12 GET_VREG(%eax,%eax) # eax<- vBB (array object)
14 testl %eax,%eax # null array object?
H A DOP_ARRAY_LENGTH.S7 GET_VREG(%ecx,rINST_FULL) # ecx<- vB (object ref)
H A DOP_MOVE_EXCEPTION.S7 SET_VREG(%eax,rINST_FULL) # fp[AA]<- exception object
/dalvik/vm/mterp/x86-atom/
H A DOP_ARRAY_LENGTH.S36 testl %eax, %eax # check for null array object
37 je common_errNullObject # handle null array object
/dalvik/libcore/luni/src/main/java/java/util/
H A DAbstractCollection.java40 public boolean add(E object) { argument
64 * if the class of an object is inappropriate for this
67 * if an object cannot be added to this {@code Collection}.
109 * Tests whether this {@code Collection} contains the specified object. This
111 * element is equal to the given object. If {@code object != null} then
112 * {@code object.equals(e)} is called for each element {@code e} returned by
113 * the iterator until the element is found. If {@code object == null} then
117 * @param object
118 * the object t
127 contains(Object object) argument
225 remove(Object object) argument
[all...]
H A DIdentityHashMap.java96 public boolean equals(Object object) { argument
97 if (this == object) {
100 if (object instanceof Map.Entry) {
101 Map.Entry<?, ?> entry = (Map.Entry) object;
209 public boolean remove(Object object) { argument
210 if (contains(object)) {
211 associatedMap.remove(((Map.Entry) object).getKey());
218 public boolean contains(Object object) { argument
219 if (object instanceof Map.Entry) {
221 .getEntry(((Map.Entry) object)
718 equals(Object object) argument
[all...]
H A DHashSet.java86 * Adds the specified object to this {@code HashSet} if not already present.
88 * @param object
89 * the object to add.
91 * the object, {@code false} otherwise
94 public boolean add(E object) { argument
95 return backingMap.put(object, this) == null;
129 * Searches this {@code HashSet} for the specified object.
131 * @param object
132 * the object to search for.
133 * @return {@code true} if {@code object} i
137 contains(Object object) argument
172 remove(Object object) argument
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/qualified/
H A DSemanticsInformation.java14 * The SemanticsInformation object.
44 throw new IllegalArgumentException("unknown object in getInstance");
55 Object object = e.nextElement();
56 if (object instanceof DERObjectIdentifier)
58 semanticsIdentifier = DERObjectIdentifier.getInstance(object);
61 object = e.nextElement();
65 object = null;
69 if (object != null)
71 ASN1Sequence generalNameSeq = ASN1Sequence.getInstance(object);
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
H A DRuleBasedBreakIterator.java46 public boolean equals(Object object) { argument
47 if(object == null) {
51 if(!(object instanceof RuleBasedBreakIterator)) {
55 CharacterIterator iter = ((RuleBasedBreakIterator) object).charIter;
57 boolean result = this.type == ((RuleBasedBreakIterator) object).type;
/dalvik/libcore/luni/src/main/java/java/io/
H A DObjectOutputStream.java67 * If object replacement is enabled or not
113 * Used to keep track of the PutField object for the class/object being
284 * if an error occurs while writing the object stream
395 * the object being dumped.
406 * defined in the object's class and superclasses are written to the output
455 // and now we're clean to a state where we can write an object
462 * or an object that has already been dumped previously.
477 // If the object has been saved already, save its handle only
487 * Enables object replacemen
656 replaceObject(Object object) argument
1204 writeHierarchy(Object object, ObjectStreamClass classDesc) argument
1404 writeNewClass(Class<?> object, boolean unshared) argument
1535 writeNewObject(Object object, Class<?> theClass, ObjectStreamClass clDesc, boolean unshared) argument
1617 writeNewString(String object, boolean unshared) argument
1664 writeObject(Object object) argument
1680 writeUnshared(Object object) argument
1684 writeObject(Object object, boolean unshared) argument
1741 writeObjectInternal(Object object, boolean unshared, boolean computeClassBasedReplacement, boolean computeStreamReplacement) argument
1917 writeNewEnum(Object object, Class<?> theClass, boolean unshared) argument
1975 writeObjectOverride(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...]
/dalvik/libcore/json/src/test/java/org/json/
H A DSelfUseTest.java42 private final JSONObject object = new JSONObject() { field in class:SelfUseTest
125 object.putOpt("foo", "bar");
130 object.accumulate("foo", "bar");
135 object.put("foo", "true");
136 object.getBoolean("foo");
141 object.optBoolean("foo");
144 object.optDouble("foo");
147 object.optInt("foo");
150 object.optLong("foo");
153 object
[all...]
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DASN1SequenceOf.java88 public Collection getValues(Object object) {
89 return Arrays.asList((Object[]) object);
H A DASN1SetOf.java86 public Collection getValues(Object object) {
87 return Arrays.asList((Object[]) object);
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
H A DORAddress.java78 protected void getValues(Object object, Object[] values) {
88 protected void getValues(Object object, Object[] values) {
H A DDistributionPointName.java88 * into the StringBuffer object.
109 public int getIndex(java.lang.Object object) {
110 DistributionPointName dpn = (DistributionPointName) object;
126 public Object getObjectToEncode(Object object) {
127 DistributionPointName dpn = (DistributionPointName) object;
/dalvik/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java169 * Returns golden file for an object being tested.
188 * returned by {@link #getData() getData()}to golden files, each object to
211 * Serializes specified object to an output stream.
222 * Deserializes single object from an input stream.
244 * initial object used for creating serialized form
246 * deserialized object
261 * Comparator for verifying that deserialized object is the same as initial.
325 * <code>object</code>.
329 * selected as </code>comparator</code>.<br>- if passed <code>object</code>
332 * method tries to select one of known comparators basing on <code>object'
343 defineComparator(TestCase test, Object object) argument
381 verifyGolden(TestCase test, Object object) argument
402 verifyGolden(TestCase test, Object object, SerializableAssert comparator) argument
469 verifySelf(Object object) argument
487 verifySelf(Object object, SerializableAssert comparator) argument
567 createGoldenFile(String root, TestCase test, Object object) argument
[all...]

Completed in 528 milliseconds

1234567891011>>