Home
last modified time | relevance | path

Searched refs:requires (Results 1 - 25 of 195) sorted by relevance

12345678

/third_party/rust/crates/clap/src/builder/
H A Darg_group.rs84 /// [requirement]: crate::Arg::requires()
90 pub(crate) requires: Vec<Id>,
345 /// .requires("debug"))
347 /// // because we used an arg from the group, and the group requires "-d" to be used, it's an
354 /// [argument requirement rules]: crate::Arg::requires()
356 pub fn requires(mut self, id: impl IntoResettable<Id>) -> Self { in requires() functions
358 self.requires.push(id); in requires()
360 self.requires.clear(); in requires()
394 /// // because we used an arg from the group, and the group requires "-d" and "-v" to be used,
405 self = self.requires( in requires_all()
[all...]
H A Ddebug_asserts.rs144 // requires, r_if, r_unless
145 for req in &arg.requires {
148 "Command {}: Argument or group '{}' specified in 'requires*' for '{}' does not exist",
459 ($a:ident requires $($b:ident)|+) => { in assert_app_flags()
816 ($a:ident requires $($b:ident)|+) => { in assert_arg_flags()
834 checker!(is_hide_possible_values_set requires is_takes_value_set); in assert_arg_flags()
835 checker!(is_allow_hyphen_values_set requires is_takes_value_set); in assert_arg_flags()
836 checker!(is_allow_negative_numbers_set requires is_takes_value_set); in assert_arg_flags()
837 checker!(is_require_equals_set requires is_takes_value_set); in assert_arg_flags()
838 checker!(is_last_set requires is_takes_value_se in assert_arg_flags()
[all...]
/third_party/python/Lib/test/test_importlib/
H A Dtest_metadata_api.py16 requires,
223 requirements = requires('egginfo-file')
227 deps = requires('egginfo-pkg')
234 'requires.txt': '',
238 deps = requires('egginfo-pkg')
242 deps = requires('distinfo-pkg')
249 requires = textwrap.dedent(
265 deps = sorted(Distribution._deps_from_requires_text(requires))
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_editor.py6 from test.support import requires namespace
16 requires('gui')
105 requires('gui')
188 requires('gui')
218 requires('gui')
H A Dtest_scrolledlist.py5 from test.support import requires namespace
6 requires('gui')
H A Dtest_debugger.py5 from test.support import requires namespace
6 requires('gui')
H A Dtest_runscript.py5 from test.support import requires namespace
14 requires('gui')
H A Dtest_autocomplete_w.py4 from test.support import requires namespace
14 requires('gui')
H A Dtest_calltip_w.py5 from test.support import requires namespace
13 requires('gui')
H A Dtemplate.py5 from test.support import requires namespace
13 requires('gui')
H A Dtest_macosx.py5 from test.support import requires namespace
29 requires('gui')
84 requires('gui')
H A Dtest_query.py14 from test.support import requires namespace
322 requires('gui')
365 requires('gui')
383 requires('gui')
400 requires('gui')
416 requires('gui')
436 requires('gui')
H A Dtest_config_key.py9 from test.support import requires namespace
31 requires('gui')
108 requires('gui')
176 requires('gui')
245 requires('gui')
274 requires('gui')
302 requires('gui')
H A Dtest_help_about.py8 from test.support import requires, findfile namespace
26 requires('gui')
94 requires('gui')
118 requires('gui')
H A Dtest_help.py5 from test.support import requires namespace
6 requires('gui')
H A Dtest_filelist.py5 from test.support import requires namespace
12 requires('gui')
H A Dtest_zoomheight.py6 from test.support import requires namespace
15 requires('gui')
H A Dtest_window.py5 from test.support import requires namespace
24 requires('gui')
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dspirvcapgenerator.py56 return enable.get('requires')
146 requires = subelem.get('requires')
159 enable = requires
167 requires = subelem.get('requires')
170 enable = requires
/third_party/python/Lib/tkinter/test/test_tkinter/
H A Dtest_simpledialog.py3 from test.support import requires, swap_attr namespace
7 requires('gui')
H A Dtest_messagebox.py3 from test.support import requires, swap_attr namespace
8 requires('gui')
/third_party/ltp/testcases/open_posix_testsuite/scripts/
H A Dlocate-test28 NUMBER-NUMBER.c [requires compilation]
30 NUMBER-buildonly.c [requires compilation]
33 Note that the [requires compilation] tags will mean that the actual
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dentity_db.py52 """Return the 'requires' string associated with external/platform definitions.
54 This is the string found in the requires attribute of the XML for entities that
57 <type requires="???" name="int8_t"/>
121 def handleType(self, name, info, requires):
127 The contents of the requires attribute, if any, is passed in requires.
132 if requires == self.platform_requires:
587 # Note: Default impl requires self.mixed_case_name_prefix
650 requires = info.elem.get('requires')
[all...]
/third_party/rust/crates/clap/clap_bench/benches/
H A D03_complex.rs19 .requires("option2"),
22 .requires("positional2"),
76 .requires("option2"), in build_from_builder()
82 .requires("positional2") in build_from_builder()
/third_party/node/test/common/
H A Dwpt.js194 this.requires = value.requires || [];
265 this.requires = new Set();
270 if (item.requires.length) {
271 for (const req of item.requires) {
272 this.requires.add(req);
328 * @param {Set} requires
331 isLacking(requires) {
333 if (requires.has('full-icu') && current !== kIntlRequirement.full) {
336 if (requires
[all...]

Completed in 9 milliseconds

12345678