Searched defs:sys (Results 1 - 25 of 3886) sorted by relevance

1234567891011>>

/external/autotest/server/site_tests/provision_CheetsUpdate/lib/
H A D__init__.py17 import sys namespace
18 if sys.version_info < (3, 0):
19 sys.stdout.write("Sorry, requires Python 3.x\n")
20 sys.exit(1)
/external/llvm/test/BugPoint/
H A Dcompile-custom.ll.py3 import sys namespace
8 print("Error: " + ' '.join(sys.argv[1:]))
10 sys.exit(1)
/external/python/cpython3/Lib/test/subprocessdata/
H A Dinput_reader.py3 import sys namespace
6 for line in sys.stdin:
H A Dqcat.py3 import sys namespace
6 for line in sys.stdin:
7 sys.stdout.write(line)
/external/python/cpython3/Lib/xml/parsers/
H A Dexpat.py2 import sys namespace
7 sys.modules['xml.parsers.expat.model'] = model
8 sys.modules['xml.parsers.expat.errors'] = errors
/external/python/cpython3/Tools/freeze/test/
H A Dok.py1 import sys namespace
2 sys.exit(0)
/external/v8/tools/sanitizers/
H A Dsanitize_pcs.py8 import sys; namespace
10 for line in sys.stdin:
/external/fonttools/Tools/
H A Dpyftinspect3 import sys namespace
6 inspect.main(sys.argv[1:])
H A Dpyftmerge3 import sys namespace
6 merge.main(sys.argv[1:])
H A Dpyftsubset3 import sys namespace
6 subset.main(sys.argv[1:])
H A Dttx3 import sys namespace
6 ttx.main(sys.argv[1:])
/external/harfbuzz_ng/test/shaping/
H A Dhb-diff4 import sys, os namespace
6 if len (sys.argv) < 2:
7 print "usage: %s FILES..." % sys.argv[0]
8 sys.exit (1)
10 ZipDiffer.diff_files (FileHelpers.open_file_or_stdin (f) for f in sys.argv[1:])
/external/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/
H A DOneTest3 import sys namespace
5 if len(sys.argv) != 2:
8 if sys.argv[1] == "--gtest_list_tests":
17 sys.exit(0)
18 elif not sys.argv[1].startswith("--gtest_filter="):
19 raise ValueError("unexpected argument: %r" % (sys.argv[1]))
21 test_name = sys.argv[1].split('=',1)[1]
25 sys.exit(0)
29 sys.exit(1)
34 sys
[all...]
/external/llvm/utils/lit/tests/Inputs/googletest-upstream-format/DummySubDir/
H A DOneTest3 import sys namespace
5 if len(sys.argv) != 2:
8 if sys.argv[1] == "--gtest_list_tests":
18 sys.exit(0)
19 elif not sys.argv[1].startswith("--gtest_filter="):
20 raise ValueError("unexpected argument: %r" % (sys.argv[1]))
22 test_name = sys.argv[1].split('=',1)[1]
27 sys.exit(0)
31 sys.exit(1)
36 sys
[all...]
/external/llvm/utils/lit/tests/Inputs/shtest-timeout/
H A Dshort.py4 import sys namespace
/external/ply/ply/test/pkg_test1/
H A D__init__.py4 import sys namespace
5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
/external/ply/ply/test/pkg_test2/
H A D__init__.py4 import sys namespace
5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
/external/ply/ply/test/pkg_test3/
H A D__init__.py4 import sys namespace
5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
/external/ply/ply/test/pkg_test5/
H A D__init__.py4 import sys namespace
5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
/external/ply/ply/test/pkg_test6/
H A D__init__.py4 import sys namespace
5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
/external/python/cpython2/Demo/tkinter/guido/
H A Dimageview.py2 import sys namespace
5 filename = sys.argv[1]
/external/python/cpython2/Lib/distutils/
H A D__init__.py11 import sys namespace
13 __version__ = sys.version[:sys.version.index(' ')]
/external/python/cpython2/Lib/lib2to3/
H A D__main__.py1 import sys namespace
4 sys.exit(main("lib2to3.fixes"))
/external/python/cpython2/Lib/test/crashers/
H A Drecursion_limit_too_high.py7 # The point of this example is to show that sys.setrecursionlimit() is a
13 import sys namespace
14 if 'recursion_limit_too_high' in sys.modules:
15 del sys.modules['recursion_limit_too_high']
H A Drecursive_call.py9 import sys namespace
11 sys.setrecursionlimit(1 << 30)

Completed in 442 milliseconds

1234567891011>>