Home
last modified time | relevance | path

Searched refs:is_object (Results 1 – 25 of 55) sorted by relevance

123

/third_party/boost/libs/type_traits/test/
Dis_object_test.cpp15 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);
Dtype_traits_test.cpp67 typedef boost::is_object<int>::type t50;
/third_party/json/doc/examples/
Dis_object.cpp21 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/
Dis_object.qbk8 [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/
Dunit-inspection.cpp53 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/
Djson.hpp1157 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/
DWrapperTypeSettersTest.php239 … 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/
Dtype_traits.hpp75 using std::is_object;
123 using boost::is_object;
/third_party/boost/boost/asio/detail/
Dtype_traits.hpp75 using std::is_object;
123 using boost::is_object;
/third_party/json/include/nlohmann/detail/input/
Djson_sax.hpp296 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/
Dimport_mangled_helpers.hpp154 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/
Dis_object.hpp19 template <class T> struct is_object struct
/third_party/boost/boost/asio/execution/
Doperation_state.hpp39 && is_object<T>::value
/third_party/boost/libs/asio/include/boost/asio/execution/
Doperation_state.hpp39 && is_object<T>::value
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMagic.h55 bool is_object() const { return V != unknown; } in is_object() function
/third_party/json/include/nlohmann/detail/iterators/
Diterator_traits.hpp42 struct iterator_traits<T*, enable_if_t<std::is_object<T>::value>>
/third_party/boost/boost/dll/
Dimport.hpp74 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/
Dinteroperability.cpp25 static_assert(std::is_object<ValueType>::value, "");
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-iterator-object.c475 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/
Dtraits.hpp59 constexpr auto is_object = detail::hana_trait<std::is_object>{};
/third_party/boost/libs/hana/include/boost/hana/
Dtraits.hpp59 constexpr auto is_object = detail::hana_trait<std::is_object>{};
/third_party/boost/boost/outcome/
Dtrait.hpp50 && (std::is_void<R>::value || (std::is_object<R>::value //
/third_party/abseil-cpp/absl/meta/
Dtype_traits.h377 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/
Dtype_traits.h377 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/
DGPBUtil.php95 if (is_array($var) || is_object($var)) {
188 if (is_array($var) || is_object($var)) {

123