HomeSort by relevance Sort by last modified time
    Searched refs:obj (Results 26 - 50 of 1704) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/tests/024-illegal-access/src/
CheckInstanceof.java 21 public static void main(Object obj) {
22 if (obj instanceof otherpkg.Package)
  /external/zlib/watcom/
watcom_f.mak 12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
13 gzclose.obj gzlib.obj gzread.obj gzwrite.obj &
14 infback.obj inffast.obj inflate.obj inftrees.obj
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Scope/
scope-001.js 24 * obj.__proto__ = this, 'five' should become a read-only propery of obj.
26 * If we then change obj.__proto__ to null, obj.five should initially be
27 * undefined. We should be able to define obj.five to whatever we want,
28 * and be able to access this value as obj.five.
30 * Bug 53268 was filed because obj.five could not be set or accessed after
31 * obj.__proto__ had been set to the global object and then to null.
35 var status = 'Testing scope after changing obj.__proto__';
38 var obj = {}
    [all...]
  /external/stlport/test/eh/
bcb.mak 19 OBJFILES = TestClass.obj \
20 nc_alloc.obj \
21 random_number.obj \
22 test_algo.obj \
23 test_algobase.obj \
24 test_bit_vector.obj \
25 test_bitset.obj \
26 test_deque.obj \
27 test_hash_map.obj \
28 test_hash_set.obj \
    [all...]
  /dalvik/tests/023-many-interfaces/src/
ManyInterfaces.java 176 ManyInterfaces obj = new ManyInterfaces(); local
192 testIface001(obj, iter);
197 testIface049(obj, iter);
202 testIface099(obj, iter);
207 testVirt001(obj, iter);
212 testVirt049(obj, iter);
217 testVirt099(obj, iter);
222 testInstance001(obj, iter);
227 testInstance049(obj, iter);
232 testInstance099(obj, iter)
    [all...]
  /dalvik/vm/alloc/
Verify.c 25 Object *obj = *(Object **)pObj; local
27 if (lookingFor != NULL && lookingFor == obj) {
34 Object *obj = arg; local
35 if (ptr == obj) {
36 LOGD("skipping %p == %p", ptr, obj);
39 dvmVisitObject(dumpReferencesVisitor, ptr, &obj);
40 if (obj == NULL) {
48 Object *obj = *(Object **)ptr; local
50 if (obj == lookingFor) {
58 static void dumpReferences(const Object *obj)
71 Object *obj; local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1Sequence.java 23 * @param obj the object we want converted.
27 Object obj)
29 if (obj == null || obj instanceof ASN1Sequence)
31 return (ASN1Sequence)obj;
34 throw new IllegalArgumentException("unknown object in getInstance: " + obj.getClass().getName());
47 * @param obj the tagged object.
54 ASN1TaggedObject obj,
59 if (!obj.isExplicit())
64 return (ASN1Sequence)obj.getObject()
120 DEREncodable obj = getObjectAt(index++); local
    [all...]
BERTaggedObject.java 16 * @param obj the tagged object.
20 DEREncodable obj)
22 super(tagNo, obj);
28 * @param obj the tagged object.
33 DEREncodable obj)
35 super(explicit, tagNo, obj);
62 if (obj instanceof ASN1OctetString)
64 if (obj instanceof BERConstructedOctetString)
66 e = ((BERConstructedOctetString)obj).getObjects();
70 ASN1OctetString octs = (ASN1OctetString)obj;
    [all...]
  /dalvik/tests/064-field-access/src/
GetNonexistent.java 19 Object obj = Holder.mObject; local
  /dalvik/vm/mterp/c/
OP_THROW.c 3 Object* obj; local
14 obj = (Object*) GET_REGISTER(vsrc1);
15 if (!checkForNull(obj)) {
20 dvmSetException(self, obj);
OP_APUT_OBJECT.c 4 Object* obj; local
20 obj = (Object*) GET_REGISTER(vdst);
21 if (obj != NULL) {
22 if (!checkForNull(obj))
24 if (!dvmCanPutArrayElement(obj->clazz, arrayObj->obj.clazz)) {
26 obj->clazz->descriptor, obj,
27 arrayObj->obj.clazz->descriptor, arrayObj);
28 //dvmDumpClass(obj->clazz)
    [all...]
OP_CHECK_CAST.c 4 Object* obj; local
12 obj = (Object*)GET_REGISTER(vsrc1);
13 if (obj != NULL) {
15 if (!checkForNull(obj))
24 if (!dvmInstanceof(obj->clazz, clazz)) {
26 "Ljava/lang/ClassCastException;", obj->clazz->descriptor);
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 67 * @param obj An object whose field to conditionally set
71 * @throws ClassCastException if {@code obj} is not an instance
74 public abstract boolean compareAndSet(T obj, long expect, long update);
87 * @param obj An object whose field to conditionally set
91 * @throws ClassCastException if {@code obj} is not an instance
94 public abstract boolean weakCompareAndSet(T obj, long expect, long update);
101 * @param obj An object whose field to set
104 public abstract void set(T obj, long newValue);
110 * @param obj An object whose field to set
114 public abstract void lazySet(T obj, long newValue)
    [all...]
AtomicIntegerFieldUpdater.java 64 * @param obj An object whose field to conditionally set
68 * @throws ClassCastException if {@code obj} is not an instance
71 public abstract boolean compareAndSet(T obj, int expect, int update);
84 * @param obj An object whose field to conditionally set
88 * @throws ClassCastException if {@code obj} is not an instance
91 public abstract boolean weakCompareAndSet(T obj, int expect, int update);
98 * @param obj An object whose field to set
101 public abstract void set(T obj, int newValue);
107 * @param obj An object whose field to set
111 public abstract void lazySet(T obj, int newValue)
    [all...]
  /external/qemu/
qbool.c 26 static void qbool_destroy_obj(QObject *obj);
60 QBool *qobject_to_qbool(const QObject *obj)
62 if (qobject_type(obj) != QTYPE_QBOOL)
65 return container_of(obj, QBool, base);
72 static void qbool_destroy_obj(QObject *obj)
74 assert(obj != NULL);
75 qemu_free(qobject_to_qbool(obj));
qfloat.c 26 static void qfloat_destroy_obj(QObject *obj);
60 QFloat *qobject_to_qfloat(const QObject *obj)
62 if (qobject_type(obj) != QTYPE_QFLOAT)
65 return container_of(obj, QFloat, base);
72 static void qfloat_destroy_obj(QObject *obj)
74 assert(obj != NULL);
75 qemu_free(qobject_to_qfloat(obj));
qint.c 16 static void qint_destroy_obj(QObject *obj);
50 QInt *qobject_to_qint(const QObject *obj)
52 if (qobject_type(obj) != QTYPE_QINT)
55 return container_of(obj, QInt, base);
62 static void qint_destroy_obj(QObject *obj)
64 assert(obj != NULL);
65 qemu_free(qobject_to_qint(obj));
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-44009.js 23 * SUMMARY: Testing that we don't crash on obj.toSource()
27 var summary = "Testing that we don't crash on obj.toSource()";
58 function testThis(obj)
60 sToSource = obj.toSource();
61 obj.prop = obj;
62 sToSource = obj.toSource();
  /external/chromium/base/
thread_collision_warner.h 103 #define DFAKE_MUTEX(obj) \
104 mutable base::ThreadCollisionWarner obj
107 #define DFAKE_SCOPED_LOCK(obj) \
108 base::ThreadCollisionWarner::ScopedCheck s_check_##obj(&obj)
111 #define DFAKE_SCOPED_RECURSIVE_LOCK(obj) \
112 base::ThreadCollisionWarner::ScopedRecursiveCheck sr_check_##obj(&obj)
114 #define DFAKE_SCOPED_LOCK_THREAD_LOCKED(obj) \
115 base::ThreadCollisionWarner::Check check_##obj(&obj
    [all...]
  /external/webkit/WebCore/bridge/
npruntime.cpp 115 NPObject* obj; local
117 obj = aClass->allocate(npp, aClass);
119 obj = (NPObject*)malloc(sizeof(NPObject));
120 if (!obj)
122 obj->_class = aClass;
123 obj->referenceCount = 1;
125 return obj;
131 NPObject* _NPN_RetainObject(NPObject* obj)
133 ASSERT(obj);
135 if (obj)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/
scope-001.js 58 var obj = {a:2};
59 with (obj)
69 * f's associated scope chain now includes 'obj' before the global object.
73 var obj = {a:2};
74 with (obj)
93 var obj = {a:2};
94 with (obj)
112 var obj = {a:2, obj:{a:3}};
113 with (obj)
    [all...]
scope-002.js 59 var obj = {a:2};
60 with (obj)
70 * f's associated scope chain now includes 'obj' before the global object.
74 var obj = {a:2};
75 with (obj)
90 var obj = {a:2};
91 with (obj)
105 var obj = {a:2, obj:{a:3}};
106 with (obj)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
pcm_rate.h 63 void (*close)(void *obj);
67 int (*init)(void *obj, snd_pcm_rate_info_t *info);
71 void (*free)(void *obj);
75 void (*reset)(void *obj);
79 int (*adjust_pitch)(void *obj, snd_pcm_rate_info_t *info);
83 void (*convert)(void *obj,
91 void (*convert_s16)(void *obj, int16_t *dst, unsigned int dst_frames,
96 snd_pcm_uframes_t (*input_frames)(void *obj, snd_pcm_uframes_t frames);
100 snd_pcm_uframes_t (*output_frames)(void *obj, snd_pcm_uframes_t frames);
  /external/bluetooth/glib/gio/
gasyncresult.h 35 #define G_ASYNC_RESULT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_ASYNC_RESULT, GAsyncResult))
36 #define G_IS_ASYNC_RESULT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_ASYNC_RESULT))
37 #define G_ASYNC_RESULT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_ASYNC_RESULT, GAsyncResultIface))
glocalvfs.h 31 #define G_LOCAL_VFS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_LOCAL_VFS, GLocalVfs))
33 #define G_IS_LOCAL_VFS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_LOCAL_VFS))
35 #define G_LOCAL_VFS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_LOCAL_VFS, GLocalVfsClass))

Completed in 1034 milliseconds

12 3 4 5 6 7 8 91011>>