Home
last modified time | relevance | path

Searched refs:G (Results 1 – 25 of 81) sorted by relevance

1234

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/
DF.pass.cpp43 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 …]
Dcopy.fail.cpp21 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 …]
Dmove.pass.cpp21 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/
Ddetach.pass.cpp21 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()
Djoinable.pass.cpp21 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()
Dnative_handle.pass.cpp21 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()
Djoin.pass.cpp21 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()
Dswap.pass.cpp21 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()
Dget_id.pass.cpp21 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/
Ddtor.pass.cpp21 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/
Dmove.pass.cpp21 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 …]
Dcopy.fail.cpp21 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/
Dswap.pass.cpp21 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/
Djquery.js12G=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
13G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E… argument
20G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[a… class
21G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,func… argument
22G[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/
Deval.pass.cpp25 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/
Deval.pass.cpp33 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()
Deval_param.pass.cpp33 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/
Dunderlying_type.pass.cpp33 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/
Deval_param.pass.cpp53 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()
Deval.pass.cpp53 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/
Dhas_nothrow_constructor.cpp38 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/
Dhas_nothrow_constructor.cpp38 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/
Deval.pass.cpp34 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/
Deval.pass.cpp34 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/
Deval.pass.cpp35 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()

1234