Home
last modified time | relevance | path

Searched refs:element_type (Results 1 – 25 of 42) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dspan45 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&;
62 constexpr span(element_type (&arr)[N]) noexcept;
81 constexpr span<element_type, Count> last() const;
203 using element_type = _Tp;
323 constexpr span<element_type, dynamic_extent>
382 using element_type = _Tp;
[all …]
H A Dmemory28 typedef <details> element_type;
40 typedef T element_type;
231 typedef X element_type;
274 typedef T element_type;
316 typedef T element_type;
408 typedef T element_type;
528 typedef T element_type;
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DVectorType.cpp25 CompilerType element_type, in GetCompilerTypeForFormat() argument
108 return element_type; in GetCompilerTypeForFormat()
123 CompilerType element_type) { in GetItemFormatForFormat() argument
158 bool is_char = element_type.IsCharType(); in GetItemFormatForFormat()
160 element_type.IsIntegerType(is_signed); in GetItemFormatForFormat()
170 CompilerType container_type, CompilerType element_type, in CalculateNumChildren() argument
176 llvm::Optional<uint64_t> element_size = element_type.GetByteSize(exe_scope); in CalculateNumChildren()
221 CompilerType element_type; in Update() local
222 parent_type.IsVectorType(&element_type); in Update()
223 m_child_type = ::GetCompilerTypeForFormat(m_parent_format, element_type, in Update()
H A DFormatManager.cpp241 CompilerType element_type = compiler_type.GetArrayElementType( in GetPossibleMatches() local
243 if (element_type.IsTypedefType()) { in GetPossibleMatches()
247 element_type.GetTypedefedType().GetArrayType(array_size); in GetPossibleMatches()
/freebsd-13.1/contrib/llvm-project/libcxx/include/__memory/
H A Dpointer_traits.h31 typename __void_t<typename _Tp::element_type>::type> : true_type {};
39 typedef _LIBCPP_NODEBUG_TYPE typename _Ptr::element_type type;
45 typedef _LIBCPP_NODEBUG_TYPE typename _Sp<_Tp, _Args...>::element_type type;
116 typedef typename __pointer_traits_element_type<pointer>::type element_type;
130 static pointer pointer_to(typename conditional<is_void<element_type>::value,
131 __nat, element_type>::type& __r)
139 typedef _Tp element_type;
152 static pointer pointer_to(typename conditional<is_void<element_type>::value,
153 __nat, element_type>::type& __r) _NOEXCEPT
H A Dshared_ptr.h427 typedef remove_extent_t<_Tp> element_type;
429 typedef _Tp element_type;
433 element_type* __ptr_;
515 __compatible_with<_Yp, element_type>::value,
525 __compatible_with<_Yp, element_type>::value,
536 is_convertible<_Yp*, element_type*>::value,
557 __compatible_with<_Yp, element_type>::value,
585 element_type* operator->() const _NOEXCEPT
611 typename add_lvalue_reference<element_type>::type
1329 typedef _Tp element_type;
[all …]
H A Dauto_ptr.h37 typedef _Tp element_type; typedef
79 typedef void element_type; typedef
H A Dunique_ptr.h123 typedef _Tp element_type;
331 typedef _Tp element_type;
345 (is_same<pointer, element_type*>::value &&
346 is_convertible<_FromElem(*)[], element_type(*)[]>::value)
380 class _ElemT = typename _UPtr::element_type>
383 is_same<pointer, element_type*>::value &&
385 is_convertible<_ElemT(*)[], element_type(*)[]>::value
/freebsd-13.1/contrib/llvm-project/libcxx/include/experimental/
H A Dpropagate_const73 constexpr const element_type* operator->() const;
75 constexpr const element_type& operator*() const;
76 constexpr const element_type* get() const;
79 constexpr element_type* operator->();
81 constexpr element_type& operator*();
82 constexpr element_type* get();
245 _LIBCPP_CONSTEXPR const element_type* get() const
250 _LIBCPP_CONSTEXPR element_type* get()
276 _LIBCPP_CONSTEXPR element_type* operator->()
283 _LIBCPP_CONSTEXPR operator element_type *() {
[all …]
/freebsd-13.1/contrib/llvm-project/libcxx/include/__iterator/
H A Dreadable_traits.h39 concept __has_member_element_type = requires { typename _Tp::element_type; };
61 : __cond_value_type<typename _Tp::element_type> {};
69 same_as<remove_cv_t<typename _Tp::element_type>,
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DStringPrinter.h148 template <StringElementType element_type>
152 template <StringElementType element_type>
/freebsd-13.1/sbin/camcontrol/
H A Dattrib.c122 int element_type = ELEMENT_TYPE_ALL; in scsiattrib() local
275 element_type = elem_type_map[entry_num].value; in scsiattrib()
324 /*elem_type*/ element_type, in scsiattrib()
/freebsd-13.1/bin/chio/
H A Ddefs.h35 struct element_type { struct
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/orc/
H A Dsimple_packed_serialization.h258 using element_type = char; variable
280 using element_type = typename std::vector<T>::value_type; variable
306 using element_type = std::pair<K, V>; variable
311 static bool append(std::unordered_map<K, V> &M, element_type E) { in append()
347 typename TBSD::element_type E; in deserialize()
H A Dadt.h28 typedef T element_type; typedef
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp64 bool CompilerType::IsVectorType(CompilerType *element_type, in IsVectorType() argument
67 return m_type_system->IsVectorType(m_type, element_type, size); in IsVectorType()
250 CompilerType element_type; in IsArrayOfScalarType() local
251 if (IsArrayType(&element_type)) in IsArrayOfScalarType()
252 return element_type.IsScalarType(); in IsArrayOfScalarType()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp717 template <StringPrinter::StringElementType element_type>
760 return StringPrinter::ReadBufferAndDumpToStream<element_type>(options); in LibcxxStringSummaryProvider()
763 template <StringPrinter::StringElementType element_type>
768 const bool success = LibcxxStringSummaryProvider<element_type>( in formatStringImpl()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h74 bool IsArrayType(CompilerType *element_type = nullptr,
78 bool IsVectorType(CompilerType *element_type = nullptr,
H A DTypeSystem.h139 CompilerType *element_type, uint64_t *size,
440 CompilerType *element_type, uint64_t *size) = 0;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp154 clang::QualType element_type(BuildType(ast_ctx, type, for_expression)); in BuildArray() local
158 CompilerType(&ast_ctx, element_type.getAsOpaquePtr()), size, false)); in BuildArray()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DSimplePackedSerialization.h261 using element_type = char; variable
283 using element_type = typename std::vector<T>::value_type; variable
323 typename TBSD::element_type E; in deserialize()
/freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h148 typedef T element_type; typedef
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h78 typedef typename Pointer::element_type type;
88 inline const typename Pointer::element_type* GetRawPointer(const Pointer& p) {
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h167 using element_type = T;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp676 lldb_private::Type *element_type = symbol_file->ResolveTypeUID(element_uid); in CreateLLDBTypeFromPDBType() local
677 if (!element_type) in CreateLLDBTypeFromPDBType()
680 CompilerType element_ast_type = element_type->GetForwardCompilerType(); in CreateLLDBTypeFromPDBType()
697 type_sp->SetEncodingType(element_type); in CreateLLDBTypeFromPDBType()

12