/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
AttCertIssuer.java | 15 ASN1Encodable obj; field in class:AttCertIssuer 19 Object obj) 21 if (obj == null || obj instanceof AttCertIssuer) 23 return (AttCertIssuer)obj; 25 else if (obj instanceof V2Form) 27 return new AttCertIssuer(V2Form.getInstance(obj)); 29 else if (obj instanceof GeneralNames) 31 return new AttCertIssuer((GeneralNames)obj); 33 else if (obj instanceof ASN1TaggedObject [all...] |
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicLongFieldUpdater.java | 68 * @param obj An object whose field to conditionally set 72 * @throws ClassCastException if {@code obj} is not an instance 75 public abstract boolean compareAndSet(T obj, long expect, long update); 88 * @param obj An object whose field to conditionally set 92 * @throws ClassCastException if {@code obj} is not an instance 95 public abstract boolean weakCompareAndSet(T obj, long expect, long update); 102 * @param obj An object whose field to set 105 public abstract void set(T obj, long newValue); 111 * @param obj An object whose field to set 115 public abstract void lazySet(T obj, long newValue) [all...] |
/external/chromium/webkit/glue/ |
glue_serialize.cc | 70 inline void WriteData(const void* data, int length, SerializeObject* obj) { 71 obj->pickle.WriteData(static_cast<const char*>(data), length); 74 inline void ReadData(const SerializeObject* obj, const void** data, 77 obj->pickle.ReadData(&obj->iter, &tmp, length); 81 inline bool ReadBytes(const SerializeObject* obj, const void** data, 84 if (!obj->pickle.ReadBytes(&obj->iter, &tmp, length)) 90 inline void WriteInteger(int data, SerializeObject* obj) { 91 obj->pickle.WriteInt(data) 209 WriteInteger(static_cast<int>(data.size()), obj); local 338 WriteInteger(static_cast<int>(children.size()), obj); local 460 SerializeObject obj; local 473 SerializeObject obj; local [all...] |
/external/chromium_org/content/browser/android/ |
interstitial_page_delegate_android.cc | 20 jobject obj, 22 : weak_java_obj_(env, obj), 29 ScopedJavaLocalRef<jobject> obj = weak_java_obj_.get(env); local 30 if (obj.obj()) 31 Java_InterstitialPageDelegateAndroid_onNativeDestroyed(env, obj.obj()); 34 void InterstitialPageDelegateAndroid::Proceed(JNIEnv* env, jobject obj) { 40 jobject obj) { 51 ScopedJavaLocalRef<jobject> obj = weak_java_obj_.get(env) local 58 ScopedJavaLocalRef<jobject> obj = weak_java_obj_.get(env); local 66 ScopedJavaLocalRef<jobject> obj = weak_java_obj_.get(env); local [all...] |
/external/zlib/src/contrib/delphi/ |
zlibd32.mak | 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj 22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.ob [all...] |
/external/zlib/src/contrib/pascal/ |
zlibd32.mak | 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj 22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.ob [all...] |
/external/lzma/C/Util/Lzma/ |
makefile | 7 $O\LzmaUtil.obj \
10 $O\Alloc.obj \
11 $O\LzFind.obj \
12 $O\LzFindMt.obj \
13 $O\LzmaDec.obj \
14 $O\LzmaEnc.obj \
15 $O\7zFile.obj \
16 $O\7zStream.obj \
17 $O\Threads.obj \
|
/external/valgrind/main/ |
clean-targets.sh | 6 obj=$ANDROID_BUILD_TOP/out/target/product/stingray/obj 8 rm -r $obj/STATIC_LIBRARIES/libvex-arm-linux_intermediates \ 9 $obj/STATIC_LIBRARIES/libcoregrind-arm-linux_intermediates \ 10 $obj/STATIC_LIBRARIES/libreplacemalloc_toolpreload-arm-linux_intermediates \ 11 $obj/SHARED_LIBRARIES/vgpreload_core-arm-linux_intermediates \ 12 $obj/SHARED_LIBRARIES/memcheck-arm-linux_intermediates \ 13 $obj/SHARED_LIBRARIES/vgpreload_memcheck-arm-linux_intermediates \ 14 $obj/SHARED_LIBRARIES/cachegrind-arm-linux_intermediates \ 15 $obj/SHARED_LIBRARIES/callgrind-arm-linux_intermediates [all...] |
/external/clang/test/CodeGenCXX/ |
call-arg-zero-temp.cpp | 10 struct obj{ int a; float b; double d; }; struct 12 void foo(obj o) { 17 obj o = obj(); 18 foo(obj());
|
/external/stlport/test/eh/ |
intel.mak | 26 Dep_stl = TestClass.obj main.obj nc_alloc.obj \ 27 random_number.obj test_algo.obj test_algobase.obj test_bit_vector.obj test_deque.obj \ 28 test_hash_map.obj test_hash_set.obj test_list.obj test_map.obj test_rope.obj test_set.obj [all...] |
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...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.generic/ |
address.pass.cpp | 78 A obj(T(0)); 79 assert(obj == T(0)); 80 std::atomic_init(&obj, T(1)); 81 assert(obj == T(1)); 82 std::atomic_init(&obj, T(2)); 83 assert(obj == T(2)); 84 bool b0 = obj.is_lock_free(); 85 obj.store(T(0)); 86 assert(obj == T(0)); 87 obj.store(T(1), std::memory_order_release) [all...] |
integral.pass.cpp | 95 A obj(T(0)); 96 assert(obj == T(0)); 97 std::atomic_init(&obj, T(1)); 98 assert(obj == T(1)); 99 std::atomic_init(&obj, T(2)); 100 assert(obj == T(2)); 101 bool b0 = obj.is_lock_free(); 102 obj.store(T(0)); 103 assert(obj == T(0)); 104 obj.store(T(1), std::memory_order_release) [all...] |
/dalvik/vm/mterp/c/ |
OP_MONITOR_EXIT.cpp | 3 Object* obj; local 10 obj = (Object*)GET_REGISTER(vsrc1); 11 if (!checkForNull(obj)) { 22 ILOGV("+ unlocking %p %s", obj, obj->clazz->descriptor); 23 if (!dvmUnlockObject(self, obj)) {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BEROutputStream.java | 16 Object obj) 19 if (obj == null) 23 else if (obj instanceof ASN1Primitive) 25 ((ASN1Primitive)obj).encode(this); 27 else if (obj instanceof ASN1Encodable) 29 ((ASN1Encodable)obj).toASN1Primitive().encode(this);
|
/external/chromium_org/components/browser_context_keyed_service/ |
refcounted_browser_context_keyed_service.cc | 11 const RefcountedBrowserContextKeyedService* obj) { 12 if (obj->requires_destruction_on_thread_ && 13 !content::BrowserThread::CurrentlyOn(obj->thread_id_)) { 14 content::BrowserThread::DeleteSoon(obj->thread_id_, FROM_HERE, obj); 16 delete obj;
|
/art/test/024-illegal-access/src/ |
CheckInstanceof.java | 21 public static void main(Object obj) { 22 if (obj instanceof otherpkg.Package)
|
/dalvik/tests/024-illegal-access/src/ |
CheckInstanceof.java | 21 public static void main(Object obj) { 22 if (obj instanceof otherpkg.Package)
|
/external/chromium_org/third_party/JSON/JSON-2.59/t/ |
07_pc_esc.t | 25 my ($js,$obj,$str); 29 $obj = {test => qq|abc"def|}; 30 $str = $pc->encode($obj); 33 $obj = {qq|te"st| => qq|abc"def|}; 34 $str = $pc->encode($obj); 37 $obj = {test => qq|abc/def|}; # / => \/ 38 $str = $pc->encode($obj); # but since version 0.99 40 $obj = $pc->decode($str); 41 is($obj->{test},q|abc/def|); 43 $obj = {test => q|abc\def|} [all...] |
/external/zlib/src/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/chromium_org/content/common/ |
page_state_serialization.cc | 198 void WriteData(const void* data, int length, SerializeObject* obj) { 199 obj->pickle.WriteData(static_cast<const char*>(data), length); 202 void ReadData(SerializeObject* obj, const void** data, int* length) { 204 if (obj->pickle.ReadData(&obj->iter, &tmp, length)) { 207 obj->parse_error = true; 213 void WriteInteger(int data, SerializeObject* obj) { 214 obj->pickle.WriteInt(data); 217 int ReadInteger(SerializeObject* obj) { 219 if (obj->pickle.ReadInt(&obj->iter, &tmp) 338 WriteInteger(static_cast<int>(v.size()), obj); local 663 SerializeObject obj; local [all...] |
/external/lzma/CPP/7zip/UI/Client7z/ |
makefile | 6 $O\Client7z.obj \
9 $O\IntToString.obj \
10 $O\NewHandler.obj \
11 $O\MyString.obj \
12 $O\StringConvert.obj \
13 $O\StringToInt.obj \
14 $O\MyVector.obj \
15 $O\Wildcard.obj \
18 $O\DLL.obj \
19 $O\FileDir.obj \
[all...] |
/dalvik/vm/alloc/ |
Verify.cpp | 30 Object *obj = *(Object **)pObj; local 32 if (lookingFor != NULL && lookingFor == obj) { 41 static void dumpReferencesCallback(Object *obj, void *arg) 43 if (obj == (Object *)arg) { 46 dvmVisitObject(dumpReferencesVisitor, obj, &arg); 48 ALOGD("Found %p in the heap @ %p", arg, obj); 49 dvmDumpObject(obj); 60 Object *obj = *(Object **)ptr; local 62 if (obj == lookingFor) { 70 static void dumpReferences(const Object *obj) 83 Object *obj; local [all...] |
/art/test/023-many-interfaces/src/ |
ManyInterfaces.java | 190 ManyInterfaces obj = new ManyInterfaces(); local 206 testIface001(obj, iter); 211 testIface049(obj, iter); 216 testIface099(obj, iter); 221 testVirt001(obj, iter); 226 testVirt049(obj, iter); 231 testVirt099(obj, iter); 236 testInstance001(obj, iter); 241 testInstance049(obj, iter); 246 testInstance099(obj, iter) [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...] |