Lines Matching defs:set
53 must be known, but does not need to be set. This does not cause
54 name to become set.
61 """True if the given symbol is active (i.e. set).
63 False if the given symbol is not set, even if a definition
69 """True if all the elements of names are active (i.e. set)."""
73 """True if at least one symbol in names are active (i.e. set)."""
88 """Get the value of name. If name is inactive (not set), return default.
101 """If name is known, set its value.
107 def set(self, name, value=None):
111 If value is None and name is not known, set its value to the empty
135 `True` if `name` is set and `False` if `name` is known but unset,
137 `adapter` returns `True`, then set `name` (i.e. make it active),
293 # This set contains options that are mostly for debugging or test purposes,
404 def set(self, name, value=None):
407 super().set(name, value)
496 help="""For the set command, if SYMBOL is not
509 parser_set = subparsers.add_parser('set',
520 parser_set_all = subparsers.add_parser('set-all',
581 elif args.command == 'set':
587 config.set(args.symbol, value=args.value)
588 elif args.command == 'set-all':