Home
last modified time | relevance | path

Searched refs:IsDouble (Results 1 – 19 of 19) sorted by relevance

/third_party/boost/boost/iostreams/detail/
Ddouble_object.hpp82 template<typename T, typename IsDouble>
85 IsDouble,
93 IsDouble,
109 bool is_double() const { return IsDouble::value; } in is_double()
/third_party/cef/libcef_dll/ctocpp/
Dv8value_ctocpp.h43 bool IsDouble() override;
Dv8value_ctocpp.cc277 NO_SANITIZE("cfi-icall") bool CefV8ValueCToCpp::IsDouble() { in IsDouble() function in CefV8ValueCToCpp
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/
Dencodable_value.h349 assert(IsDouble()); in DoubleValue()
472 bool IsDouble() const { return type_ == Type::kDouble; } in IsDouble() function
/third_party/cef/tests/ceftests/
Dv8_unittest.cc270 EXPECT_FALSE(value->IsDouble()); in RunNullCreateTest()
289 EXPECT_FALSE(value->IsDouble()); in RunBoolCreateTest()
305 EXPECT_TRUE(value->IsDouble()); in RunIntCreateTest()
327 EXPECT_TRUE(value->IsDouble()); in RunUIntCreateTest()
347 EXPECT_TRUE(value->IsDouble()); in RunDoubleCreateTest()
392 EXPECT_FALSE(value->IsDouble()); in RunDateCreateTest()
413 EXPECT_FALSE(value->IsDouble()); in RunStringCreateTest()
433 EXPECT_FALSE(value->IsDouble()); in RunEmptyStringCreateTest()
463 EXPECT_FALSE(value->IsDouble()); in RunArrayCreateTest()
642 EXPECT_FALSE(value->IsDouble()); in RunObjectCreateTest()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8632/
DDataMov.cpp375 static constexpr bool IsDouble = std::is_same<Type, double>::value; \ in TEST_F()
383 if (IsDouble) { \ in TEST_F()
424 static constexpr bool IsDouble = std::is_same<Type, double>::value; \ in TEST_F()
436 if (IsDouble) { \ in TEST_F()
480 static constexpr bool IsDouble = std::is_same<Type, double>::value; \ in TEST_F()
496 if (IsDouble) { \ in TEST_F()
DXmmArith.cpp24 static constexpr bool IsDouble = FloatSize == 64; \ in TEST_F()
25 using Type = std::conditional<IsDouble, double, float>::type; \ in TEST_F()
39 if (IsDouble) { \ in TEST_F()
60 static constexpr bool IsDouble = FloatSize == 64; \ in TEST_F()
61 using Type = std::conditional<IsDouble, double, float>::type; \ in TEST_F()
73 if (IsDouble) { \ in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8664/
DDataMov.cpp529 static constexpr bool IsDouble = std::is_same<Type, double>::value; \ in TEST_F()
536 if (IsDouble) { \ in TEST_F()
585 static constexpr bool IsDouble = std::is_same<Type, double>::value; \ in TEST_F()
596 if (IsDouble) { \ in TEST_F()
648 static constexpr bool IsDouble = std::is_same<Type, double>::value; \ in TEST_F()
662 if (IsDouble) { \ in TEST_F()
DXmmArith.cpp24 static constexpr bool IsDouble = FloatSize == 64; \ in TEST_F()
25 using Type = std::conditional<IsDouble, double, float>::type; \ in TEST_F()
36 if (IsDouble) { \ in TEST_F()
57 static constexpr bool IsDouble = FloatSize == 64; \ in TEST_F()
58 using Type = std::conditional<IsDouble, double, float>::type; \ in TEST_F()
68 if (IsDouble) { \ in TEST_F()
/third_party/cef/include/
Dcef_v8.h579 virtual bool IsDouble() = 0;
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/
Dencodable_value_unittests.cc23 EXPECT_EQ(value.IsDouble(), type == EncodableValue::Type::kDouble); in VerifyType()
/third_party/cef/libcef/renderer/
Dv8_impl.h233 bool IsDouble() override;
Dv8_impl.cc1664 bool CefV8ValueImpl::IsDouble() { in IsDouble() function in CefV8ValueImpl
/third_party/cef/libcef_dll/cpptoc/
Dv8value_cpptoc.cc285 bool _retval = CefV8ValueCppToC::Get(self)->IsDouble(); in v8value_is_double()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsFastISel.cpp709 bool IsDouble = Left->getType()->isDoubleTy(); in emitCmp() local
710 if (!IsFloat && !IsDouble) in emitCmp()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/
DTestSuite.cpp716 if (timesArray.Size() != 1 || !timesArray[0].IsDouble()) in GetSingleTestResultFromJSON()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp278 bool expandTrunc(MCInst &Inst, bool IsDouble, bool Is64FPU, SMLoc IDLoc,
4305 bool MipsAsmParser::expandTrunc(MCInst &Inst, bool IsDouble, bool Is64FPU, in expandTrunc() argument
4329 TOut.emitRR(IsDouble ? (Is64FPU ? Mips::CVT_W_D64 : Mips::CVT_W_D32) in expandTrunc()
4337 TOut.emitRR(IsDouble ? (Is64FPU ? Mips::TRUNC_W_D64 : Mips::TRUNC_W_D32) in expandTrunc()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAutoUpgrade.cpp2818 bool IsDouble = Name[17] == 'd'; in UpgradeIntrinsicCall() local
2824 Intrinsic::ID IID = MinMaxTbl[IsMin][IsDouble]; in UpgradeIntrinsicCall()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMISelLowering.cpp6566 bool IsDouble = (VT == MVT::f64); in LowerConstantFP() local
6601 if (IsDouble && !Subtarget->hasFP64()) in LowerConstantFP()
6605 int ImmVal = IsDouble ? ARM_AM::getFP64Imm(FPVal) : ARM_AM::getFP32Imm(FPVal); in LowerConstantFP()
6608 if (IsDouble || !ST->useNEONForSinglePrecisionFP()) { in LowerConstantFP()
6626 if (!ST->hasNEON() || (!IsDouble && !ST->useNEONForSinglePrecisionFP())) in LowerConstantFP()
6635 if (IsDouble && (iVal & 0xffffffff) != (iVal >> 32)) in LowerConstantFP()
6645 if (IsDouble) in LowerConstantFP()
6662 if (IsDouble) in LowerConstantFP()