Home
last modified time | relevance | path

Searched refs:is_value (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/boost/phoenix/core/
Dis_value.hpp34 struct is_value struct
39 struct is_value<T const> struct
40 : is_value<T>
44 struct is_value<T &> struct
45 : is_value<T>
51 struct is_value< expression::value<T> > struct
58 return is_value<T>::value; in is_val()
/third_party/boost/boost/flyweight/detail/
Dvalue_tag.hpp37 struct is_value:is_base_and_derived<value_marker,T> struct
/third_party/mesa3d/src/compiler/glsl/
Dopt_algebraic.cpp118 return (ir == NULL) ? false : ir->is_value(2.0, 2); in is_vec_two()
124 return (ir == NULL) ? false : ir->is_value(4.0, 4); in is_vec_four()
653 if (!point_five || !point_five->is_value(0.5, 0)) in handle_expression()
Dir.cpp1576 ir_constant::is_value(float f, int i) const in is_value() function in ir_constant
1645 return is_value(0.0, 0); in is_zero()
1651 return is_value(1.0, 1); in is_one()
1657 return is_value(-1.0, -1); in is_negative_one()
Dir.h2343 virtual bool is_value(float f, int i) const;
/third_party/boost/boost/flyweight/
Dflyweight.hpp126 detail::is_value<T>,
/third_party/mindspore/mindspore/core/base/
Dbase_ref.h51 using is_value = std::is_base_of<Value, remove_reference_t<T>>; variable
/third_party/protobuf/src/google/protobuf/
Dmap_test.cc2402 bool is_value = !is_key && (k & 0x2); in TEST() local
2404 : is_value ? kValueTag : kJunkTag); in TEST()
2408 if (is_value) expected_value = static_cast<int>(c); in TEST()