| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | span | 45 using element_type = ElementType; 49 using pointer = element_type*; 50 using const_pointer = const element_type*; 51 using reference = element_type&; 52 using const_reference = const element_type&; 81 constexpr span<element_type, Count> last() const; 210 using element_type = _Tp; 234 requires is_const_v<element_type> 287 return span<element_type, _Count>{data(), _Count}; 390 using element_type = _Tp; [all …]
|
| H A D | mdspan | 256 using element_type = ElementType; 279 using element_type = ElementType; 280 using value_type = remove_cv_t<element_type>; 395 -> mdspan<typename AccessorType::element_type, typename MappingType::extents_type,
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | VectorType.cpp | 26 CompilerType element_type, in GetCompilerTypeForFormat() argument 111 return element_type; in GetCompilerTypeForFormat() 126 CompilerType element_type) { in GetItemFormatForFormat() argument 161 bool is_char = element_type.IsCharType(); in GetItemFormatForFormat() 163 element_type.IsIntegerType(is_signed); in GetItemFormatForFormat() 198 CompilerType element_type) { in CalculateNumChildren() argument 207 element_type.GetByteSize(/* exe_scope */ nullptr); in CalculateNumChildren() 251 CompilerType element_type; in Update() local 253 parent_type.IsVectorType(&element_type, &num_elements); in Update() 255 m_parent_format, element_type, in Update() [all …]
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/experimental/ |
| H A D | memory | 20 using element_type = W; 75 using element_type = _Wp; 80 _LIBCPP_HIDE_FROM_ABI constexpr explicit observer_ptr(element_type* __p) noexcept : __ptr_(__p) {} 86 _LIBCPP_HIDE_FROM_ABI constexpr element_type* get() const noexcept { return __ptr_; } 88 _LIBCPP_HIDE_FROM_ABI constexpr element_type* operator->() const noexcept { return __ptr_; } 92 …_LIBCPP_HIDE_FROM_ABI constexpr explicit operator element_type*() const noexcept { return __ptr_; } 95 _LIBCPP_HIDE_FROM_ABI constexpr void reset(element_type* __p = nullptr) noexcept { __ptr_ = __p; } 101 _LIBCPP_HIDE_FROM_ABI constexpr element_type* release() noexcept { 108 element_type* __ptr_;
|
| H A D | propagate_const | 57 typedef remove_reference_t<decltype(*declval<T&>())> element_type; 74 constexpr const element_type* operator->() const; 75 constexpr operator const element_type*() const; // Not always defined 76 constexpr const element_type& operator*() const; 77 constexpr const element_type* get() const; 80 constexpr element_type* operator->(); 81 constexpr operator element_type*(); // Not always defined 82 constexpr element_type& operator*(); 83 constexpr element_type* get(); 157 typedef remove_reference_t<decltype(*std::declval<_Tp&>())> element_type; [all …]
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | pointer_traits.h | 35 struct __has_element_type<_Tp, __void_t<typename _Tp::element_type> > : true_type {}; 42 typedef _LIBCPP_NODEBUG typename _Ptr::element_type type; 47 typedef _LIBCPP_NODEBUG typename _Sp<_Tp, _Args...>::element_type type; 114 typedef typename __pointer_traits_element_type<pointer>::type element_type; 132 pointer_to(__conditional_t<is_void<element_type>::value, __nat, element_type>& __r) { 143 typedef _Tp element_type; 161 pointer_to(__conditional_t<is_void<element_type>::value, __nat, element_type>& __r) _NOEXCEPT {
|
| H A D | shared_ptr.h | 418 typedef remove_extent_t<_Tp> element_type; 420 typedef _Tp element_type; 424 element_type* __ptr_; 722 _LIBCPP_HIDE_FROM_ABI element_type* operator->() const _NOEXCEPT { 1172 return less<typename shared_ptr<_Tp>::element_type*>()(__x.get(), nullptr); 1240 typedef typename shared_ptr<_Tp>::element_type _ET; 1257 typedef typename shared_ptr<_Tp>::element_type _RTp; 1297 typedef remove_extent_t<_Tp> element_type; 1299 typedef _Tp element_type; 1303 element_type* __ptr_; [all …]
|
| H A D | auto_ptr.h | 34 typedef _Tp element_type; typedef 85 typedef void element_type; typedef
|
| H A D | unique_ptr.h | 126 typedef _Tp element_type; 275 typedef _Tp element_type; 289 (is_same<pointer, element_type*>::value && 290 is_convertible<_FromElem (*)[], element_type (*)[]>::value) > {}; 313 template <class _UPtr, class _Up, class _ElemT = typename _UPtr::element_type> 315 __enable_if_t< is_array<_Up>::value && is_same<pointer, element_type*>::value && 317 is_convertible<_ElemT (*)[], element_type (*)[]>::value >;
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__iterator/ |
| H A D | readable_traits.h | 45 concept __has_member_element_type = requires { typename _Tp::element_type; }; 66 struct indirectly_readable_traits<_Tp> : __cond_value_type<typename _Tp::element_type> {}; 74 same_as<remove_cv_t<typename _Tp::element_type>, remove_cv_t<typename _Tp::value_type>>
|
| H A D | bounded_iter.h | 224 using element_type = typename pointer_traits<_Iterator>::element_type; 227 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR static element_type* to_address(pointer __it) _NOEXCEPT {
|
| H A D | wrap_iter.h | 207 typedef typename pointer_traits<_It>::element_type element_type; 210 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR static element_type* to_address(pointer __w) _NOEXCEPT {
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__mdspan/ |
| H A D | default_accessor.h | 45 using element_type = _ElementType; member 51 requires(is_convertible_v<_OtherElementType (*)[], element_type (*)[]>) in requires()
|
| H A D | mdspan.h | 73 static_assert(is_same_v<_ElementType, typename _AccessorPolicy::element_type>, 84 using element_type = _ElementType; variable 85 using value_type = remove_cv_t<element_type>; 302 -> mdspan<typename _AccessorType::element_type,
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
| H A D | StringPrinter.h | 148 template <StringElementType element_type> 152 template <StringElementType element_type>
|
| /freebsd-14.2/sbin/camcontrol/ |
| H A D | attrib.c | 120 int element_type = ELEMENT_TYPE_ALL; in scsiattrib() local 271 element_type = elem_type_map[entry_num].value; in scsiattrib() 320 /*elem_type*/ element_type, in scsiattrib()
|
| /freebsd-14.2/bin/chio/ |
| H A D | defs.h | 34 struct element_type { struct
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | LibCxx.cpp | 915 template <StringPrinter::StringElementType element_type> 956 return StringPrinter::ReadBufferAndDumpToStream<element_type>(options); in LibcxxStringSummaryProvider() 959 template <StringPrinter::StringElementType element_type> 971 return LibcxxStringSummaryProvider<element_type>( in LibcxxStringSummaryProvider() 974 template <StringPrinter::StringElementType element_type> 979 const bool success = LibcxxStringSummaryProvider<element_type>( in formatStringImpl() 1029 template <StringPrinter::StringElementType element_type> 1044 return LibcxxStringSummaryProvider<element_type>( in formatStringViewImpl()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | simple_packed_serialization.h | 268 using element_type = char; variable 297 using element_type = typename std::vector<T>::value_type; variable 323 using element_type = std::pair<K, V>; variable 328 static bool append(std::unordered_map<K, V> &M, element_type E) { in append() 364 typename TBSD::element_type E; in deserialize()
|
| H A D | adt.h | 29 typedef T element_type; typedef
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 68 bool CompilerType::IsVectorType(CompilerType *element_type, in IsVectorType() argument 72 return type_system_sp->IsVectorType(m_type, element_type, size); in IsVectorType() 292 CompilerType element_type; in IsArrayOfScalarType() local 293 if (IsArrayType(&element_type)) in IsArrayOfScalarType() 294 return element_type.IsScalarType(); in IsArrayOfScalarType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Signposts.cpp | 42 using LogTy = LogPtrTy::element_type;
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 121 bool IsArrayType(CompilerType *element_type = nullptr, 125 bool IsVectorType(CompilerType *element_type = nullptr,
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCTypeEncodingParser.cpp | 156 clang::QualType element_type(BuildType(ast_ctx, type, for_expression)); in BuildArray() local 160 CompilerType(ast_ctx.weak_from_this(), element_type.getAsOpaquePtr()), in BuildArray()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | SimplePackedSerialization.h | 277 using element_type = char; variable 299 using element_type = typename std::vector<T>::value_type; variable 321 using element_type = typename SmallVectorImpl<T>::value_type; variable 409 typename TBSD::element_type E; in deserialize()
|