Home
last modified time | relevance | path

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

12345678

/external/python/cpython3/Lib/test/test_importlib/
Dtest_metadata_api.py13 entry_points,
77 eps = entry_points()
86 entries = entry_points(group='entries')
110 entries = entry_points(group='entries')
120 entry_points(group='entries')['missing']
123 assert entry_points(group='missing') == ()
130 eps = dict(entry_points(group='entries'))
133 assert eps['main'] == entry_points(group='entries')['main']
147 eps = distribution('distinfo-pkg').entry_points
161 entry_points()['entries'] == entry_points(group='entries')
[all …]
Dtest_zip.py9 entry_points,
44 scripts = entry_points(group='console_scripts')
Dtest_main.py20 entry_points,
60 ep = entry_points(group='entries')['main']
64 ep = entry_points(group='entries')['ns:sub']
/external/angle/src/libANGLE/renderer/gl/
Dgenerate_gl_dispatch_table.py169 def format_requirements_lines(required, entry_points): argument
172 lines += [format_assign_ep(entry_point, entry_point) for entry_point in sorted(entry_points)]
177 def format_extension_requirements_lines(extension, entry_points, api): argument
179 lines += [format_assign_ep(entry_point, ep) for entry_point, ep in sorted(entry_points)]
335 for comment, entry_points in sorted(json_data.items()):
336 for entry_point_no_prefix in entry_points:
402 for comment, entry_points in sorted(json_data.items()):
404 formatted += [format_ep_decl(entry_point) for entry_point in sorted(entry_points)]
418 for gl_required, entry_points in sorted(gl_requirements.items()):
419 gl_data.append(format_requirements_lines(gl_required, entry_points))
[all …]
/external/python/setuptools/setuptools/config/
D_apply_pyprojecttoml.py167 entry_points = project.pop("entry-points", project.pop("entry_points", {}))
172 entry_points[renaming[norm_key]] = project.pop(key)
174 if entry_points:
177 for name, group in entry_points.items()
206 unloaded_entry_points = metadata.entry_points(group='distutils.commands')
208 entry_points = (ep for ep in loaded_entry_points if ep)
209 for cmd, cmd_class in chain(entry_points, cmdclass.items()):
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_interfaces.cpp77 std::vector<uint32_t> entry_points; in check_interface_variable() local
80 entry_points.push_back(id); in check_interface_variable()
84 std::sort(entry_points.begin(), entry_points.end()); in check_interface_variable()
85 entry_points.erase(std::unique(entry_points.begin(), entry_points.end()), in check_interface_variable()
86 entry_points.end()); in check_interface_variable()
88 for (auto id : entry_points) { in check_interface_variable()
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_interfaces.cpp80 std::vector<uint32_t> entry_points; in check_interface_variable() local
83 entry_points.push_back(id); in check_interface_variable()
87 std::sort(entry_points.begin(), entry_points.end()); in check_interface_variable()
88 entry_points.erase(std::unique(entry_points.begin(), entry_points.end()), in check_interface_variable()
89 entry_points.end()); in check_interface_variable()
91 for (auto id : entry_points) { in check_interface_variable()
/external/python/setuptools/docs/userguide/
Dentry_point.rst1 .. _`entry_points`: target
61 [options.entry_points]
76 entry_points={
130 >>> eps = metadata.entry_points()['console_scripts']
139 [options.entry_points]
149 >>> eps = metadata.entry_points()['my.plugins']
174 [options.entry_points]
/external/mesa3d/src/mapi/glapi/gen/
Dgl_XML.py613 self.entry_points = []
659 self.entry_points.append( name )
762 entry_points = []
763 for ent in self.entry_points:
769 entry_points.append(ent)
771 if not entry_points:
774 self.entry_points = entry_points
775 if self.name not in entry_points:
777 self.name = entry_points[0]
778 self.parameters = self.entry_point_parameters[entry_points[0]]
Dgl_procs.py99 for n in func.entry_points:
118 for n in func.entry_points:
126 for n in func.entry_points:
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/val/
Dvalidate_interfaces.cpp79 std::vector<uint32_t> entry_points; in check_interface_variable() local
82 entry_points.push_back(id); in check_interface_variable()
86 std::sort(entry_points.begin(), entry_points.end()); in check_interface_variable()
87 entry_points.erase(std::unique(entry_points.begin(), entry_points.end()), in check_interface_variable()
88 entry_points.end()); in check_interface_variable()
90 for (auto id : entry_points) { in check_interface_variable()
/external/python/cpython3/Doc/library/
Dimportlib.metadata.rst82 The ``entry_points()`` function returns a collection of entry points.
91 >>> eps = entry_points() # doctest: +SKIP
93 The ``entry_points()`` function returns an ``EntryPoints`` object,
106 Equivalently, since ``entry_points`` passes keyword arguments
109 >>> scripts = entry_points(group='console_scripts') # doctest: +SKIP
119 >>> (wheel,) = entry_points(group='console_scripts', name='wheel') # doctest: +SKIP
120 >>> (wheel,) = entry_points().select(group='console_scripts', name='wheel') # doctest: +SKIP
145 3.6 and Python 3.10. Prior to those changes, ``entry_points`` accepted
147 by group. For compatibility, if no parameters are passed to entry_points,
149 interface. In the future, calling ``entry_points`` with no parameters
/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dfuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp42 std::all_of(GetIRContext()->module()->entry_points().begin(), in Apply()
43 GetIRContext()->module()->entry_points().end(), in Apply()
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dfuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp42 GetIRContext()->module()->entry_points().begin(), in Apply()
43 GetIRContext()->module()->entry_points().end(), in Apply()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/
Dfuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp42 GetIRContext()->module()->entry_points().begin(), in Apply()
43 GetIRContext()->module()->entry_points().end(), in Apply()
/external/python/setuptools/setuptools/tests/config/
Dtest_pyprojecttoml.py172 entry_points = ConfigParser()
173 entry_points.read_dict(ENTRY_POINTS)
175 entry_points.write(f)
Dtest_apply_pyprojecttoml.py49 print(dist_cfg.entry_points)
51 for k, v in dist_toml.entry_points.items()}
53 for k, v in dist_cfg.entry_points.items()}
/external/tensorflow/tensorflow/compiler/xla/mlir/transforms/runtime/
Dconvert_to_entrypoint.cc192 llvm::SmallVector<func::FuncOp> entry_points; in runOnOperation() local
196 if (op->hasAttr(kEntrypointAttrName)) entry_points.push_back(op); in runOnOperation()
199 llvm::for_each(entry_points, ConvertToEntrypoint); in runOnOperation()
/external/python/setuptools/
Dsetup.cfg90 [options.entry_points]
123 entry_points = setuptools.dist:check_entry_points
137 entry_points.txt = setuptools.command.egg_info:write_entries
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dir_context.cpp782 for (auto& e : module()->entry_points()) { in AddVarToEntryPoints()
883 for (auto& e : module()->entry_points()) { in ProcessEntryPointCallTree()
893 for (auto& e : module()->entry_points()) in ProcessReachableCallTree()
1072 const auto& entry_points = module()->entry_points(); in GetStage() local
1073 if (entry_points.empty()) { in GetStage()
1077 uint32_t stage = entry_points.begin()->GetSingleWordInOperand( in GetStage()
1080 entry_points.begin(), entry_points.end(), [stage](const Instruction& x) { in GetStage()
1084 if (it != entry_points.end()) { in GetStage()
/external/markdown/markdown/
Dcore.py153 entry_points = [ep for ep in util.get_installed_extensions() if ep.name == ext_name]
154 if entry_points:
155 ext = entry_points[0].load()
/external/python/setuptools/setuptools.egg-info/
Dentry_points.txt26 entry_points = setuptools.dist:check_entry_points
48 entry_points.txt = setuptools.command.egg_info:write_entries
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dir_context.cpp833 for (auto& e : module()->entry_points()) { in AddVarToEntryPoints()
934 for (auto& e : module()->entry_points()) { in ProcessEntryPointCallTree()
944 for (auto& e : module()->entry_points()) in ProcessReachableCallTree()
1123 const auto& entry_points = module()->entry_points(); in GetStage() local
1124 if (entry_points.empty()) { in GetStage()
1128 uint32_t stage = entry_points.begin()->GetSingleWordInOperand( in GetStage()
1131 entry_points.begin(), entry_points.end(), [stage](const Instruction& x) { in GetStage()
1135 if (it != entry_points.end()) { in GetStage()
/external/mesa3d/src/mapi/
Dmapi_abi.py145 entry_points = func.entry_points[:]
146 entry_points.remove(func.name)
147 entry_points.insert(0, func.name)
149 for name in entry_points:
/external/deqp-deps/SPIRV-Tools/test/val/
Dval_validation_state_test.cpp182 EXPECT_EQ(size_t(1), vstate_->entry_points().size()); in TEST_F()
184 vstate_->FindDef(vstate_->entry_points()[0])->opcode()); in TEST_F()

12345678