Home
last modified time | relevance | path

Searched refs:scriptname (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython2/Lib/
DCGIHTTPServer.py133 scriptname = dir + '/' + script
134 scriptfile = self.translate_path(scriptname)
136 self.send_error(404, "No such CGI script (%r)" % scriptname)
140 scriptname)
142 ispy = self.is_python(scriptname)
146 scriptname)
150 scriptname)
165 env['SCRIPT_NAME'] = scriptname
/external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
Dkvm.sh14 scriptname=$0
21 cd `dirname $scriptname`/../../../../../
46 echo "Usage: $scriptname optional arguments:"
315 echo $scriptname $args
317 echo $scriptname $args >> $resdir/$ds/log
/external/llvm-project/llvm/examples/Kaleidoscope/MCJIT/complete/
Dsplit-lib.py7 def __init__(self, scriptname, outputname): argument
8 self.shfile = open(scriptname, 'w')
Dgenk-timing.py10 def __init__(self, scriptname, outputname): argument
12 self.shfile = open(scriptname, 'w')
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dsplit-lib.py5 def __init__(self, scriptname, outputname): argument
6 self.shfile = open(scriptname, 'w')
Dgenk-timing.py8 def __init__(self, scriptname, outputname): argument
10 self.shfile = open(scriptname, 'w')
/external/llvm-project/llvm/examples/Kaleidoscope/MCJIT/cached/
Dsplit-lib.py7 def __init__(self, scriptname, outputname): argument
8 self.shfile = open(scriptname, 'w')
Dgenk-timing.py10 def __init__(self, scriptname, outputname): argument
12 self.shfile = open(scriptname, 'w')
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dsplit-lib.py5 def __init__(self, scriptname, outputname): argument
6 self.shfile = open(scriptname, 'w')
Dgenk-timing.py8 def __init__(self, scriptname, outputname): argument
10 self.shfile = open(scriptname, 'w')
/external/python/cpython3/Lib/http/
Dserver.py1062 scriptname = dir + '/' + script
1063 scriptfile = self.translate_path(scriptname)
1067 "No such CGI script (%r)" % scriptname)
1072 "CGI script is not a plain file (%r)" % scriptname)
1074 ispy = self.is_python(scriptname)
1079 "CGI script is not executable (%r)" % scriptname)
1094 env['SCRIPT_NAME'] = scriptname
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dgenk-timing.py8 def __init__(self, scriptname, outputname): argument
10 self.shfile = open(scriptname, 'w')
/external/llvm-project/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dgenk-timing.py10 def __init__(self, scriptname, outputname): argument
12 self.shfile = open(scriptname, 'w')
/external/python/cpython2/PC/bdist_wininst/
Dinstall.c2441 char *scriptname; in Run_RemoveScript() local
2450 scriptname = strchr(dllname, ']'); in Run_RemoveScript()
2451 if (!scriptname) in Run_RemoveScript()
2453 *scriptname++ = '\0'; in Run_RemoveScript()
2456 if (strcmp(lastscript, scriptname)) { in Run_RemoveScript()
2460 argv[0] = scriptname; in Run_RemoveScript()
2462 if (0 != run_installscript(scriptname, 2, argv, &buffer)) in Run_RemoveScript()
2469 strcpy(lastscript, scriptname); in Run_RemoveScript()
/external/python/cpython3/PC/bdist_wininst/
Dinstall.c2470 char *scriptname; in Run_RemoveScript() local
2479 scriptname = strchr(dllname, ']'); in Run_RemoveScript()
2480 if (!scriptname) in Run_RemoveScript()
2482 *scriptname++ = '\0'; in Run_RemoveScript()
2485 if (strcmp(lastscript, scriptname)) { in Run_RemoveScript()
2489 argv[0] = scriptname; in Run_RemoveScript()
2491 if (0 != run_installscript(scriptname, 2, argv, &buffer)) in Run_RemoveScript()
2498 strcpy(lastscript, scriptname); in Run_RemoveScript()
/external/python/cpython3/Doc/howto/
Dlogging-cookbook.rst2615 scriptname = os.path.basename(__file__)
2616 parser = argparse.ArgumentParser(scriptname)