Home
last modified time | relevance | path

Searched refs:package_dir (Results 1 – 25 of 25) sorted by relevance

/third_party/python/Lib/distutils/command/
Dbuild_py.py37 self.package_dir = None
52 self.package_dir = {}
53 if self.distribution.package_dir:
54 for name, path in self.distribution.package_dir.items():
55 self.package_dir[name] = convert_path(path)
150 if not self.package_dir:
159 pdir = self.package_dir['.'.join(path)]
174 pdir = self.package_dir.get('')
183 def check_package(self, package, package_dir): argument
188 if package_dir != "":
[all …]
Dbuild_ext.py661 package_dir = os.path.abspath(build_py.get_package_dir(package))
665 return os.path.join(package_dir, filename)
/third_party/python/Lib/test/test_importlib/
Dtest_pkg_import.py29 self.package_dir = os.path.join(self.test_dir,
31 os.mkdir(self.package_dir)
32 create_empty_file(os.path.join(self.package_dir, '__init__.py'))
33 self.module_path = os.path.join(self.package_dir, 'foo.py')
/third_party/protobuf/src/google/protobuf/compiler/java/
Djava_file.cc594 const std::string& package_dir, const std::string& java_package, in GenerateSibling() argument
601 package_dir + descriptor->name() + name_suffix + ".java"; in GenerateSibling()
635 const std::string& package_dir, GeneratorContext* context, in GenerateSiblings() argument
644 package_dir, java_package_, file_->enum_type(i), context, file_list, in GenerateSiblings()
651 package_dir, java_package_, file_->enum_type(i), context, file_list, in GenerateSiblings()
659 package_dir, java_package_, file_->message_type(i), context, in GenerateSiblings()
664 package_dir, java_package_, file_->message_type(i), context, in GenerateSiblings()
673 package_dir, java_package_, file_->service(i), context, file_list, in GenerateSiblings()
Djava_generator.cc141 std::string package_dir = JavaPackageToDir(file_generator->java_package()); in Generate() local
143 std::string java_filename = package_dir; in Generate()
165 file_generator->GenerateSiblings(package_dir, context, &all_files, in Generate()
Djava_shared_code_generator.cc61 std::string package_dir = JavaPackageToDir(java_package); in Generate() local
66 std::string filename = package_dir + classname + ".java"; in Generate()
Djava_helpers.cc264 std::string package_dir = StringReplace(package_name, ".", "/", true); in JavaPackageToDir() local
265 if (!package_dir.empty()) package_dir += "/"; in JavaPackageToDir()
266 return package_dir; in JavaPackageToDir()
Djava_file.h84 void GenerateSiblings(const std::string& package_dir,
/third_party/python/Lib/test/
Dtest_pkgutil.py37 package_dir = os.path.join(self.dirname, pkg)
38 os.mkdir(package_dir)
40 f = open(os.path.join(package_dir, '__init__.py'), "wb")
43 f = open(os.path.join(package_dir, 'res.txt'), "wb")
46 os.mkdir(os.path.join(package_dir, 'sub'))
47 f = open(os.path.join(package_dir, 'sub', 'res.txt'), "wb")
/third_party/python/Doc/distutils/
Dexamples.rst109 package_dir={'': 'src'},
135 need to use the ``package_dir`` option again. For example, if the
150 package_dir={'foobar': 'src'},
168 package_dir={'foobar': ''},
175 but any entries in ``package_dir`` automatically extend to sub-packages.
205 ``package_dir`` has no effect on where extension source files are found;
Dsetupscript.rst80 problem: you just have to supply the ``package_dir`` option to tell the
86 package_dir = {'': 'lib'}
97 package_dir = {'foo': 'lib'}
99 A ``package: dir`` entry in the ``package_dir`` dictionary implicitly
103 :file:`lib/bar/__init__.py`. (Keep in mind that although ``package_dir``
125 package/directory correspondence using the ``package_dir`` option.
480 package (information from the ``package_dir`` mapping is used if appropriate);
504 package_dir={'mypkg': 'src/mypkg'},
Dapiref.rst119 …| *package_dir* | A mapping of package to | a dictionary …
/third_party/python/Lib/distutils/tests/
Dtest_build_ext.py68 dist.package_dir = self.tmp_dir
381 build_py.package_dir = {'': 'bar'}
410 cmd.distribution.package_dir = {'': 'src'}
426 build_py.package_dir = {}
518 dist.package_dir = self.tmp_dir
Dtest_build_py.py43 dist.package_dir = {"pkg": sources}
/third_party/node/tools/gyp/
Dsetup.py25 package_dir={"": "pylib"},
/third_party/skia/third_party/externals/dawn/infra/config/global/generated/
Dproject.cfg11 package_dir: ".."
/third_party/skia/third_party/externals/tint/infra/config/global/generated/
Dproject.cfg11 package_dir: ".."
/third_party/skia/third_party/externals/angle2/infra/config/generated/
Dproject.cfg11 package_dir: ".."
/third_party/gn/infra/config/generated/
Dproject.cfg11 package_dir: ".."
/third_party/skia/third_party/externals/libwebp/swig/
Dsetup.py35 package_dir={"": tmpdir},
/third_party/benchmark/
Dsetup.py118 package_dir={"": "bindings/python"},
/third_party/skia/third_party/externals/brotli/
Dsetup.py289 package_dir=PACKAGE_DIR,
/third_party/jinja2/
Dsetup.cfg34 package_dir = = src
/third_party/PyYAML/
Dsetup.py303 package_dir={'': 'lib'},
/third_party/python/Lib/distutils/
Ddist.py207 self.package_dir = None