Lines Matching refs:fail_value
22 uint64_t OptionValue::GetUInt64Value(uint64_t fail_value, bool *success_ptr) { in GetUInt64Value() argument
37 return fail_value; in GetUInt64Value()
276 bool OptionValue::GetBooleanValue(bool fail_value) const { in GetBooleanValue()
280 return fail_value; in GetBooleanValue()
292 char OptionValue::GetCharValue(char fail_value) const { in GetCharValue()
296 return fail_value; in GetCharValue()
308 int64_t OptionValue::GetEnumerationValue(int64_t fail_value) const { in GetEnumerationValue()
312 return fail_value; in GetEnumerationValue()
347 lldb::Format OptionValue::GetFormatValue(lldb::Format fail_value) const { in GetFormatValue()
351 return fail_value; in GetFormatValue()
364 OptionValue::GetLanguageValue(lldb::LanguageType fail_value) const { in GetLanguageValue()
368 return fail_value; in GetLanguageValue()
394 int64_t OptionValue::GetSInt64Value(int64_t fail_value) const { in GetSInt64Value()
398 return fail_value; in GetSInt64Value()
410 llvm::StringRef OptionValue::GetStringValue(llvm::StringRef fail_value) const { in GetStringValue()
414 return fail_value; in GetStringValue()
426 uint64_t OptionValue::GetUInt64Value(uint64_t fail_value) const { in GetUInt64Value()
430 return fail_value; in GetUInt64Value()