/freebsd/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/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | is_array.h | 26 struct _LIBCPP_TEMPLATE_VIS is_array : _BoolConstant<__is_array(_Tp)> {}; struct 36 struct _LIBCPP_TEMPLATE_VIS is_array : public false_type {}; 38 struct _LIBCPP_TEMPLATE_VIS is_array<_Tp[]> : public true_type {}; 40 struct _LIBCPP_TEMPLATE_VIS is_array<_Tp[_Np]> : public true_type {}; 44 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 __conditional_t<is_array<_Up>::value,
|
H A D | is_convertible.h | 54 bool _IsArray = is_array<_Tp>::value,
|
/freebsd/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/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/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 | 366 struct __raw_pointer_compatible_with : _And< _Not<is_array<_Tp>>, is_convertible<_Yp*, _Tp*> > {}; 447 … _If<is_array<_Tp>::value, __is_array_deletable<_Yp*>, __is_deletable<_Yp*> > 695 …__enable_if_t<!is_array<_Yp>::value && is_convertible<_Yp*, typename shared_ptr<_Tp>::element_type… 743 …static_assert(!is_array<_Tp>::value, "std::shared_ptr<T>::operator-> is only valid when T is not a… 769 …static_assert(is_array<_Tp>::value, "std::shared_ptr<T>::operator[] is only valid when T is an arr… 838 template <class _Tp, class _Alloc, class... _Args, __enable_if_t<!is_array<_Tp>::value, int> = 0> 849 template <class _Tp, class... _Args, __enable_if_t<!is_array<_Tp>::value, int> = 0> 856 template <class _Tp, class _Alloc, __enable_if_t<!is_array<_Tp>::value, int> = 0> 863 template <class _Tp, __enable_if_t<!is_array<_Tp>::value, int> = 0>
|
H A D | unique_ptr.h | 180 … __enable_if_t< is_convertible<typename _UPtr::pointer, pointer>::value && !is_array<_Up>::value >; 352 __enable_if_t< is_array<_Up>::value && is_same<pointer, element_type*>::value &&
|
/freebsd/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/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/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/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/sys/dev/hptmv/ |
H A D | hptproc.c | 546 is_array: in hpt_get_info() 558 goto is_array; in hpt_get_info()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | type_traits | 38 template <class T> struct is_array; 253 = is_array<T>::value; // C++17 440 #include <__type_traits/is_array.h>
|
H A D | string_view | 227 #include <__type_traits/is_array.h> 297 …static_assert(!is_array<value_type>::value, "Character type of basic_string_view must not be an ar…
|
H A D | array | 127 #include <__type_traits/is_array.h>
|
/freebsd/contrib/llvm-project/libcxx/include/experimental/ |
H A D | propagate_const | 115 #include <__type_traits/is_array.h> 158 …static_assert(!is_array<_Tp>::value, "Instantiation of propagate_const with an array type is ill-f…
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | type_traits.cppm |
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | FormatEntity.cpp | 859 bool is_array = (type_info_flags & eTypeIsArray) != 0; in DumpValue() local 863 if ((is_array || is_pointer) && (!is_array_range) && in DumpValue() 935 if (!is_array && !is_pointer) in DumpValue()
|
H A D | ValueObject.cpp | 884 const bool is_array = type_flags.Test(eTypeIsArray); in ReadPointedString() local 885 if (is_array) { in ReadPointedString() 902 if (cstr_address_type == eAddressTypeHost && is_array) { in ReadPointedString()
|
/freebsd/contrib/googletest/googletest/include/gtest/ |
H A D | gtest-printers.h | 764 !std::is_array<T>::value>::type>
|