/external/python/cpython3/Lib/test/test_importlib/ |
D | test_metadata_api.py | 13 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 …]
|
D | test_zip.py | 9 entry_points, 44 scripts = entry_points(group='console_scripts')
|
D | test_main.py | 20 entry_points, 60 ep = entry_points(group='entries')['main'] 64 ep = entry_points(group='entries')['ns:sub']
|
/external/angle/src/libANGLE/renderer/gl/ |
D | generate_gl_dispatch_table.py | 169 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.py | 167 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/ |
D | validate_interfaces.cpp | 77 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/ |
D | validate_interfaces.cpp | 80 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/ |
D | entry_point.rst | 1 .. _`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/ |
D | gl_XML.py | 613 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]]
|
D | gl_procs.py | 99 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/ |
D | validate_interfaces.cpp | 79 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/ |
D | importlib.metadata.rst | 82 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/ |
D | fuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp | 42 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/ |
D | fuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp | 42 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/ |
D | fuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp | 42 GetIRContext()->module()->entry_points().begin(), in Apply() 43 GetIRContext()->module()->entry_points().end(), in Apply()
|
/external/python/setuptools/setuptools/tests/config/ |
D | test_pyprojecttoml.py | 172 entry_points = ConfigParser() 173 entry_points.read_dict(ENTRY_POINTS) 175 entry_points.write(f)
|
D | test_apply_pyprojecttoml.py | 49 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/ |
D | convert_to_entrypoint.cc | 192 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/ |
D | setup.cfg | 90 [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/ |
D | ir_context.cpp | 782 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/ |
D | core.py | 153 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/ |
D | entry_points.txt | 26 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/ |
D | ir_context.cpp | 833 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/ |
D | mapi_abi.py | 145 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/ |
D | val_validation_state_test.cpp | 182 EXPECT_EQ(size_t(1), vstate_->entry_points().size()); in TEST_F() 184 vstate_->FindDef(vstate_->entry_points()[0])->opcode()); in TEST_F()
|