Searched refs:element_type (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-11-stable/bin/chio/
H A Ddefs.h35 struct element_type { struct
/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_memory.h181 typedef _Tp element_type; typedef in class:auto_ptr
190 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
206 * pointer-to-Tp/element_type.
233 * A pointer-to-Tp1 must be convertible to a pointer-to-Tp/element_type.
269 element_type&
282 element_type*
299 element_type*
313 element_type*
316 element_type* __tmp = _M_ptr;
329 reset(element_type* __
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/
H A DCFUtils.h26 typedef T element_type; typedef in class:CFReleaser
71 element_type _ptr;
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DVectorType.cpp25 CompilerType element_type,
108 return element_type;
123 CompilerType element_type) {
158 bool is_char = element_type.IsCharType();
160 element_type.IsIntegerType(is_signed);
170 CompilerType container_type, CompilerType element_type,
176 llvm::Optional<uint64_t> element_size = element_type.GetByteSize(exe_scope);
221 CompilerType element_type; variable
222 parent_type.IsVectorType(&element_type, nullptr);
236 ::GetCompilerTypeForFormat(m_parent_format, element_type, type_syste
24 GetCompilerTypeForFormat(lldb::Format format, CompilerType element_type, TypeSystem *type_system) argument
122 GetItemFormatForFormat(lldb::Format format, CompilerType element_type) argument
169 CalculateNumChildren( CompilerType container_type, CompilerType element_type, lldb_private::ExecutionContextScope *exe_scope = nullptr ) argument
[all...]
H A DFormatManager.cpp247 CompilerType element_type = compiler_type.GetArrayElementType(); local
248 if (element_type.IsTypedefType()) {
252 element_type.GetTypedefedType().GetArrayType(array_size);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DSignposts.cpp38 using LogTy = LogPtrTy::element_type;
/freebsd-11-stable/contrib/libstdc++/include/tr1/
H A Dboost_shared_ptr.h506 typedef _Tp element_type; typedef in class:std::__shared_ptr
516 * @param __p A pointer that is convertible to element_type*.
600 : _M_ptr(static_cast<element_type*>(__r._M_ptr)),
606 : _M_ptr(const_cast<element_type*>(__r._M_ptr)),
612 : _M_ptr(dynamic_cast<element_type*>(__r._M_ptr)),
790 typedef _Tp element_type; typedef in class:std::__weak_ptr
849 return __shared_ptr<element_type, _Lp>();
853 return __shared_ptr<element_type, _Lp>(*this);
860 return __shared_ptr<element_type, _Lp>();
865 return expired() ? __shared_ptr<element_type, _L
[all...]
/freebsd-11-stable/sbin/camcontrol/
H A Dattrib.c122 int element_type = ELEMENT_TYPE_ALL; local
275 element_type = elem_type_map[entry_num].value;
324 /*elem_type*/ element_type,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DSharingPtr.h111 typedef T element_type; typedef in class:lldb_private::SharingPtr
114 element_type *ptr_;
126 template <class Y> SharingPtr(const SharingPtr<Y> &r, element_type *p);
140 element_type *get() const { return ptr_; }
141 element_type &operator*() const { return *ptr_; }
142 element_type *operator->() const { return ptr_; }
190 inline SharingPtr<T>::SharingPtr(const SharingPtr<Y> &r, element_type *p)
492 typedef T element_type; typedef in class:lldb_private::IntrusiveSharingPtr
555 element_type *ptr_;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h71 bool IsArrayType(CompilerType *element_type, uint64_t *size,
74 bool IsVectorType(CompilerType *element_type, uint64_t *size) const;
H A DTypeSystem.h134 CompilerType *element_type, uint64_t *size,
418 CompilerType *element_type, uint64_t *size) = 0;
H A DClangASTContext.h365 CompilerType CreateArrayType(const CompilerType &element_type,
471 CompilerType *element_type, uint64_t *size,
475 CompilerType *element_type, uint64_t *size) override;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DStringPrinter.h213 template <StringElementType element_type>
217 template <StringElementType element_type>
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp58 bool CompilerType::IsVectorType(CompilerType *element_type, argument
61 return m_type_system->IsVectorType(m_type, element_type, size);
244 CompilerType element_type; local
245 if (IsArrayType(&element_type, nullptr, nullptr))
246 return element_type.IsScalarType();
H A DClangASTContext.cpp1966 CompilerType ClangASTContext::CreateArrayType(const CompilerType &element_type, argument
1969 if (element_type.IsValid()) {
1973 return GetType(ast.getExtVectorType(ClangUtil::GetQualType(element_type),
1980 ClangUtil::GetQualType(element_type), clang::ArrayType::Normal, 0));
1983 ClangUtil::GetQualType(element_type), ap_element_count, nullptr,
2651 CompilerType *element_type, uint64_t *size) {
2662 if (element_type)
2663 *element_type = GetType(vector_type->getElementType());
2673 if (element_type)
2674 *element_type
2650 IsVectorType(lldb::opaque_compiler_type_t type, CompilerType *element_type, uint64_t *size) argument
6049 CompilerType element_type = GetType(array->getElementType()); local
6071 CompilerType element_type = GetType(array->getElementType()); local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp152 clang::QualType element_type(BuildType(ast_ctx, type, for_expression));
156 CompilerType(&ast_ctx, element_type.getAsOpaquePtr()), size, false));
/freebsd-11-stable/contrib/gdb/gdb/
H A Deval.c516 struct type *element_type = TYPE_TARGET_TYPE (type);
518 int element_size = TYPE_LENGTH (check_typedef (element_type));
536 element = evaluate_subexp (element_type, exp, pos, noside);
537 if (VALUE_TYPE (element) != element_type)
538 element = value_cast (element_type, element);
567 struct type *element_type = TYPE_INDEX_TYPE (type);
568 struct type *check_type = element_type;
576 if (get_discrete_bounds (element_type, &low_bound, &high_bound) < 0)
587 elem_val = evaluate_subexp (element_type, exp, pos, noside);
590 elem_val = evaluate_subexp (element_type, ex
514 struct type *element_type = TYPE_TARGET_TYPE (type); local
565 struct type *element_type = TYPE_INDEX_TYPE (type); local
[all...]
H A Dvalops.c228 struct type *element_type = TYPE_TARGET_TYPE (type); local
229 unsigned element_length = TYPE_LENGTH (check_typedef (element_type));
248 element_type, range_type);
2847 struct type *element_type = TYPE_TARGET_TYPE (array_type);
2849 = (lowbound - lowerbound) * TYPE_LENGTH (check_typedef (element_type));
2850 slice_type = create_array_type ((struct type *) NULL, element_type,
2845 struct type *element_type = TYPE_TARGET_TYPE (array_type); local
H A Dgdbtypes.c737 create_array_type (struct type *result_type, struct type *element_type, argument
747 TYPE_TARGET_TYPE (result_type) = element_type;
750 CHECK_TYPEDEF (element_type);
752 TYPE_LENGTH (element_type) * (high_bound - low_bound + 1);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h139 using element_type = T;
/freebsd-11-stable/contrib/binutils/binutils/
H A Ddebug.c216 debug_type element_type; member in struct:debug_array_type
1480 debug_make_array_type (void *handle, debug_type element_type,
1488 if (element_type == NULL || range_type == NULL)
1498 a->element_type = element_type;
2590 if (! debug_write_type (info, fns, fhandle, type->u.karray->element_type,
3167 && debug_type_samep (info, t1->u.karray->element_type,
3168 t2->u.karray->element_type));
1478 debug_make_array_type(void *handle, debug_type element_type, debug_type range_type, bfd_signed_vma lower, bfd_signed_vma upper, bfd_boolean stringp) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp619 template <StringPrinter::StringElementType element_type>
660 StringPrinter::ReadBufferAndDumpToStream<element_type>(options);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp656 lldb_private::Type *element_type = local
658 if (!element_type)
661 CompilerType element_ast_type = element_type->GetForwardCompilerType();
678 type_sp->SetEncodingType(element_type);
/freebsd-11-stable/contrib/gcc/cp/
H A Dtree.c496 tree element_type
501 if (element_type == error_mark_node)
516 TREE_TYPE (t) = element_type;
527 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (element_type));
529 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (element_type));
494 tree element_type local
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1239 Type *element_type = dwarf->ResolveTypeUID(type_die, true); local
1241 if (!element_type)
1250 attrs.byte_stride = element_type->GetByteSize().getValueOr(0);
1251 CompilerType array_element_type = element_type->GetForwardCompilerType();
1315 type_sp->SetEncodingType(element_type);

Completed in 220 milliseconds

12