/third_party/boost/libs/type_traits/test/ |
D | is_object_test.cpp | 15 TT_TEST_BEGIN(is_object) 17 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_object<int>::value, true); 18 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_object<UDT>::value, true); 19 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_object<int&>::value, false); 21 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_object<int&&>::value, false); 23 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_object<void>::value, false); 24 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_object<foo4_t>::value, false); 25 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_object<test_abc1>::value, true); 27 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_object<incomplete_type>::value, true);
|
D | type_traits_test.cpp | 67 typedef boost::is_object<int>::type t50;
|
/third_party/json/doc/examples/ |
D | is_object.cpp | 21 std::cout << j_null.is_object() << '\n'; in main() 22 std::cout << j_boolean.is_object() << '\n'; in main() 23 std::cout << j_number_integer.is_object() << '\n'; in main() 24 std::cout << j_number_unsigned_integer.is_object() << '\n'; in main() 25 std::cout << j_number_float.is_object() << '\n'; in main() 26 std::cout << j_object.is_object() << '\n'; in main() 27 std::cout << j_array.is_object() << '\n'; in main() 28 std::cout << j_string.is_object() << '\n'; in main() 29 std::cout << j_binary.is_object() << '\n'; in main()
|
/third_party/boost/libs/type_traits/doc/ |
D | is_object.qbk | 8 [section:is_object is_object] 10 struct is_object : public __tof {}; 21 __header ` #include <boost/type_traits/is_object.hpp>` or ` #include <boost/type_traits.hpp>` 25 [:`is_object<int>` inherits from `__true_type`.] 27 [:`is_object<int*>::type` is the type `__true_type`.] 29 [:`is_object<int (*)(void)>::value` is an integral constant 32 [:`is_object<int (MyClass::*)(void)const>::value` is an integral constant 35 [:`is_object<int &>::value` is an integral constant 38 [:`is_object<int (double)>::value` is an integral constant 41 [:`is_object<const void>::value` is an integral constant [all …]
|
/third_party/json/test/src/ |
D | unit-inspection.cpp | 53 CHECK(j.is_object()); 71 CHECK(!j.is_object()); 89 CHECK(!j.is_object()); 107 CHECK(!j.is_object()); 125 CHECK(!j.is_object()); 143 CHECK(!j.is_object()); 161 CHECK(!j.is_object()); 179 CHECK(!j.is_object()); 197 CHECK(!j.is_object()); 215 CHECK(!j.is_object());
|
/third_party/json/include/nlohmann/ |
D | json.hpp | 1157 else if (current_item.is_object()) in destroy() 2384 return is_array() || is_object(); in is_structured() 2563 constexpr bool is_object() const noexcept in is_object() function in nlohmann::basic_json 2708 return is_object() ? m_value.object : nullptr; in get_impl_ptr() 2714 return is_object() ? m_value.object : nullptr; in get_impl_ptr() 3406 if (JSON_HEDLEY_LIKELY(is_object())) in at() 3457 if (JSON_HEDLEY_LIKELY(is_object())) in at() 3595 if (JSON_HEDLEY_LIKELY(is_object())) in operator []() 3636 if (JSON_HEDLEY_LIKELY(is_object())) in operator []() 3685 if (JSON_HEDLEY_LIKELY(is_object())) in operator []() [all …]
|
/third_party/protobuf/php/tests/ |
D | WrapperTypeSettersTest.php | 239 … if (is_object($expectedElement) && is_a($expectedElement, '\Google\Protobuf\StringValue')) { 280 … if (is_object($expectedElement) && is_a($expectedElement, '\Google\Protobuf\StringValue')) { 282 …} elseif (is_object($expectedElement) && is_a($expectedElement, '\Google\Protobuf\Internal\MapEntr…
|
/third_party/boost/libs/asio/include/boost/asio/detail/ |
D | type_traits.hpp | 75 using std::is_object; 123 using boost::is_object;
|
/third_party/boost/boost/asio/detail/ |
D | type_traits.hpp | 75 using std::is_object; 123 using boost::is_object;
|
/third_party/json/include/nlohmann/detail/input/ |
D | json_sax.hpp | 296 JSON_ASSERT(ref_stack.back()->is_array() || ref_stack.back()->is_object()); in handle_value() 304 JSON_ASSERT(ref_stack.back()->is_object()); in handle_value() 572 JSON_ASSERT(ref_stack.back()->is_array() || ref_stack.back()->is_object()); in handle_value() 582 JSON_ASSERT(ref_stack.back()->is_object()); in handle_value()
|
/third_party/boost/boost/dll/detail/ |
D | import_mangled_helpers.hpp | 154 static_assert(boost::is_object<T0>::value, ""); 216 boost::is_function<U>::value && boost::is_object<T>::value, 234 boost::is_object<T>::value && boost::is_function<U>::value,
|
/third_party/boost/boost/type_traits/ |
D | is_object.hpp | 19 template <class T> struct is_object struct
|
/third_party/boost/boost/asio/execution/ |
D | operation_state.hpp | 39 && is_object<T>::value
|
/third_party/boost/libs/asio/include/boost/asio/execution/ |
D | operation_state.hpp | 39 && is_object<T>::value
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | Magic.h | 55 bool is_object() const { return V != unknown; } in is_object() function
|
/third_party/json/include/nlohmann/detail/iterators/ |
D | iterator_traits.hpp | 42 struct iterator_traits<T*, enable_if_t<std::is_object<T>::value>>
|
/third_party/boost/boost/dll/ |
D | import.hpp | 74 struct import_type<T, typename boost::disable_if<boost::is_object<T> >::type> { 85 struct import_type<T, typename boost::enable_if<boost::is_object<T> >::type> {
|
/third_party/boost/libs/stl_interfaces/example/ |
D | interoperability.cpp | 25 static_assert(std::is_object<ValueType>::value, "");
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-iterator-object.c | 475 bool is_object = ecma_is_value_object (inner_result); in ecma_op_iterator_close() local 478 if (!is_object) in ecma_op_iterator_close()
|
/third_party/boost/boost/hana/ |
D | traits.hpp | 59 constexpr auto is_object = detail::hana_trait<std::is_object>{};
|
/third_party/boost/libs/hana/include/boost/hana/ |
D | traits.hpp | 59 constexpr auto is_object = detail::hana_trait<std::is_object>{};
|
/third_party/boost/boost/outcome/ |
D | trait.hpp | 50 && (std::is_void<R>::value || (std::is_object<R>::value //
|
/third_party/abseil-cpp/absl/meta/ |
D | type_traits.h | 377 std::is_object<T>::value && !std::is_array<T>::value, 412 std::is_object<T>::value && !std::is_array<T>::value, 449 std::is_object<T>::value && !std::is_array<T>::value &&
|
/third_party/skia/third_party/externals/abseil-cpp/absl/meta/ |
D | type_traits.h | 377 std::is_object<T>::value && !std::is_array<T>::value, 412 std::is_object<T>::value && !std::is_array<T>::value, 449 std::is_object<T>::value && !std::is_array<T>::value &&
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
D | GPBUtil.php | 95 if (is_array($var) || is_object($var)) { 188 if (is_array($var) || is_object($var)) {
|