/third_party/python/Lib/distutils/command/ |
D | build_py.py | 37 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 …]
|
D | build_ext.py | 661 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/ |
D | test_pkg_import.py | 29 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/ |
D | java_file.cc | 594 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()
|
D | java_generator.cc | 141 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()
|
D | java_shared_code_generator.cc | 61 std::string package_dir = JavaPackageToDir(java_package); in Generate() local 66 std::string filename = package_dir + classname + ".java"; in Generate()
|
D | java_helpers.cc | 264 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()
|
D | java_file.h | 84 void GenerateSiblings(const std::string& package_dir,
|
/third_party/python/Lib/test/ |
D | test_pkgutil.py | 37 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/ |
D | examples.rst | 109 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;
|
D | setupscript.rst | 80 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'},
|
D | apiref.rst | 119 …| *package_dir* | A mapping of package to | a dictionary …
|
/third_party/python/Lib/distutils/tests/ |
D | test_build_ext.py | 68 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
|
D | test_build_py.py | 43 dist.package_dir = {"pkg": sources}
|
/third_party/node/tools/gyp/ |
D | setup.py | 25 package_dir={"": "pylib"},
|
/third_party/skia/third_party/externals/dawn/infra/config/global/generated/ |
D | project.cfg | 11 package_dir: ".."
|
/third_party/skia/third_party/externals/tint/infra/config/global/generated/ |
D | project.cfg | 11 package_dir: ".."
|
/third_party/skia/third_party/externals/angle2/infra/config/generated/ |
D | project.cfg | 11 package_dir: ".."
|
/third_party/gn/infra/config/generated/ |
D | project.cfg | 11 package_dir: ".."
|
/third_party/skia/third_party/externals/libwebp/swig/ |
D | setup.py | 35 package_dir={"": tmpdir},
|
/third_party/benchmark/ |
D | setup.py | 118 package_dir={"": "bindings/python"},
|
/third_party/skia/third_party/externals/brotli/ |
D | setup.py | 289 package_dir=PACKAGE_DIR,
|
/third_party/jinja2/ |
D | setup.cfg | 34 package_dir = = src
|
/third_party/PyYAML/ |
D | setup.py | 303 package_dir={'': 'lib'},
|
/third_party/python/Lib/distutils/ |
D | dist.py | 207 self.package_dir = None
|