Home
last modified time | relevance | path

Searched refs:init_py (Results 1 – 9 of 9) sorted by relevance

/external/python/setuptools/setuptools/command/
Dbuild_py.py156 init_py = orig.build_py.check_package(self, package, package_dir)
157 self.packages_checked[package] = init_py
159 if not init_py or not self.distribution.namespace_packages:
160 return init_py
166 return init_py
168 with io.open(init_py, 'rb') as f:
177 return init_py
/external/python/setuptools/setuptools/_distutils/command/
Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))
/external/python/cpython2/Lib/distutils/command/
Dbuild_py.py200 init_py = os.path.join(package_dir, "__init__.py")
201 if os.path.isfile(init_py):
202 return init_py
205 "(or not a regular file)"), init_py)
269 init_py = self.check_package(package, package_dir)
271 if init_py:
272 modules.append((package, "__init__", init_py))
/external/python/cpython3/Lib/distutils/command/
Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))
/external/tensorflow/tensorflow/python/compiler/
DBUILD15 "//tensorflow/python/compiler/tensorrt:init_py",
/external/python/cpython2/Lib/
Dpkgutil.py522 init_py = "__init__" + os.extsep + "py"
532 initfile = os.path.join(subdir, init_py)
/external/tensorflow/tensorflow/python/compiler/tensorrt/
DBUILD23 name = "init_py",
/external/AFLplusplus/src/
Dafl-fuzz-python.c294 static void init_py(afl_state_t *afl, py_mutator_t *py_mutator, in init_py() function
447 init_py(afl, py_mutator, rand_below(afl, 0xFFFFFFFF)); in load_custom_mutator_py()
/external/flatbuffers/src/
Didl_gen_python.cpp1785 const std::string init_py = in SaveType() local
1787 SaveFile(init_py.c_str(), "", false); in SaveType()