Home
last modified time | relevance | path

Searched refs:argh (Results 1 – 25 of 1101) sorted by relevance

12345678910>>...45

/dports/devel/py-argh/argh-0.26.2/test/
H A Dtest_assembling.py10 import argh
95 p = argh.ArghParser()
111 p = argh.ArghParser()
128 p = argh.ArghParser()
144 p = argh.ArghParser()
164 p = argh.ArghParser()
191 @argh.arg('foo')
192 @argh.arg('--bar')
220 p = argh.ArghParser()
236 p = argh.ArghParser()
[all …]
H A Dtest_decorators.py6 import argh
10 @argh.aliases('one', 'two')
14 attr = getattr(func, argh.constants.ATTR_ALIASES)
19 @argh.arg('foo', help='help', nargs='+')
20 @argh.arg('--bar', default=1)
24 attrs = getattr(func, argh.constants.ATTR_ARGS)
32 @argh.named('new-name')
36 attr = getattr(func, argh.constants.ATTR_NAME)
41 @argh.wrap_errors([KeyError, ValueError])
50 @argh.wrap_errors(processor='STUB')
[all …]
H A Dtest_interaction.py9 import argh
13 argh.io._input = lambda prompt: choice
14 return argh.confirm('test', **kwargs)
42 argh.io._input = raw_input_mock
44 argh.confirm('do smth')
47 argh.confirm('do smth', default=None)
50 argh.confirm('do smth', default=True)
53 argh.confirm('do smth', default=False)
61 argh.io._input = raw_input_mock
67 argh.confirm(msg)
/dports/misc/broot/broot-1.7.0/cargo-crates/argh_shared-0.1.5/
H A DREADME.md4 [![crates.io](https://img.shields.io/crates/v/argh.svg)](https://crates.io/crates/argh)
6 [![docs.rs](https://docs.rs/argh/badge.svg)](https://docs.rs/crate/argh/)
20 use argh::FromArgs;
30 #[argh(option)]
34 #[argh(option)]
71 use argh::FromArgs;
81 #[argh(option)]
104 use argh::FromArgs;
124 use argh::FromArgs;
142 use argh::FromArgs;
[all …]
/dports/misc/broot/broot-1.7.0/cargo-crates/argh-0.1.5/
H A DREADME.md4 [![crates.io](https://img.shields.io/crates/v/argh.svg)](https://crates.io/crates/argh)
6 [![docs.rs](https://docs.rs/argh/badge.svg)](https://docs.rs/crate/argh/)
20 use argh::FromArgs;
30 #[argh(option)]
34 #[argh(option)]
71 use argh::FromArgs;
81 #[argh(option)]
104 use argh::FromArgs;
124 use argh::FromArgs;
142 use argh::FromArgs;
[all …]
/dports/misc/broot/broot-1.7.0/cargo-crates/argh_derive-0.1.5/
H A DREADME.md4 [![crates.io](https://img.shields.io/crates/v/argh.svg)](https://crates.io/crates/argh)
6 [![docs.rs](https://docs.rs/argh/badge.svg)](https://docs.rs/crate/argh/)
20 use argh::FromArgs;
30 #[argh(option)]
34 #[argh(option)]
71 use argh::FromArgs;
81 #[argh(option)]
104 use argh::FromArgs;
124 use argh::FromArgs;
142 use argh::FromArgs;
[all …]
/dports/games/sauerbraten/sauerbraten/packages/base/
H A Dpul1ctf.cfg20 texture n "argh/flat.png"
22 texture n "argh/flat.png"
25 texture n "argh/flat.png"
28 texture n "argh/flat.png"
31 texture n "argh/flat.png"
34 texture n "argh/flat.png"
37 texture n "argh/flat.png"
40 texture n "argh/flat.png"
48 texture n "argh/flat.png"
53 texture n "argh/flat.png"
[all …]
/dports/cad/gplcver/gplcver-2.12a.src/tests_and_examples/examples.acc/
H A Dacc_probe.c36 handle argh, instref; in vu_setup_checktf() local
50 argh = acc_handle_tfarg(nparam); in vu_setup_checktf()
51 htyp = acc_fetch_type(argh); in vu_setup_checktf()
64 if (acc_fetch_size(argh) == 1) in vu_setup_checktf()
68 acc_fetch_name(argh), nparam); in vu_setup_checktf()
81 handle argh; in vu_setup_values() local
106 argh = acc_handle_tfarg(nparam); in vu_setup_values()
112 vu_doupdate(argh, nparam); in vu_setup_values()
122 handle argh; in vu_update_values() local
135 strcpy(s1, acc_fetch_name(argh)); in vu_update_values()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/algorithm/test/
H A Dhex_test1.cpp24 String arg, argh, one, two, three, four; in test_to_hex() local
33 argh = one; in test_to_hex()
37 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
38 four = boost::algorithm::unhex ( argh ); in test_to_hex()
49 String arg, argh, one, two, three, four; in test_to_hex_lower() local
58 argh = one; in test_to_hex_lower()
62 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex_lower()
63 four = boost::algorithm::unhex ( argh ); in test_to_hex_lower()
84 argh = one; in test_from_hex_success()
88 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
[all …]
H A Dhex_test2.cpp36 std::deque<char> arg, argh; in test_to_hex() local
45 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_to_hex()
50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
58 std::deque<char> arg, argh; in test_to_hex() local
68 std::copy ( one.begin (), one.end (), std::front_inserter ( argh )); in test_to_hex()
73 boost::algorithm::unhex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_to_hex()
89 std::deque<char> arg, argh; in test_from_hex_success() local
98 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_from_hex_success()
103 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
111 std::deque<char> arg, argh; in test_from_hex_success() local
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/algorithm/test/
H A Dhex_test1.cpp24 String arg, argh, one, two, three, four; in test_to_hex() local
33 argh = one; in test_to_hex()
37 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
38 four = boost::algorithm::unhex ( argh ); in test_to_hex()
49 String arg, argh, one, two, three, four; in test_to_hex_lower() local
58 argh = one; in test_to_hex_lower()
62 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex_lower()
63 four = boost::algorithm::unhex ( argh ); in test_to_hex_lower()
84 argh = one; in test_from_hex_success()
88 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
[all …]
H A Dhex_test2.cpp36 std::deque<char> arg, argh; in test_to_hex() local
45 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_to_hex()
50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
58 std::deque<char> arg, argh; in test_to_hex() local
68 std::copy ( one.begin (), one.end (), std::front_inserter ( argh )); in test_to_hex()
73 boost::algorithm::unhex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_to_hex()
89 std::deque<char> arg, argh; in test_from_hex_success() local
98 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_from_hex_success()
103 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
111 std::deque<char> arg, argh; in test_from_hex_success() local
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/algorithm/test/
H A Dhex_test1.cpp24 String arg, argh, one, two, three, four; in test_to_hex() local
33 argh = one; in test_to_hex()
37 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
38 four = boost::algorithm::unhex ( argh ); in test_to_hex()
49 String arg, argh, one, two, three, four; in test_to_hex_lower() local
58 argh = one; in test_to_hex_lower()
62 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex_lower()
63 four = boost::algorithm::unhex ( argh ); in test_to_hex_lower()
84 argh = one; in test_from_hex_success()
88 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
[all …]
H A Dhex_test2.cpp36 std::deque<char> arg, argh; in test_to_hex() local
45 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_to_hex()
50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
58 std::deque<char> arg, argh; in test_to_hex() local
68 std::copy ( one.begin (), one.end (), std::front_inserter ( argh )); in test_to_hex()
73 boost::algorithm::unhex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_to_hex()
89 std::deque<char> arg, argh; in test_from_hex_success() local
98 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_from_hex_success()
103 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
111 std::deque<char> arg, argh; in test_from_hex_success() local
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/algorithm/test/
H A Dhex_test1.cpp24 String arg, argh, one, two, three, four; in test_to_hex() local
33 argh = one; in test_to_hex()
37 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
38 four = boost::algorithm::unhex ( argh ); in test_to_hex()
49 String arg, argh, one, two, three, four; in test_to_hex_lower() local
58 argh = one; in test_to_hex_lower()
62 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex_lower()
63 four = boost::algorithm::unhex ( argh ); in test_to_hex_lower()
84 argh = one; in test_from_hex_success()
88 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
[all …]
H A Dhex_test2.cpp36 std::deque<char> arg, argh; in test_to_hex() local
45 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_to_hex()
50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
58 std::deque<char> arg, argh; in test_to_hex() local
68 std::copy ( one.begin (), one.end (), std::front_inserter ( argh )); in test_to_hex()
73 boost::algorithm::unhex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_to_hex()
89 std::deque<char> arg, argh; in test_from_hex_success() local
98 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_from_hex_success()
103 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
111 std::deque<char> arg, argh; in test_from_hex_success() local
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/algorithm/test/
H A Dhex_test2.cpp36 std::deque<char> arg, argh; in test_to_hex() local
45 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_to_hex()
50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
58 std::deque<char> arg, argh; in test_to_hex() local
68 std::copy ( one.begin (), one.end (), std::front_inserter ( argh )); in test_to_hex()
73 boost::algorithm::unhex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_to_hex()
89 std::deque<char> arg, argh; in test_from_hex_success() local
98 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_from_hex_success()
103 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
111 std::deque<char> arg, argh; in test_from_hex_success() local
[all …]
H A Dhex_test1.cpp23 String arg, argh, one, two, three, four; in test_to_hex() local
32 argh = one; in test_to_hex()
34 boost::algorithm::unhex ( argh.c_str (), std::back_inserter ( one )); in test_to_hex()
35 boost::algorithm::unhex ( argh, std::back_inserter ( two )); in test_to_hex()
36 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
37 four = boost::algorithm::unhex ( argh ); in test_to_hex()
49 String arg, argh, one, two, three, four; in test_from_hex_success() local
58 argh = one; in test_from_hex_success()
61 boost::algorithm::hex ( argh, std::back_inserter ( two )); in test_from_hex_success()
62 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
[all …]
/dports/databases/percona57-server/boost_1_59_0/libs/algorithm/test/
H A Dhex_test2.cpp36 std::deque<char> arg, argh; in test_to_hex() local
45 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_to_hex()
50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
58 std::deque<char> arg, argh; in test_to_hex() local
68 std::copy ( one.begin (), one.end (), std::front_inserter ( argh )); in test_to_hex()
73 boost::algorithm::unhex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_to_hex()
89 std::deque<char> arg, argh; in test_from_hex_success() local
98 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_from_hex_success()
103 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
111 std::deque<char> arg, argh; in test_from_hex_success() local
[all …]
/dports/databases/xtrabackup/boost_1_59_0/libs/algorithm/test/
H A Dhex_test2.cpp36 std::deque<char> arg, argh; in test_to_hex() local
45 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_to_hex()
50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
58 std::deque<char> arg, argh; in test_to_hex() local
68 std::copy ( one.begin (), one.end (), std::front_inserter ( argh )); in test_to_hex()
73 boost::algorithm::unhex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_to_hex()
89 std::deque<char> arg, argh; in test_from_hex_success() local
98 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_from_hex_success()
103 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
111 std::deque<char> arg, argh; in test_from_hex_success() local
[all …]
/dports/databases/percona57-client/boost_1_59_0/libs/algorithm/test/
H A Dhex_test2.cpp36 std::deque<char> arg, argh; in test_to_hex() local
45 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_to_hex()
50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
58 std::deque<char> arg, argh; in test_to_hex() local
68 std::copy ( one.begin (), one.end (), std::front_inserter ( argh )); in test_to_hex()
73 boost::algorithm::unhex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_to_hex()
89 std::deque<char> arg, argh; in test_from_hex_success() local
98 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_from_hex_success()
103 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
111 std::deque<char> arg, argh; in test_from_hex_success() local
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/algorithm/test/
H A Dhex_test2.cpp36 std::deque<char> arg, argh; in test_to_hex() local
45 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_to_hex()
50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
58 std::deque<char> arg, argh; in test_to_hex() local
68 std::copy ( one.begin (), one.end (), std::front_inserter ( argh )); in test_to_hex()
73 boost::algorithm::unhex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_to_hex()
89 std::deque<char> arg, argh; in test_from_hex_success() local
98 std::copy ( one.begin (), one.end (), std::back_inserter ( argh )); in test_from_hex_success()
103 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
111 std::deque<char> arg, argh; in test_from_hex_success() local
[all …]
/dports/misc/broot/broot-1.7.0/cargo-crates/argh_derive-0.1.5/src/
H A Dlib.rs27 #[proc_macro_derive(FromArgs, attributes(argh))]
251 impl argh::FromArgs for #name { in impl_from_args_struct() impl
309 Some(argh::ParseStructSubCommand { in impl_from_args_struct_from_args()
331 argh::parse_struct_args( in impl_from_args_struct_from_args()
334 argh::ParseStructOptions { in impl_from_args_struct_from_args()
441 argh::parse_struct_args( in impl_from_args_struct_redact_arg_values()
444 argh::ParseStructOptions { in impl_from_args_struct_redact_arg_values()
518 impl argh::SubCommand for #name { in top_or_sub_cmd_impl() impl
519 const COMMAND: &'static argh::CommandInfo = &argh::CommandInfo { in top_or_sub_cmd_impl()
833 impl argh::FromArgs for #name { in impl_from_args_enum() impl
[all …]
/dports/devel/py-argh/argh-0.26.2/argh.egg-info/
H A DPKG-INFO2 Name: argh
5 Home-page: http://github.com/neithere/argh/
19 :target: https://pypi.python.org/pypi/argh
22 :target: https://pypi.python.org/pypi/argh
110 $ pip install argh
114 $ yaourt python-argh
123 import argh
128 argh.dispatch_command(main)
141 import argh
155 parser = argh.ArghParser()
[all …]
/dports/devel/py-argh/argh-0.26.2/
H A DPKG-INFO2 Name: argh
5 Home-page: http://github.com/neithere/argh/
19 :target: https://pypi.python.org/pypi/argh
22 :target: https://pypi.python.org/pypi/argh
110 $ pip install argh
114 $ yaourt python-argh
123 import argh
128 argh.dispatch_command(main)
141 import argh
155 parser = argh.ArghParser()
[all …]

12345678910>>...45