/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pdb.py | 18 def run_pdb(self, script, commands): 19 """Run 'script' lines with pdb and the pdb 'commands'.""" 22 f.write(textwrap.dedent(script)) 36 script = """ 66 stdout, stderr = self.run_pdb(script, commands)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pdb.py | 18 def run_pdb(self, script, commands): 19 """Run 'script' lines with pdb and the pdb 'commands'.""" 22 f.write(textwrap.dedent(script)) 36 script = """ 66 stdout, stderr = self.run_pdb(script, commands)
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/ |
libdso-12c.d | 6 #ld: --shared -m crislinux --version-script $srcdir/$subdir/hidedsofns2468 10 # are forced local using a linker script. There should just be the
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-pe/ |
pe-compile.exp | 1 # Expect script for complex PE tests that require a C compiler 84 if ![ld_compile "$CC $CFLAGS -shared" $srcdir/$subdir/vers-script-dll.c tmpdir/vers-script-dll.o] { 96 -Wl,--version-script,$srcdir/$subdir/$testname.ver \ 98 "tmpdir/vers-script-dll.o"] { 115 run_ver_script_test "vers-script-1" 116 run_ver_script_test "vers-script-2" 117 run_ver_script_test "vers-script-3" 118 run_ver_script_test "vers-script-4"
|
/frameworks/rs/ |
rsScriptC.cpp | 50 ScriptC::ScriptC(Context *rsc) : Script(rsc) { 55 mRSC->mHal.funcs.script.invokeFreeChildren(mRSC, this); 56 mRSC->mHal.funcs.script.destroy(mRSC, this); 125 rsc->mHal.funcs.script.setGlobalBind(rsc, this, ct, mSlots[ct].get()); 148 rsc->setError(RS_ERROR_BAD_SCRIPT, "Attempted to run bad script"); 161 ret = rsc->mHal.funcs.script.invokeRoot(rsc, this); 206 if (rsc->mHal.funcs.script.invokeForEachMulti != nullptr) { 207 rsc->mHal.funcs.script.invokeForEachMulti(rsc, this, slot, ains, inLen, 211 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ains[0], aout, 238 rsc->mHal.funcs.script.invokeReduce(rsc, this, slot, ains, inLen, aout, sc) [all...] |
/cts/suite/audio_quality/lib/src/audio/ |
AudioHardware.cpp | 36 android::String8 script("test_description/conf/detect_usb_audio.py"); 43 if (!SimpleScriptExec::runScript(script, param, resultStr)) { 44 LOGE("cannot run script");
|
/development/tools/bugreport/ |
Android.mk | 6 # the script
|
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/ |
Android.mk | 1 # This build script corresponds to a library containing many definitions
|
/external/ImageMagick/www/api/ |
colormap.php | 33 <script async="async" src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" 38 <script> 40 </script> 43 <a class="magick-nav-item " href="../script/binary-releases.php">Download</a> 44 <a class="magick-nav-item " href="../script/command-line-tools.php">Tools</a> 45 <a class="magick-nav-item " href="../script/command-line-options.php">Options</a> 46 <a class="magick-nav-item " href="../script/resources.php">Resources</a> 47 <a class="magick-nav-item " href="../script/api.php">Develop</a> 48 <a class="magick-nav-item " href="../script/search.php">Search</a [all...] |
/external/chromium-libpac/test/js-unittest/ |
dns_fail.js | 1 // This script should be run in an environment where all DNS resolution are
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/ |
__main__.py | 18 * -m: arguments are module names, not script files 38 print("No script specified", file=sys.stderr) 42 script = args[0] 44 # Set the path based on sys.path and the script directory 46 path[0] = os.path.dirname(script)
|
/external/flatbuffers/samples/ |
csharp_sample.sh | 17 # Note: This script runs on Mac and Linux. It requires `mono` to be installed 25 echo Error: This script must be run from inside the $sampledir directory.
|
/external/protobuf/ |
autogen.sh | 3 # Run this script to generate the configure script and other files that will 24 Could not find source code. Make sure you are running this script from the
|
/external/protobuf/util/ |
autogen.sh | 3 # Run this script to generate the configure script and other files that will 24 Could not find source code. Make sure you are running this script from the
|
/external/v8/src/runtime/ |
runtime-liveedit.cc | 18 // For a script finds all SharedFunctionInfo's in the heap that points 19 // to this script. Returns JSArray of SharedFunctionInfo wrapped 28 Handle<Script> script = Handle<Script>(Script::cast(script_value->value())); local 38 if (shared->script() != *script) continue; 56 // For a script calculates compilation information about all its functions. 57 // The script source is explicitly specified by the second argument 142 Script* script = Script::cast(JSValue::cast(*script_object)->value()); local [all...] |
/frameworks/base/packages/services/PacProcessor/src/com/android/pacprocessor/ |
PacService.java | 95 public void setPacFile(String script) throws RemoteException { 100 mPacNative.setCurrentProxyScript(script);
|
/frameworks/minikin/libs/minikin/ |
FontLanguage.cpp | 113 // Returns true if buffer is valid for script code. The length of buffer must be 4. 146 // Possibly script code. 178 uint32_t script) { 199 // If no emoji subtag was provided, resolve the emoji style from script code. 200 if (script == SCRIPT_TAG('Z', 's', 'y', 'e')) { 202 } else if (script == SCRIPT_TAG('Z', 's', 'y', 'm')) { 210 uint8_t FontLanguage::scriptToSubScriptBits(uint32_t script) { 212 switch (script) { 280 bool FontLanguage::supportsHbScript(hb_script_t script) const { 282 "The Minikin script and HarfBuzz hb_script_t have different encodings.") [all...] |
/prebuilts/go/darwin-x86/src/html/template/ |
html_test.go | 62 {`Foo<script type="text/javascript">alert(1337)</script>Bar`, "FooBar"}, 65 {`<script>foo()</script>`, ``},
|
js_test.go | 145 {[]string{"<!--", "</script>", "-->"}, `["\u003c!--","\u003c/script\u003e","--\u003e"]`}, 150 {"</script", `"\u003c/script"`}, 190 {"</script>", `\x3c\/script\x3e`}, 194 // "The text in style, script, title, and textarea elements 198 // to different interpretation of a </script> sequence otherwise 200 // allow regular text content to be interpreted as script 201 // allowing script execution via a combination of a JS strin [all...] |
/prebuilts/go/darwin-x86/test/dwarf/dwarf.dir/ |
main.go | 4 // To run this test you must use the ./run shell script.
|
/prebuilts/go/linux-x86/src/html/template/ |
html_test.go | 62 {`Foo<script type="text/javascript">alert(1337)</script>Bar`, "FooBar"}, 65 {`<script>foo()</script>`, ``},
|
js_test.go | 145 {[]string{"<!--", "</script>", "-->"}, `["\u003c!--","\u003c/script\u003e","--\u003e"]`}, 150 {"</script", `"\u003c/script"`}, 190 {"</script>", `\x3c\/script\x3e`}, 194 // "The text in style, script, title, and textarea elements 198 // to different interpretation of a </script> sequence otherwise 200 // allow regular text content to be interpreted as script 201 // allowing script execution via a combination of a JS strin [all...] |
/prebuilts/go/linux-x86/test/dwarf/dwarf.dir/ |
main.go | 4 // To run this test you must use the ./run shell script.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-aarch64/ |
relasz.d | 5 # using a non-default linker script that merges .rela.dyn and .rela.plt
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/ |
link-hcs12.d | 4 #ld: -m m68hc12elf --script $srcdir/$subdir/far-hc12.ld
|