/frameworks/rs/ |
rsScriptGroup2.h | 17 Closure** closures, size_t numClosures) : 18 ScriptGroupBase(rsc), mClosures(closures, closures + numClosures),
|
rsScriptGroup2.cpp | 24 RsClosure* closures, size_t numClosures) { 26 (Closure**)closures, numClosures);
|
/prebuilts/go/darwin-x86/test/ |
func6.go | 7 // Test closures in if conditions.
|
closure.go | 7 // Test the behavior of closures.
|
escape4.go | 23 // Escape analysis used to miss inlined code in closures.
|
recover.go | 138 // Repeat test1 with closures instead of standard function. 196 // Check that closures can set output arguments. 208 // Check that closures can set output arguments.
|
/prebuilts/go/linux-x86/test/ |
func6.go | 7 // Test closures in if conditions.
|
closure.go | 7 // Test the behavior of closures.
|
escape4.go | 23 // Escape analysis used to miss inlined code in closures.
|
recover.go | 138 // Repeat test1 with closures instead of standard function. 196 // Check that closures can set output arguments. 208 // Check that closures can set output arguments.
|
/external/icu/icu4c/source/i18n/unicode/ |
choicfmt.h | 125 * <code>Sun..Sat</code>. No closures array is given; this is the same as 126 * specifying all closures to be <code>FALSE</code>.</p> 209 * @param closures Array of booleans specifying whether each 214 * @param count Size of 'limits', 'closures', and 'formats' arrays 218 const UBool* closures, 319 * @param closures Array of limit booleans 325 const UBool* closures, 497 const UBool* closures,
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug243.go | 11 // Issue 481: closures and var declarations
|
issue5607.go | 8 // uses initializers of blank variables inside closures.
|
issue10353.go | 7 // issue 10253: cmd/gc: incorrect escape analysis of closures
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug243.go | 11 // Issue 481: closures and var declarations
|
issue5607.go | 8 // uses initializers of blank variables inside closures.
|
issue10353.go | 7 // issue 10253: cmd/gc: incorrect escape analysis of closures
|
/external/icu/icu4c/source/i18n/ |
choicfmt.cpp | 101 const UBool* closures, 107 setChoices(limits, closures, formats, cnt, constructorErrorCode); 267 const UBool* closures, 272 setChoices(limits, closures, formats, cnt, errorCode); 277 const UBool* closures, 304 if (closures != NULL && closures[i]) { 354 // Gets the closures array.
|
/external/icu/icu4c/source/test/intltest/ |
tchcfmt.cpp | 472 UBool closures[] = { F, F, T, T, F, F }; local 476 ChoiceFormat fmt1(limits, closures, fmts, 6); 509 errln("FAIL: couldn't get limits or closures"); 519 if((closures2[i]!=0) != (closures[i]!=0)) { 520 errln("FAIL: closure #%d = %s, should be %s\n", i, closures2[i]?"T":"F", closures[i]?"T":"F");
|
/frameworks/rs/cpu_ref/ |
rsCpuScriptGroup2.cpp | 39 const List<CPUClosure*>& closures = *(List<CPUClosure*>*)kinfo->usr; local 47 for (CPUClosure* cpuClosure : closures) { 85 mutable_kinfo->usr = &closures;
|
/frameworks/base/rs/java/android/renderscript/ |
ScriptGroup.java | 90 * An opaque class for closures 409 ScriptGroup(RenderScript rs, String name, List<Closure> closures, 413 mClosures = closures; 417 long[] closureIDs = new long[closures.size()]; 419 closureIDs[i] = closures.get(i).getID(rs); 891 * A script group is created using closures (see class {@link Closure}). 900 * Closures are created using the {@link #addKernel} or {@link #addInvoke} 902 * When a closure is created, futures from previously created closures 904 * External script group inputs can be used as inputs to individual closures as well. 909 * Closures in a script group can be evaluated in any order as long as th [all...] |
/frameworks/rs/support/java/src/android/support/v8/renderscript/ |
ScriptGroup.java | 99 * An opaque class for closures 403 ScriptGroup(RenderScript rs, String name, List<Closure> closures, 411 mClosures = closures; 415 long[] closureIDs = new long[closures.size()]; 417 closureIDs[i] = closures.get(i).getID(rs); [all...] |
/hardware/interfaces/renderscript/1.0/vts/functional/ |
VtsScriptTests.cpp | 481 hidl_vec<Closure> closures = {closure1, closure2}; local 482 ScriptGroup2 scriptGroup2 = context->scriptGroup2Create(name, cacheDir, closures); 541 hidl_vec<Closure> closures = {closure}; local 542 ScriptGroup2 scriptGroup2 = context->scriptGroup2Create(name, cacheDir, closures);
|
/external/v8/src/js/ |
promise.js | 386 // so we don't need the closures to protect against accidentally 634 // resolve/reject closures, and allows them to later resolve and reject any 635 // promise without having to hold on to those closures forever.
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
closure.go | 11 // function literals aka closures 150 // It is not as simple as it ought to be, because we typecheck nested closures 476 // the struct is unnamed so that closures in multiple packages with the
|