Searched refs:ArithmeticType (Results 1 – 6 of 6) sorted by relevance
/third_party/json/include/nlohmann/detail/conversions/ |
D | from_json.hpp | 47 template < typename BasicJsonType, typename ArithmeticType, 48 enable_if_t < std::is_arithmetic<ArithmeticType>::value&& 49 !std::is_same<ArithmeticType, typename BasicJsonType::boolean_t>::value, 51 void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val) in get_arithmetic_value() 57 …val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigne… in get_arithmetic_value() 62 …val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_integer… in get_arithmetic_value() 67 …val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_float_t… in get_arithmetic_value() 332 template < typename BasicJsonType, typename ArithmeticType, 334 std::is_arithmetic<ArithmeticType>::value&& 335 !std::is_same<ArithmeticType, typename BasicJsonType::number_unsigned_t>::value&& [all …]
|
/third_party/node/deps/v8/src/compiler/ |
D | loop-variable-optimizer.h | 29 enum ArithmeticType { kAddition, kSubtraction }; enum 40 ArithmeticType Type() { return arithmeticType_; } in Type() 47 Node* init_value, Zone* zone, ArithmeticType arithmeticType) in InductionVariable() 67 ArithmeticType arithmeticType_;
|
D | loop-variable-optimizer.cc | 229 InductionVariable::ArithmeticType arithmeticType; in TryGetInductionVariable() 234 arithmeticType = InductionVariable::ArithmeticType::kAddition; in TryGetInductionVariable() 239 arithmeticType = InductionVariable::ArithmeticType::kSubtraction; in TryGetInductionVariable()
|
D | typer.cc | 801 InductionVariable::ArithmeticType arithmetic_type = induction_var->Type(); in TypeInductionVariablePhi() 808 if (arithmetic_type == InductionVariable::ArithmeticType::kAddition) { in TypeInductionVariablePhi() 812 DCHECK_EQ(arithmetic_type, InductionVariable::ArithmeticType::kSubtraction); in TypeInductionVariablePhi() 870 InductionVariable::ArithmeticType::kAddition in TypeInductionVariablePhi()
|
/third_party/json/tests/abi/include/nlohmann/ |
D | json_v3_10_5.hpp | 3844 template < typename BasicJsonType, typename ArithmeticType, 3845 enable_if_t < std::is_arithmetic<ArithmeticType>::value&& 3846 !std::is_same<ArithmeticType, typename BasicJsonType::boolean_t>::value, 3848 void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val) in get_arithmetic_value() 3854 …val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigne… in get_arithmetic_value() 3859 …val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_integer… in get_arithmetic_value() 3864 …val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_float_t… in get_arithmetic_value() 4127 template < typename BasicJsonType, typename ArithmeticType, 4129 std::is_arithmetic<ArithmeticType>::value&& 4130 !std::is_same<ArithmeticType, typename BasicJsonType::number_unsigned_t>::value&& [all …]
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 4603 template < typename BasicJsonType, typename ArithmeticType, 4604 enable_if_t < std::is_arithmetic<ArithmeticType>::value&& 4605 !std::is_same<ArithmeticType, typename BasicJsonType::boolean_t>::value, 4607 void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val) in get_arithmetic_value() 4613 …val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigne… in get_arithmetic_value() 4618 …val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_integer… in get_arithmetic_value() 4623 …val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_float_t… in get_arithmetic_value() 4888 template < typename BasicJsonType, typename ArithmeticType, 4890 std::is_arithmetic<ArithmeticType>::value&& 4891 !std::is_same<ArithmeticType, typename BasicJsonType::number_unsigned_t>::value&& [all …]
|