Home
last modified time | relevance | path

Searched refs:UserOption (Results 1 – 25 of 67) sorted by relevance

123

/dports/textproc/textnote/textnote-1.3.0/vendor/olympos.io/encoding/edn/
H A Dexample_set_all_test.go9 type UserOption edn.Keyword type
11 type UnknownUserOptionError UserOption
18 UnknownOption = UserOption("")
19 ShowEmail = UserOption("show-email")
21 DailyEmail = UserOption("daily-email")
22 RememberMe = UserOption("remember-me")
25 func ListUserOptions() []UserOption {
26 return []UserOption{
40 opt := UserOption(kw)
50 type UserOptions map[UserOption]bool
[all …]
/dports/print/a2ps/a2ps-4.13/doc/
H A D.a2psrc6 UserOption: make-doc -2ZPprinter-doc
10 UserOption: make-book -1Pprinter-book
14 UserOption: make-cover -1Pprinter-cover -a1,2
/dports/devel/meson/stage/usr/local/lib/python3.8/site-packages/mesonbuild/
H A Doptinterpreter.py185 def string_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
190 def boolean_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
195 def combo_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
203 def integer_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
211 def string_array_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
221 def feature_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
/dports/devel/meson/meson-0.60.3/build/lib/mesonbuild/
H A Doptinterpreter.py185 def string_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
190 def boolean_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
195 def combo_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
203 def integer_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
211 def string_array_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
221 def feature_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
H A Dcoredata.py66 class UserOption(T.Generic[_T], HoldableObject): class
94 class UserStringOption(UserOption[str]):
104 class UserBooleanOption(UserOption[bool]):
123 class UserIntegerOption(UserOption[int]):
161 class UserUmaskOption(UserIntegerOption, UserOption[T.Union[str, OctalInt]]):
182 class UserComboOption(UserOption[str]):
206 class UserArrayOption(UserOption[T.List[str]]):
1104 _U = T.TypeVar('_U', bound=UserOption[_T])
/dports/devel/meson/meson-0.60.3/mesonbuild/
H A Doptinterpreter.py185 def string_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
190 def boolean_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
195 def combo_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
203 def integer_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
211 def string_array_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
221 def feature_parser(self, description: str, kwargs: 'ParserArgs') -> coredata.UserOption:
/dports/www/beehive/beehive-0.4.0/vendor/github.com/shuheiktgw/go-travis/
H A Dusers.go50 type UserOption struct { struct
58 func (us *UserService) Current(ctx context.Context, opt *UserOption) (*User, *http.Response, error)…
81 func (us *UserService) Find(ctx context.Context, id uint, opt *UserOption) (*User, *http.Response, …
H A Dusers_integration_test.go17 opt := UserOption{Include: []string{"user.repositories", "user.installation", "user.emails"}}
42 opt := UserOption{Include: []string{"user.repositories", "user.installation", "user.emails"}}
H A Dusers_test.go28 opt := UserOption{Include: []string{"user.repositories", "user.installation", "user.emails"}}
51 opt := UserOption{Include: []string{"user.repositories", "user.installation", "user.emails"}}
/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/GDCM/src/gdcm/Source/InformationObjectDefinition/
H A DgdcmIODEntry.cxx30 return Usage::UserOption; in GetUsageType()
34 return Usage::UserOption; in GetUsageType()
H A DgdcmUsage.h54 UserOption, // (see A.1.3.3) , abbreviated U enumerator
H A DgdcmMacro.cxx50 if( usage == Usage::UserOption ) return success; in Verify()
/dports/devel/gdcm/gdcm-3.0.10/Source/InformationObjectDefinition/
H A DgdcmIODEntry.cxx30 return Usage::UserOption; in GetUsageType()
34 return Usage::UserOption; in GetUsageType()
H A DgdcmUsage.h54 UserOption, // (see A.1.3.3) , abbreviated U enumerator
H A DgdcmMacro.cxx50 if( usage == Usage::UserOption ) return success; in Verify()
/dports/print/a2ps/a2ps-4.13/lib/
H A Dconfg.c77 UserOption, enumerator
159 {"UserOption:", UserOption, 2, true}, in in_word_set()
345 case UserOption: in a2_read_config()
H A Dconfg.gperf76 UserOption,
111 UserOption:, UserOption, 2, true
249 case UserOption:
/dports/emulators/qemu60/qemu-6.0.0/meson/mesonbuild/
H A Dcoredata.py59 class UserOption(T.Generic[_T]): class
82 class UserStringOption(UserOption[str]):
92 class UserBooleanOption(UserOption[bool]):
109 class UserIntegerOption(UserOption[int]):
140 class UserUmaskOption(UserIntegerOption, UserOption[T.Union[str, int]]):
161 class UserComboOption(UserOption[str]):
179 class UserArrayOption(UserOption[T.List[str]]):
649 def _get_all_nonbuiltin_options(self) -> T.Iterable[T.Dict[str, UserOption]]:
655 def _get_all_builtin_options(self) -> T.Iterable[T.Dict[str, UserOption]]:
659 def get_all_options(self) -> T.Iterable[T.Dict[str, UserOption]]:
[all …]
/dports/emulators/qemu5/qemu-5.2.0/meson/mesonbuild/
H A Dcoredata.py59 class UserOption(T.Generic[_T]): class
82 class UserStringOption(UserOption[str]):
92 class UserBooleanOption(UserOption[bool]):
109 class UserIntegerOption(UserOption[int]):
140 class UserUmaskOption(UserIntegerOption, UserOption[T.Union[str, int]]):
161 class UserComboOption(UserOption[str]):
179 class UserArrayOption(UserOption[T.List[str]]):
649 def _get_all_nonbuiltin_options(self) -> T.Iterable[T.Dict[str, UserOption]]:
655 def _get_all_builtin_options(self) -> T.Iterable[T.Dict[str, UserOption]]:
659 def get_all_options(self) -> T.Iterable[T.Dict[str, UserOption]]:
[all …]
/dports/print/a2ps/a2ps-4.13/etc/
H A Da2ps_cfg.in353 UserOption: lp -1m -Eplain -B --borders=no
356 UserOption: mail -gEmail --strip=1
357 UserOption: longmail -gEmail --strip=1 -2R
363 UserOption: book -1Dlp.hook=#{lp.hook.book} -s1
374 UserOption: manual -SManualFeed:true
376 UserOption: s1 -SDuplex:false
377 UserOption: simplex -SDuplex:false
380 UserOption: display -1 --prolog=color -Pdisplay
395 UserOption: pdf -1 -P pdf --prologue=color
/dports/print/a2ps/a2ps-4.13/arch/os2/
H A Da2ps_cfg.os2346 UserOption: lp -1m -Eplain -B --borders=no
349 UserOption: mail -gEmail --strip=1
350 UserOption: longmail -gEmail --strip=1 -2R
356 UserOption: book -1Dlp.hook=#{lp.hook.book} -s1
367 UserOption: manual -SManualFeed:true
369 UserOption: s1 -SDuplex:false
370 UserOption: simplex -SDuplex:false
373 UserOption: display -1 --prolog=color -Pdisplay
388 UserOption: pdf -1 -P pdf --prologue=color
/dports/comms/qt5-serialbus/kde-qtserialbus-5.15.2p2/src/serialbus/
H A Dqmodbusserver.h67 UserOption = 0x100 enumerator
/dports/misc/actiona/actiona-3.10.1/actiontools/qtimagefilters/
H A Dqtimagefilter.h83 UserOption = 0x100 enumerator
/dports/emulators/qemu/qemu-6.2.0/meson/mesonbuild/
H A Dcoredata.py64 class UserOption(T.Generic[_T], HoldableObject):
88 class UserStringOption(UserOption[str]):
98 class UserBooleanOption(UserOption[bool]):
117 class UserIntegerOption(UserOption[int]):
155 class UserUmaskOption(UserIntegerOption, UserOption[T.Union[str, OctalInt]]):
176 class UserComboOption(UserOption[str]):
200 class UserArrayOption(UserOption[T.List[str]]):
1076 _U = T.TypeVar('_U', bound=UserOption[_T])
/dports/emulators/qemu-devel/qemu-de8ed1055c2ce18c95f597eb10df360dcb534f99/meson/mesonbuild/
H A Dcoredata.py65 class UserOption(T.Generic[_T], HoldableObject): class
89 class UserStringOption(UserOption[str]):
99 class UserBooleanOption(UserOption[bool]):
118 class UserIntegerOption(UserOption[int]):
156 class UserUmaskOption(UserIntegerOption, UserOption[T.Union[str, OctalInt]]):
177 class UserComboOption(UserOption[str]):
201 class UserArrayOption(UserOption[T.List[str]]):
1077 _U = T.TypeVar('_U', bound=UserOption[_T])

123