Home
last modified time | relevance | path

Searched refs:GetFloatValue (Results 1 – 11 of 11) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DStructuredDataImpl.h128 double GetFloatValue(double fail_value = 0.0) const {
129 return (m_data_sp ? m_data_sp->GetFloatValue(fail_value) : fail_value);
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBStructuredData.cpp132 double SBStructuredData::GetFloatValue(double fail_value) const { in GetFloatValue() function in SBStructuredData
133 return (m_impl_up ? m_impl_up->GetFloatValue(fail_value) : fail_value); in GetFloatValue()
/freebsd-12.1/contrib/googletest/googletest/xcode/Samples/FrameworkSample/
H A Dwidget.h48 float GetFloatValue() const;
H A Dwidget_test.cc47 EXPECT_FLOAT_EQ(1.0f, widget.GetFloatValue()); in TEST()
H A Dwidget.cc46 float Widget::GetFloatValue() const { in GetFloatValue() function in Widget
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBStructuredData.h81 double GetFloatValue(double fail_value = 0.0) const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/
H A DABISysV_ppc64.cpp540 value_sp = GetFloatValue(m_type, 0); in GetValue()
644 ValueSP GetFloatValue(CompilerType &type, uint32_t reg_index) { in GetFloatValue() function in __anon1cbc4b130111::ReturnValueExtractor
800 ValueSP val_sp = GetFloatValue(elem_type, i); in GetStructValueObject()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DLiteralSupport.h111 llvm::APFloat::opStatus GetFloatValue(llvm::APFloat &Result);
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DStructuredData.h118 double GetFloatValue(double fail_value = 0.0) {
/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DLiteralSupport.cpp1038 NumericLiteralParser::GetFloatValue(llvm::APFloat &Result) { in GetFloatValue() function in NumericLiteralParser
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp3210 APFloat::opStatus result = Literal.GetFloatValue(Val); in BuildFloatingLiteral()