Home | History | Annotate | Download | only in src

Lines Matching defs:Validate

195 // This is a 'prototype' validate-function.  'Real' validate
233 friend class CommandLineFlag; // for many things, including Validate()
247 // Calls the given validate-fn on value_buffer_, and returns
251 bool Validate(const char* flagname, ValidateFnProto validate_fn_proto) const;
380 bool FlagValue::Validate(const char* flagname,
488 bool Validate(const FlagValue& value) const;
489 bool ValidateCurrent() const { return Validate(*current_); }
512 // When we pass this to current_->Validate(), it will cast it back to
587 bool CommandLineFlag::Validate(const FlagValue& value) const {
591 return value.Validate(name(), validate_function());
794 } else if (!flag->Validate(*tentative_value)) {
896 // Stage 3: validate all the commandline flags that have validators
1341 // << flag->name() << "': validate-fn already registered";