HomeSort by relevance Sort by last modified time
    Searched refs:python (Results 101 - 125 of 557) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/python/cpython2/PC/VS9.0/
build_ssl.bat 7 set HOST_PYTHON=python.exe
idle.bat 7 set exe=python
  /external/python/cpython2/PCbuild/
idle.bat 7 set exe=python
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_popen.py 1 #! /usr/bin/env python
13 # python -c "import sys;print sys.argv" {rest_of_commandline}
14 # This results in Python being spawned and printing the sys.argv list.
16 python = sys.executable variable
20 cmd = '%s -c "import sys;print sys.argv" %s' % (python, cmdline)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_popen.py 1 #! /usr/bin/env python
13 # python -c "import sys;print sys.argv" {rest_of_commandline}
14 # This results in Python being spawned and printing the sys.argv list.
16 python = sys.executable variable
20 cmd = '%s -c "import sys;print sys.argv" %s' % (python, cmdline)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_popen.py 1 #! /usr/bin/env python
13 # python -c "import sys;print sys.argv" {rest_of_commandline}
14 # This results in Python being spawned and printing the sys.argv list.
16 python = sys.executable variable
20 cmd = '%s -c "import sys;print sys.argv" %s' % (python, cmdline)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_popen.py 1 #! /usr/bin/env python
13 # python -c "import sys;print sys.argv" {rest_of_commandline}
14 # This results in Python being spawned and printing the sys.argv list.
16 python = sys.executable variable
20 cmd = '%s -c "import sys;print sys.argv" %s' % (python, cmdline)
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3-sources.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3-sources.jar 
  /external/autotest/contrib/
show_offload_failures 27 GSURI=$(cd .. ; python -c "$GET_GSURI")
  /external/flatbuffers/tests/
generate_code.sh 17 ../flatc --cpp --java --csharp --go --binary --python --js --php --grpc --gen-mutable --gen-object-api --no-includes monster_test.fbs monsterdata_test.json
18 ../flatc --cpp --java --csharp --go --binary --python --js --php --gen-mutable -o namespace_test namespace_test/namespace_test1.fbs namespace_test/namespace_test2.fbs
  /external/libnl/
configure.ac 136 python/Makefile
137 python/setup.py
138 python/doc/Makefile
139 python/examples/Makefile
140 python/netlink/Makefile
141 python/netlink/genl/Makefile
142 python/netlink/route/Makefile
143 python/tests/Makefile
  /external/protobuf/python/google/protobuf/pyext/
descriptor_database.h 34 #include <Python.h>
40 namespace python { namespace in namespace:google::protobuf
61 // Python objects are not required to implement this method.
67 // The python object that implements the database. The reference is owned.
71 } // namespace python
  /external/selinux/python/sepolgen/src/sepolgen/
Makefile 0 PYTHON ?= python
2 PYTHONLIBDIR ?= $(shell $(PYTHON) -c "from distutils.sysconfig import *; print(get_python_lib(1))")
  /external/selinux/python/sepolgen/tests/
Makefile 0 PYTHON ?= python
14 $(PYTHON) run-tests.py
  /external/webrtc/tools/valgrind-webrtc/
webrtc_tests.sh 19 # possible to execute the Python scripts properly.
107 PYTHONPATH=$THISDIR/../python/google:$CHROME_VALGRIND_SCRIPTS python \
  /system/extras/tests/bootloader/
Android.mk 3 # Build a module that has all of the python files as its LOCAL_PICKUP_FILES.
4 # Since no action needs to be taken to compile the python source, just
  /test/vts-testcase/hal/treble/hidl_shim/
VtsTrebleHidlShimTest.py 1 #!/usr/bin/env python
23 from vts.utils.python.common import vintf_utils
24 from vts.utils.python.controllers import android_device
25 from vts.utils.python.file import target_file_utils
26 from vts.utils.python.os import path_utils
  /test/vts-testcase/kernel/api/proc/
ProcRemoveUidRangeTest.py 19 from vts.utils.python.file import target_file_utils
  /test/vts-testcase/kernel/api/selinux/
KernelSelinuxFileTestBase.py 1 #!/usr/bin/env python
20 from vts.utils.python.file import target_file_utils
SelinuxCheckReqProtTest.py 17 from vts.utils.python.file import target_file_utils
  /external/selinux/python/sepolicy/
Makefile 0 PYTHON ?= python
19 all: python-build
21 python-build:
22 $(PYTHON) setup.py build
25 $(PYTHON) setup.py clean
32 @$(PYTHON) test_sepolicy.py -v
35 $(PYTHON) setup.py install `test -n "$(DESTDIR)" && echo --root $(DESTDIR)`
  /test/vts/utils/python/coverage/
coverage_report_test.py 1 #!/usr/bin/env python
21 from vts.utils.python.coverage import gcno_parser
22 from vts.utils.python.coverage import gcda_parser
23 from vts.utils.python.coverage import coverage_report
27 """Unit tests for CoverageReport of vts.utils.python.coverage.
  /external/python/cpython2/Lib/test/
test_xpickle.py 5 # previous version of Python by bouncing pickled objects through Python 2.4
6 # and Python 2.5 running this file.
22 # "provides" a pickletester module for older versions of Python that may be
60 """Check whether the given name is a valid Python binary and has
66 name: short string name of a Python binary such as "python2.4".
79 python = None variable in class:AbstractCompatTests
83 self.assertTrue(self.python)
87 if not have_python_version(self.python):
88 self.skipTest('%s not available' % self.python)
185 python = "python2.4" variable in class:CPicklePython24Compat
203 python = "python2.5" variable in class:CPicklePython25Compat
216 python = "python2.6" variable in class:CPicklePython26Compat
228 python = "python2.7" variable in class:CPicklePython27Compat
    [all...]
  /external/libxml2/xstc/
Makefile.am 21 EXTRA_DIST=xstc.py xstc-to-python.xsl
24 # only if Python and Schemas are enabled.
66 # The python tests are generated via XSLT
68 nist-test.py: Tests/Metadata/$(NISTTESTDEF_2) xstc-to-python.xsl
72 $(srcdir)/xstc-to-python.xsl \
76 ms-test.py: Tests/Metadata/$(MSTTESTDEF) xstc-to-python.xsl
80 $(srcdir)/xstc-to-python.xsl \
84 sun-test.py: Tests/Metadata/$(SUNTESTDEF) xstc-to-python.xsl
88 $(srcdir)/xstc-to-python.xsl \
99 PYTHONPATH="../python:../python/.libs:..:../.libs:$$PYTHONPATH" ;
    [all...]

Completed in 399 milliseconds

1 2 3 45 6 7 8 91011>>