Home
last modified time | relevance | path

Searched refs:pass (Results 1 – 25 of 155) sorted by relevance

1234567

/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Drender.rs188 SgRenderPass *pass = (SgRenderPass*)rsGetElementAt(gRenderPasses, i);
189 if (rsIsObject(pass->color_target)) {
190 rsgBindColorTarget(pass->color_target, 0);
192 if (rsIsObject(pass->depth_target)) {
193 rsgBindDepthTarget(pass->depth_target);
195 if (!rsIsObject(pass->color_target) &&
196 !rsIsObject(pass->depth_target)) {
199 updateActiveCamera(pass->camera);
200 if (pass->should_clear_color) {
201 rsgClearColor(pass->clear_color.x, pass->clear_color.y,
[all …]
/frameworks/native/opengl/tests/hwc/
DhwcStress.cpp244 unsigned int pass; in main() local
390 for (pass = startPass; pass <= endPass; pass++) { in main()
401 if ((pass == startPass) in main()
402 || ((pass / passesPerGroup) != ((pass - 1) / passesPerGroup))) { in main()
403 initFrames(pass / passesPerGroup); in main()
406 testPrintI("==== Starting pass: %u", pass); in main()
410 srand48(pass); in main()
510 testPrintI("==== Completed pass: %u", pass); in main()
523 testPrintI("Successfully completed %u passes", pass - startPass); in main()
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
DFullscreenBlur.java84 RenderPass pass = new RenderPass(); in addPass() local
85 pass.setColorTarget(color); in addPass()
86 pass.setDepthTarget(depth); in addPass()
87 pass.setShouldClearColor(false); in addPass()
88 pass.setShouldClearDepth(false); in addPass()
89 pass.setCamera(cam); in addPass()
90 scene.appendRenderPass(pass); in addPass()
91 return pass; in addPass()
/frameworks/base/docs/html/guide/topics/ui/
Dhow-android-draws.jd37 Drawing the layout is a two pass process: a measure pass and a layout pass.
38 The measuring pass is implemented in {@link android.view.View#measure(int, int)}
41 during the recursion. At the end of the measure pass, every
43 its measurements. The second pass happens in
45 this pass each parent is responsible for positioning all of its children
46 using the sizes computed in the measure pass.
58 that at the end of the measure pass, all parents accept all of their
68 the rules on the second pass).
82 The measure pass uses two classes to communicate dimensions. The
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
Dcopy_test.rs19 void sendResult(bool pass) {
20 if (pass) {
Dtest_root.rs13 bool pass;
DUT_copy_test.java26 boolean pass = true; field in UT_copy_test
Dshared.rsh7 bool pass;
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
Dcopy_test.rs19 void sendResult(bool pass) {
20 if (pass) {
Dtest_root.rs13 bool pass;
DUT_copy_test.java26 boolean pass = true; field in UT_copy_test
Dshared.rsh7 bool pass;
/frameworks/compile/slang/tests/F_kernel_16/
Dstderr.txt.expect1 kernel_16.rs:5:30: error: Compute kernel root() targeting SDK levels 11-16 may not use pass-by-valu…
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
Dtest_root.rs13 bool pass;
Dshared.rsh7 bool pass;
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
Dtest_root.rs13 bool pass;
Dshared.rsh7 bool pass;
/frameworks/base/docs/html/guide/faq/
Dframework.jd10 <li><a href="#3">How do I pass complicated data structures
15 there any way for the Service to pass a message back to the Activity?</a></li>
52 <h2>How do I pass data between Activities/Services within a single
91 keys. When an activity wants to pass an object to another activity, it
139 Service to pass a message back to the Activity?</h2>
/frameworks/volley/
Dproject.properties13 # Make sure to pass a valid value to renderscript
/frameworks/av/media/libstagefright/matroska/
DMatroskaExtractor.cpp552 for (int32_t pass = 0; pass < 2; ++pass) { in read() local
570 if (pass == 1) { in read()
594 if (pass == 0) { in read()
/frameworks/av/media/libstagefright/rtsp/
DARTSPConnection.h47 AString *user, AString *pass);
/frameworks/base/media/mca/samples/CameraEffectsRecordingSample/res/raw/
Dcameraeffectsrecordingsample.graph56 // Also pass it to an encoder
/frameworks/base/docs/html/guide/topics/sensors/
Dsensors_motion.jd214 the accelerometer data. This can be achieved by applying a high-pass filter. Conversely, a low-pass
221 // where t is the low-pass filter's time-constant and
226 // Isolate the force of gravity with the low-pass filter.
231 // Remove the gravity contribution with the high-pass filter.
239 The code sample above uses a simple filter constant (alpha) to create a low-pass filter. This filter
266 low-pass and high-pass filters to eliminate gravitational forces and reduce noise.</p>
/frameworks/rs/scriptc/
Drs_core.rsh131 * @param usrData The user definied params to pass to the root script. May be
160 * @param usrData The user definied params to pass to the root script. May be
/frameworks/base/docs/html/guide/topics/ui/notifiers/
Dtoasts.jd81 in XML or in your application code, and pass the root {@link android.view.View} object
136 {@link android.widget.Toast#setView(View)} and pass it the inflated layout.

1234567