Home
last modified time | relevance | path

Searched refs:package_data (Results 1 – 14 of 14) sorted by relevance

/third_party/uboot/u-boot-2020.01/lib/efi_loader/
Defi_hii.c300 struct efi_keyboard_package_data *package_data; in add_keyboard_package() local
306 package_data = malloc(sizeof(*package_data)); in add_keyboard_package()
307 if (!package_data) in add_keyboard_package()
309 INIT_LIST_HEAD(&package_data->link); in add_keyboard_package()
310 INIT_LIST_HEAD(&package_data->keyboard_layout_list); in add_keyboard_package()
322 &package_data->keyboard_layout_list); in add_keyboard_package()
329 list_add_tail(&package_data->link, &hii->keyboard_packages); in add_keyboard_package()
334 free_keyboard_layouts(package_data); in add_keyboard_package()
335 free(package_data); in add_keyboard_package()
/third_party/grpc/tools/distrib/python/grpcio_tools/
Dsetup.py154 def package_data(): function
225 package_data=package_data(),
/third_party/python/Lib/distutils/command/
Dbuild_py.py36 self.package_data = None
51 self.package_data = self.distribution.package_data
123 globs = (self.package_data.get('', [])
124 + self.package_data.get(package, []))
/third_party/uboot/u-boot-2020.01/include/
Dandroid_bootloader_message.h240 bool read_wipe_package(std::string* package_data, size_t size, std::string* err);
243 bool write_wipe_package(const std::string& package_data, std::string* err);
/third_party/python/Lib/distutils/tests/
Dtest_build_py.py42 dist.package_data = {"pkg": ["README.txt"]}
48 self.assertEqual(cmd.package_data, dist.package_data)
Dtest_sdist.py179 dist.package_data = {'': ['*.cfg', '*.dat'],
340 dist.package_data = {'somecode': ['*.txt']}
/third_party/uboot/u-boot-2020.01/tools/patman/
Dsetup.py10 package_data={'patman': ['README']},
/third_party/boost/libs/mpl/doc/src/docutils/
Dsetup.py22 package_data={'docutils.writers.html4_refdoc': ['frames.css']},
/third_party/grpc/src/python/grpcio_tests/
Dsetup.py105 package_data=PACKAGE_DATA,
/third_party/grpc/
Dsetup.py423 package_data=PACKAGE_DATA,
/third_party/python/Doc/distutils/
Dsetupscript.rst476 Package data can be added to packages using the ``package_data`` keyword
505 package_data={'mypkg': ['data/*.dat']},
510 All the files that match ``package_data`` will be added to the ``MANIFEST``
Dsourcedist.rst104 * all files that matches the ``package_data`` metadata.
/third_party/python/Lib/distutils/
Ddist.py206 self.package_data = {}
/third_party/python/Misc/
DHISTORY3464 - Issue #19286: Directories in ``package_data`` are no longer added to
8818 - Issue #13712: pysetup create should not convert package_data to extra_files.
8820 - Issue #11805: package_data in setup.cfg should allow more than one value.
15594 from the package_data and the data_files metadata.