| /freebsd-14.2/contrib/libucl/src/ |
| H A D | ucl_emitter_streamline.c | 33 bool is_array; member 106 if (top != NULL && !top->is_array) { in ucl_object_emit_streamline_start_container() 112 st->is_array = true; in ucl_object_emit_streamline_start_container() 116 st->is_array = false; in ucl_object_emit_streamline_start_container() 128 bool is_array = false, is_first = false; in ucl_object_emit_streamline_add_object() local 131 if (sctx->containers->is_array) { in ucl_object_emit_streamline_add_object() 132 is_array = true; in ucl_object_emit_streamline_add_object() 140 sctx->ops->ucl_emitter_write_elt (ctx, obj, is_first, !is_array); in ucl_object_emit_streamline_add_object() 152 if (st->is_array) { in ucl_object_emit_streamline_end_container()
|
| H A D | ucl_emitter.c | 166 const ucl_object_t *obj, bool compact, bool is_array) in ucl_emitter_finish_object() argument 172 if (!is_array) { in ucl_emitter_finish_object()
|
| H A D | ucl_parser.c | 638 bool is_array, uint32_t level, bool has_obrace) in ucl_parser_add_container() argument 644 nobj = ucl_object_new_full (is_array ? UCL_ARRAY : UCL_OBJECT, parser->chunks->priority); in ucl_parser_add_container() 649 if (obj->type == (is_array ? UCL_OBJECT : UCL_ARRAY)) { in ucl_parser_add_container() 658 nobj->type = is_array ? UCL_ARRAY : UCL_OBJECT; in ucl_parser_add_container() 661 if (!is_array) { in ucl_parser_add_container()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__type_traits/ |
| H A D | is_array.h | 27 struct _LIBCPP_TEMPLATE_VIS is_array : _BoolConstant<__is_array(_Tp)> {}; struct 37 struct _LIBCPP_TEMPLATE_VIS is_array : public false_type {}; 39 struct _LIBCPP_TEMPLATE_VIS is_array<_Tp[]> : public true_type {}; 41 struct _LIBCPP_TEMPLATE_VIS is_array<_Tp[_Np]> : public true_type {}; 45 inline constexpr bool is_array_v = is_array<_Tp>::value;
|
| H A D | is_object.h | 40 … is_scalar<_Tp>::value || is_array<_Tp>::value || is_union<_Tp>::value ||
|
| H A D | decay.h | 47 is_array<_Up>::value,
|
| H A D | is_convertible.h | 54 bool _IsArray = is_array<_Tp>::value,
|
| /freebsd-14.2/tests/atf_python/sys/netpfil/ipfw/ |
| H A D | utils.py | 48 is_array: bool = False variable in AttrDescr 57 ret[ad.val.value]["is_array"] = ad.is_array
|
| /freebsd-14.2/tests/atf_python/sys/netlink/ |
| H A D | utils.py | 37 is_array: bool = False variable in AttrDescr 46 ret[ad.val.value]["is_array"] = ad.is_array
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | construct_at.h | 64 template <class _Tp, __enable_if_t<!is_array<_Tp>::value, int> = 0> 71 template <class _Tp, __enable_if_t<is_array<_Tp>::value, int> = 0>
|
| H A D | shared_ptr.h | 367 struct __raw_pointer_compatible_with : _And< _Not<is_array<_Tp>>, is_convertible<_Yp*, _Tp*> > {}; 439 … _If<is_array<_Tp>::value, __is_array_deletable<_Yp*>, __is_deletable<_Yp*> > 675 class = __enable_if_t< !is_array<_Yp>::value && 723 …static_assert(!is_array<_Tp>::value, "std::shared_ptr<T>::operator-> is only valid when T is not a… 749 …static_assert(is_array<_Tp>::value, "std::shared_ptr<T>::operator[] is only valid when T is an arr… 818 template <class _Tp, class _Alloc, class... _Args, class = __enable_if_t<!is_array<_Tp>::value> > 829 template <class _Tp, class... _Args, class = __enable_if_t<!is_array<_Tp>::value> > 836 template <class _Tp, class _Alloc, __enable_if_t<!is_array<_Tp>::value, int> = 0> 843 template <class _Tp, __enable_if_t<!is_array<_Tp>::value, int> = 0>
|
| H A D | unique_ptr.h | 155 … __enable_if_t< is_convertible<typename _UPtr::pointer, pointer>::value && !is_array<_Up>::value >; 315 __enable_if_t< is_array<_Up>::value && is_same<pointer, element_type*>::value &&
|
| /freebsd-14.2/contrib/libucl/lua/ |
| H A D | lua_ucl.c | 331 bool is_array = true, is_implicit = false, found_mt = false; in ucl_object_lua_fromtable() local 346 is_array = false; in ucl_object_lua_fromtable() 349 is_array = true; in ucl_object_lua_fromtable() 358 is_array = true; in ucl_object_lua_fromtable() 389 is_array = false; in ucl_object_lua_fromtable() 394 is_array = false; in ucl_object_lua_fromtable() 403 if (is_array) { in ucl_object_lua_fromtable()
|
| /freebsd-14.2/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_safe_c_api.h | 38 template <typename T, bool B = std::is_array<T>::value>
|
| /freebsd-14.2/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
| H A D | _nvlist.py | 238 is_array = bool(_lib.nvpair_type_is_array(pair)) 242 if is_array:
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Bitcode/ |
| H A D | BitcodeConvenience.h | 336 template <typename T> struct is_array { 350 using has_array = is_array<typename last_type<int, Types...>::type>;
|
| /freebsd-14.2/sys/dev/hptmv/ |
| H A D | hptproc.c | 546 is_array: in hpt_get_info() 558 goto is_array; in hpt_get_info()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | type_traits | 38 template <class T> struct is_array; 253 = is_array<T>::value; // C++17 449 #include <__type_traits/is_array.h>
|
| H A D | string_view | 225 #include <__type_traits/is_array.h> 293 …static_assert((!is_array<value_type>::value), "Character type of basic_string_view must not be an …
|
| H A D | array | 125 #include <__type_traits/is_array.h>
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/experimental/ |
| H A D | propagate_const | 116 #include <__type_traits/is_array.h> 159 …static_assert(!is_array<_Tp>::value, "Instantiation of propagate_const with an array type is ill-f…
|
| /freebsd-14.2/contrib/llvm-project/libcxx/modules/std/ |
| H A D | type_traits.inc | 19 using std::is_array;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | ValueObject.cpp | 844 const bool is_array = type_flags.Test(eTypeIsArray); in ReadPointedString() local 845 if (is_array) { in ReadPointedString() 862 if (cstr_address_type == eAddressTypeHost && is_array) { in ReadPointedString()
|
| H A D | FormatEntity.cpp | 827 bool is_array = (type_info_flags & eTypeIsArray) != 0; in DumpValue() local 831 if ((is_array || is_pointer) && (!is_array_range) && in DumpValue() 893 if (!is_array && !is_pointer) in DumpValue()
|
| /freebsd-14.2/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest-printers.h | 728 !std::is_array<T>::value>::type>
|