Lines Matching refs:mCtx

31     ListActivity mCtx;
34 mCtx = ctx;
60 unitTests.add(new UT_primitives(this, mRes, mCtx));
61 unitTests.add(new UT_constant(this, mRes, mCtx));
62 unitTests.add(new UT_vector(this, mRes, mCtx));
63 unitTests.add(new UT_unsigned(this, mRes, mCtx));
64 unitTests.add(new UT_array_init(this, mRes, mCtx));
65 unitTests.add(new UT_array_alloc(this, mRes, mCtx));
66 unitTests.add(new UT_kernel(this, mRes, mCtx));
67 unitTests.add(new UT_kernel_struct(this, mRes, mCtx));
68 unitTests.add(new UT_kernel2d(this, mRes, mCtx));
69 unitTests.add(new UT_kernel3d(this, mRes, mCtx));
70 unitTests.add(new UT_kernel2d_oldstyle(this, mRes, mCtx));
71 unitTests.add(new UT_ctxt_default(this, mRes, mCtx));
72 unitTests.add(new UT_bug_char(this, mRes, mCtx));
73 unitTests.add(new UT_clamp(this, mRes, mCtx));
74 unitTests.add(new UT_clamp_relaxed(this, mRes, mCtx));
75 unitTests.add(new UT_convert(this, mRes, mCtx));
76 unitTests.add(new UT_convert_relaxed(this, mRes, mCtx));
77 unitTests.add(new UT_copy_test(this, mRes, mCtx));
78 unitTests.add(new UT_rsdebug(this, mRes, mCtx));
79 unitTests.add(new UT_rstime(this, mRes, mCtx));
80 unitTests.add(new UT_rstypes(this, mRes, mCtx));
81 unitTests.add(new UT_alloc(this, mRes, mCtx));
82 unitTests.add(new UT_check_dims(this, mRes, mCtx));
83 unitTests.add(new UT_static_globals(this, mRes, mCtx));
84 unitTests.add(new UT_refcount(this, mRes, mCtx));
85 unitTests.add(new UT_foreach(this, mRes, mCtx));
86 unitTests.add(new UT_foreach_bounds(this, mRes, mCtx));
87 unitTests.add(new UT_noroot(this, mRes, mCtx));
88 unitTests.add(new UT_single_source_alloc(this, mRes, mCtx));
89 unitTests.add(new UT_single_source_script(this, mRes, mCtx));
90 unitTests.add(new UT_single_source_ref_count(this, mRes, mCtx));
91 unitTests.add(new UT_script_group2_pointwise(this, mRes, mCtx));
92 unitTests.add(new UT_script_group2_gatherscatter(this, mRes, mCtx));
93 unitTests.add(new UT_script_group2_nochain(this, mRes, mCtx));
94 unitTests.add(new UT_script_group2_float(this, mRes, mCtx));
95 unitTests.add(new UT_atomic(this, mRes, mCtx));
96 unitTests.add(new UT_struct(this, mRes, mCtx));
97 unitTests.add(new UT_math(this, mRes, mCtx));
98 unitTests.add(new UT_math_conformance(this, mRes, mCtx));
99 unitTests.add(new UT_math_agree(this, mRes, mCtx));
100 unitTests.add(new UT_fp16(this, mRes, mCtx));
101 unitTests.add(new UT_math_fp16(this, mRes, mCtx));
102 unitTests.add(new UT_fp16_globals(this, mRes, mCtx));
103 unitTests.add(new UT_min(this, mRes, mCtx));
104 unitTests.add(new UT_int4(this, mRes, mCtx));
105 unitTests.add(new UT_element(this, mRes, mCtx));
106 unitTests.add(new UT_sampler(this, mRes, mCtx));
107 /*unitTests.add(new UT_program_store(this, mRes, mCtx));
108 unitTests.add(new UT_program_raster(this, mRes, mCtx));
109 unitTests.add(new UT_mesh(this, mRes, mCtx));*/
110 unitTests.add(new UT_foreach_multi(this, mRes, mCtx));
111 unitTests.add(new UT_fp_mad(this, mRes, mCtx));
112 unitTests.add(new UT_reduce(this, mRes, mCtx));
113 unitTests.add(new UT_reduce_backward(this, mRes, mCtx));
114 unitTests.add(new UT_small_struct(this, mRes, mCtx));
140 testAdapter = new ArrayAdapter<UnitTest>(mCtx, android.R.layout.simple_list_item_1, unitTests);
141 mCtx.setListAdapter(testAdapter);
157 mCtx.runOnUiThread(new Runnable() {