/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/ |
D | F.pass.cpp | 43 class G class 50 G() : alive_(1) {++n_alive;} in G() function in G 51 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 52 ~G() {alive_ = 0; --n_alive;} in ~G() 71 int G::n_alive = 0; 72 bool G::op_run = false; 112 assert(G::n_alive == 0); in main() 113 assert(!G::op_run); in main() 114 std::thread t((G())); in main() 116 assert(G::n_alive == 0); in main() [all …]
|
D | copy.fail.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 49 int G::n_alive = 0; 50 bool G::op_run = false; 55 assert(G::n_alive == 0); in main() 56 assert(!G::op_run); in main() 57 std::thread t0(G(), 5, 5.5); in main() 63 assert(G::n_alive == 0); in main() [all …]
|
D | move.pass.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 49 int G::n_alive = 0; 50 bool G::op_run = false; 56 assert(G::n_alive == 0); in main() 57 assert(!G::op_run); in main() 58 std::thread t0(G(), 5, 5.5); in main() 64 assert(G::n_alive == 0); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/ |
D | detach.pass.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 40 int G::n_alive = 0; 41 bool G::op_run = false; 46 std::thread t0((G())); in main() 51 assert(G::op_run); in main() 52 assert(G::n_alive == 0); in main()
|
D | joinable.pass.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 40 int G::n_alive = 0; 41 bool G::op_run = false; 46 std::thread t0((G())); in main()
|
D | native_handle.pass.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 40 int G::n_alive = 0; 41 bool G::op_run = false; 46 std::thread t0((G())); in main()
|
D | join.pass.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 40 int G::n_alive = 0; 41 bool G::op_run = false; 46 std::thread t0((G())); in main()
|
D | swap.pass.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 40 int G::n_alive = 0; 41 bool G::op_run = false; 46 std::thread t0((G())); in main()
|
D | get_id.pass.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 40 int G::n_alive = 0; 41 bool G::op_run = false; 46 std::thread t0((G())); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.destr/ |
D | dtor.pass.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 40 int G::n_alive = 0; 41 bool G::op_run = false; 52 assert(G::n_alive == 0); in main() 53 assert(!G::op_run); in main() 54 std::thread t((G())); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.assign/ |
D | move.pass.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 49 int G::n_alive = 0; 50 bool G::op_run = false; 62 assert(G::n_alive == 0); in main() 63 assert(!G::op_run); in main() 64 std::thread t0(G(), 5, 5.5); in main() 71 assert(G::n_alive == 0); in main() [all …]
|
D | copy.fail.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 41 int G::n_alive = 0; 42 bool G::op_run = false; 47 std::thread t0(G()); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.algorithm/ |
D | swap.pass.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G 30 ~G() {alive_ = 0; --n_alive;} in ~G() 40 int G::n_alive = 0; 41 bool G::op_run = false; 46 std::thread t0((G())); in main()
|
/ndk/docs/Additional_library_docs/renderscript/ |
D | jquery.js | 12 …G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]… argument 13 …G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E… argument 20 …G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[a… class 21 …G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,func… argument 22 …G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}el… argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/ |
D | eval.pass.cpp | 25 typedef std::minstd_rand G; in main() typedef 26 G g; in main() 42 typedef std::minstd_rand G; in main() typedef 43 G g; in main() 60 typedef std::minstd_rand G; in main() typedef 61 G g; in main() 78 typedef std::minstd_rand G; in main() typedef 79 G g; in main() 96 typedef std::minstd_rand G; in main() typedef 97 G g; in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/ |
D | eval.pass.cpp | 33 typedef std::mt19937 G; in main() typedef 34 G g; in main() 49 typedef std::mt19937 G; in main() typedef 50 G g; in main() 65 typedef std::mt19937 G; in main() typedef 66 G g; in main()
|
D | eval_param.pass.cpp | 33 typedef std::mt19937 G; in main() typedef 34 G g; in main() 50 typedef std::mt19937 G; in main() typedef 51 G g; in main() 67 typedef std::mt19937 G; in main() typedef 68 G g; in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.other/ |
D | underlying_type.pass.cpp | 33 enum G : char { }; in main() enum 35 static_assert((std::is_same<std::underlying_type<G>::type, char>::value), in main() 38 static_assert((std::is_same<std::underlying_type_t<G>, char>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/ |
D | eval_param.pass.cpp | 53 typedef std::mt19937 G; in main() typedef 54 G g; in main() 72 typedef std::mt19937 G; in main() typedef 73 G g; in main() 91 typedef std::mt19937 G; in main() typedef 92 G g; in main()
|
D | eval.pass.cpp | 53 typedef std::mt19937 G; in main() typedef 54 G g; in main() 71 typedef std::mt19937 G; in main() typedef 72 G g; in main() 89 typedef std::mt19937 G; in main() typedef 90 G g; in main()
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
D | has_nothrow_constructor.cpp | 38 struct G struct 40 G(const G&) throw(int) { throw int(); } in G() function 103 assert (NTEST (G)); in main()
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | has_nothrow_constructor.cpp | 38 struct G struct 40 G(const G&) throw(int) { throw int(); } in G() function 103 assert (NTEST (G)); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/ |
D | eval.pass.cpp | 34 typedef std::mt19937_64 G; in main() typedef 35 G g; in main() 74 typedef std::mt19937 G; in main() typedef 75 G g; in main() 114 typedef std::mt19937 G; in main() typedef 115 G g; in main() 154 typedef std::mt19937 G; in main() typedef 155 G g; in main() 200 typedef std::mt19937 G; in main() typedef 201 G g; in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/ |
D | eval.pass.cpp | 34 typedef std::minstd_rand0 G; in main() typedef 35 G g; in main() 75 typedef std::minstd_rand G; in main() typedef 76 G g; in main() 116 typedef std::mt19937 G; in main() typedef 117 G g; in main() 157 typedef std::mt19937_64 G; in main() typedef 158 G g; in main() 198 typedef std::ranlux24_base G; in main() typedef 199 G g; in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/ |
D | eval.pass.cpp | 35 typedef std::minstd_rand G; in main() typedef 36 G g; in main() 71 typedef std::minstd_rand G; in main() typedef 72 G g; in main() 107 typedef std::minstd_rand G; in main() typedef 108 G g; in main()
|