Home | History | Annotate | Download | only in python_gflags

Lines Matching refs:checker

55   def __init__(self, checker, message):
59 checker: function to verify the constraint.
64 self.checker = checker
80 if not self.checker(param):
95 """Given flag values, construct the input to be given to checker.
108 Validates that a single flag passes its checker function. The checker function
111 def __init__(self, flag_name, checker, message):
116 checker: function to verify the validator.
124 super(SimpleValidator, self).__init__(checker, message)
134 """Given flag values, construct the input to be given to checker.
147 Validates that flag values pass their common checker function. The checker
151 def __init__(self, flag_names, checker, message):
155 flag_names: [string], containing names of the flags used by checker.
156 checker: function to verify the validator.
165 super(DictionaryValidator, self).__init__(checker, message)
169 """Given flag values, construct the input to be given to checker.