/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.generic/ |
D | bool.pass.cpp | 60 volatile std::atomic<bool> obj(true); in main() local 61 assert(obj == true); in main() 62 std::atomic_init(&obj, false); in main() 63 assert(obj == false); in main() 64 std::atomic_init(&obj, true); in main() 65 assert(obj == true); in main() 66 bool b0 = obj.is_lock_free(); in main() 67 obj.store(false); in main() 68 assert(obj == false); in main() 69 obj.store(true, std::memory_order_release); in main() [all …]
|
D | integral.pass.cpp | 95 A obj(T(0)); in do_test() local 96 assert(obj == T(0)); in do_test() 97 std::atomic_init(&obj, T(1)); in do_test() 98 assert(obj == T(1)); in do_test() 99 std::atomic_init(&obj, T(2)); in do_test() 100 assert(obj == T(2)); in do_test() 101 bool b0 = obj.is_lock_free(); in do_test() 102 obj.store(T(0)); in do_test() 103 assert(obj == T(0)); in do_test() 104 obj.store(T(1), std::memory_order_release); in do_test() [all …]
|
D | address.pass.cpp | 78 A obj(T(0)); in do_test() local 79 assert(obj == T(0)); in do_test() 80 std::atomic_init(&obj, T(1)); in do_test() 81 assert(obj == T(1)); in do_test() 82 std::atomic_init(&obj, T(2)); in do_test() 83 assert(obj == T(2)); in do_test() 84 bool b0 = obj.is_lock_free(); in do_test() 85 obj.store(T(0)); in do_test() 86 assert(obj == T(0)); in do_test() 87 obj.store(T(1), std::memory_order_release); in do_test() [all …]
|
/ndk/sources/host-tools/make-3.81/ |
D | makefile.vms | 28 %.obj: %.c 29 $(CC) $(CFLAGS)/obj=$@ $< 55 ARCHIVES = ,ar.obj,arscan.obj 79 extras = ,signame.obj,remote-stub.obj,vmsfunctions.obj,vmsify.obj 82 glob = ,[.glob]glob.obj,[.glob]fnmatch.obj 83 getopt = ,getopt.obj,getopt1.obj 91 objs = commands.obj,job.obj,dir.obj,file.obj,misc.obj,hash.obj,\ 92 main.obj,read.obj,remake.obj,rule.obj,implicit.obj,\ 93 default.obj,variable.obj,expand.obj,function.obj,strcache.obj,\ 94 vpath.obj,version.obj$(ARCHIVES)$(ALLOCA)$(extras)$(getopt)$(glob) [all …]
|
D | build_w32.bat | 32 echo WinDebug\variable.obj >>link.dbg 34 echo WinDebug\rule.obj >>link.dbg 36 echo WinDebug\remote-stub.obj >>link.dbg 38 echo WinDebug\commands.obj >>link.dbg 40 echo WinDebug\file.obj >>link.dbg 42 echo WinDebug\getloadavg.obj >>link.dbg 44 echo WinDebug\default.obj >>link.dbg 46 echo WinDebug\signame.obj >>link.dbg 48 echo WinDebug\expand.obj >>link.dbg 50 echo WinDebug\dir.obj >>link.dbg [all …]
|
D | NMakefile | 77 $(OUTDIR)/ar.obj \ 78 $(OUTDIR)/arscan.obj \ 79 $(OUTDIR)/commands.obj \ 80 $(OUTDIR)/default.obj \ 81 $(OUTDIR)/dir.obj \ 82 $(OUTDIR)/expand.obj \ 83 $(OUTDIR)/file.obj \ 84 $(OUTDIR)/function.obj \ 85 $(OUTDIR)/getloadavg.obj \ 86 $(OUTDIR)/getopt.obj \ [all …]
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
D | catch7.cpp | 23 void fna(A *obj) { in fna() argument 24 throw obj; in fna() 26 void fnb(B *obj) { in fnb() argument 27 throw obj; in fnb() 29 void fnc(C *obj) { in fnc() argument 30 throw obj; in fnc() 32 void fnd(D *obj) { in fnd() argument 33 throw obj; in fnd() 35 void fne(E *obj) { in fne() argument 36 throw obj; in fne() [all …]
|
D | catch7p.cpp | 22 void fna(A *obj) { throw obj; } in fna() argument 23 void fnb(B *obj) { throw obj; } in fnb() argument 24 void fnc(C *obj) { throw obj; } in fnc() argument 25 void fnd(D *obj) { throw obj; } in fnd() argument 26 void fne(E *obj) { throw obj; } in fne() argument 27 void fnf(F *obj) { throw obj; } in fnf() argument
|
D | catch8.cpp | 18 void fna(A *obj) { throw obj; } in fna() argument 19 void fnb(B *obj) { throw obj; } in fnb() argument 20 void fnc(C *obj) { throw obj; } in fnc() argument 21 void fnd(D *obj) { throw obj; } in fnd() argument
|
D | catch4.cpp | 19 void fna(A *obj) { throw obj; } in fna() argument 20 void fnb(B *obj) { throw obj; } in fnb() argument 21 void fnc(C *obj) { throw obj; } in fnc() argument 22 void fnd(D *obj) { throw obj; } in fnd() argument
|
D | catch8p.cpp | 18 void fna(A *obj) { throw obj; } in fna() argument 19 void fnb(B *obj) { throw obj; } in fnb() argument 20 void fnc(C *obj) { throw obj; } in fnc() argument 21 void fnd(D *obj) { throw obj; } in fnd() argument
|
D | catch4p.cpp | 19 void fna(A *obj) { throw obj; } in fna() argument 20 void fnb(B *obj) { throw obj; } in fnb() argument 21 void fnc(C *obj) { throw obj; } in fnc() argument 22 void fnd(D *obj) { throw obj; } in fnd() argument
|
D | catch6p.cpp | 21 void fna(A *obj) { throw obj; } in fna() argument 22 void fnb(B *obj) { throw obj; } in fnb() argument 23 void fnc(C *obj) { throw obj; } in fnc() argument 24 void fnd(D *obj) { throw obj; } in fnd() argument 25 void fnaa(AA *obj) { throw obj; } in fnaa() argument 26 void fne(E *obj) { throw obj; } in fne() argument
|
D | catch6.cpp | 21 void fna(A *obj) { throw obj; } in fna() argument 22 void fnb(B *obj) { throw obj; } in fnb() argument 23 void fnc(C *obj) { throw obj; } in fnc() argument 24 void fnd(D *obj) { throw obj; } in fnd() argument 25 void fnaa(AA *obj) { throw obj; } in fnaa() argument 26 void fne(E *obj) { throw obj; } in fne() argument
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | catch7p.cpp | 22 void fna(A *obj) { throw obj; } in fna() argument 23 void fnb(B *obj) { throw obj; } in fnb() argument 24 void fnc(C *obj) { throw obj; } in fnc() argument 25 void fnd(D *obj) { throw obj; } in fnd() argument 26 void fne(E *obj) { throw obj; } in fne() argument 27 void fnf(F *obj) { throw obj; } in fnf() argument
|
D | catch7.cpp | 23 void fna(A *obj) { in fna() argument 24 throw obj; in fna() 26 void fnb(B *obj) { in fnb() argument 27 throw obj; in fnb() 29 void fnc(C *obj) { in fnc() argument 30 throw obj; in fnc() 32 void fnd(D *obj) { in fnd() argument 33 throw obj; in fnd() 35 void fne(E *obj) { in fne() argument 36 throw obj; in fne() [all …]
|
D | catch4.cpp | 19 void fna(A *obj) { throw obj; } in fna() argument 20 void fnb(B *obj) { throw obj; } in fnb() argument 21 void fnc(C *obj) { throw obj; } in fnc() argument 22 void fnd(D *obj) { throw obj; } in fnd() argument
|
D | catch4p.cpp | 19 void fna(A *obj) { throw obj; } in fna() argument 20 void fnb(B *obj) { throw obj; } in fnb() argument 21 void fnc(C *obj) { throw obj; } in fnc() argument 22 void fnd(D *obj) { throw obj; } in fnd() argument
|
D | catch8p.cpp | 18 void fna(A *obj) { throw obj; } in fna() argument 19 void fnb(B *obj) { throw obj; } in fnb() argument 20 void fnc(C *obj) { throw obj; } in fnc() argument 21 void fnd(D *obj) { throw obj; } in fnd() argument
|
D | catch8.cpp | 18 void fna(A *obj) { throw obj; } in fna() argument 19 void fnb(B *obj) { throw obj; } in fnb() argument 20 void fnc(C *obj) { throw obj; } in fnc() argument 21 void fnd(D *obj) { throw obj; } in fnd() argument
|
D | catch6.cpp | 21 void fna(A *obj) { throw obj; } in fna() argument 22 void fnb(B *obj) { throw obj; } in fnb() argument 23 void fnc(C *obj) { throw obj; } in fnc() argument 24 void fnd(D *obj) { throw obj; } in fnd() argument 25 void fnaa(AA *obj) { throw obj; } in fnaa() argument 26 void fne(E *obj) { throw obj; } in fne() argument
|
D | catch6p.cpp | 21 void fna(A *obj) { throw obj; } in fna() argument 22 void fnb(B *obj) { throw obj; } in fnb() argument 23 void fnc(C *obj) { throw obj; } in fnc() argument 24 void fnd(D *obj) { throw obj; } in fnd() argument 25 void fnaa(AA *obj) { throw obj; } in fnaa() argument 26 void fne(E *obj) { throw obj; } in fne() argument
|
D | catch3.cpp | 20 void fna(A *obj) { throw obj; } in fna() argument 21 void fnb(B *obj) { throw obj; } in fnb() argument 22 void fnc(C *obj) { throw obj; } in fnc() argument 23 void fnd(D *obj) { throw obj; } in fnd() argument
|
D | catch9.cpp | 19 void fna(A *obj) { throw obj; } in fna() argument 20 void fnb(B *obj) { throw obj; } in fnb() argument 21 void fnc(C *obj) { throw obj; } in fnc() argument 22 void fnd(D *obj) { throw obj; } in fnd() argument
|
D | catch3p.cpp | 19 void fna(A *obj) { throw obj; } in fna() argument 20 void fnb(B *obj) { throw obj; } in fnb() argument 21 void fnc(C *obj) { throw obj; } in fnc() argument 22 void fnd(D *obj) { throw obj; } in fnd() argument
|