| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/ |
| H A D | ctor_iterators.pass.cpp | 21 using base_type = std::queue<int, std::deque<int, test_allocator<int>>>; typedef 23 class GetAlloc : public base_type { 28 : base_type(begin, end, test_allocator<int>(&stats_)), stats(&stats_) {} in GetAlloc()
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/stack/stack.cons.alloc/ |
| H A D | ctor_iterators.pass.cpp | 21 using base_type = std::stack<int, std::deque<int, test_allocator<int>>>; typedef 23 class GetAlloc : public base_type { 28 : base_type(begin, end, test_allocator<int>(&stats_)), stats(&stats_) {} in GetAlloc()
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/objc-dyn-sbtype/ |
| H A D | TestObjCDynamicSBType.py | 54 base_type = v_base.GetType() 59 base_type.GetName(), "MyDerivedClass *", 62 base_pointee_type = base_type.GetPointeeType()
|
| /llvm-project-15.0.7/flang/test/Semantics/ |
| H A D | array-constr-values.f90 | 19 TYPE, ABSTRACT :: base_type type 51 intarray = (/ base_type(10), 2, 3, 4, 5 /)
|
| /llvm-project-15.0.7/mlir/test/Conversion/FuncToLLVM/ |
| H A D | func-memref.mlir | 104 !base_type = memref<64xi32, 201> 108 …index, %arg1 : index, %arg2 : index, %base0 : !base_type, %base1 : !base_type) -> (!base_type, !ba…
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | OnDiskHashTable.h | 435 typedef OnDiskChainedHashTable<Info> base_type; typedef 436 typedef typename base_type::internal_key_type internal_key_type; 437 typedef typename base_type::external_key_type external_key_type; 438 typedef typename base_type::data_type data_type; 439 typedef typename base_type::hash_value_type hash_value_type; 440 typedef typename base_type::offset_type offset_type; 497 : base_type(NumBuckets, NumEntries, Buckets, Base, InfoObj), in base_type() function
|
| /llvm-project-15.0.7/llvm/utils/gdb-scripts/ |
| H A D | prettyprinters.py | 429 base_type = impl_type.fields()[0].type 435 if base_type.template_argument(0): 448 base = val.cast(impl_type).cast(base_type) 450 prev = prev.cast(base_type.pointer()) 468 base_type = sentinel.type.fields()[0].type 469 self.sentinel = sentinel.address.cast(base_type.pointer())
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | AllocatorList.h | 95 using base_type = variable 108 explicit IteratorImpl(const IteratorBase &I) : base_type(I) {} in IteratorImpl() 114 : base_type(X.wrapped()) {} 118 reference operator*() const { return base_type::wrapped()->V; }
|
| /llvm-project-15.0.7/clang/utils/VtableTest/ |
| H A D | gen.cc | 100 int base_type = 1; in gs() local 106 base_type = 3; in gs() 129 base_present[s][base] = base_type; in gs()
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/ |
| H A D | ObjCLanguageRuntime.cpp | 417 ObjCLanguageRuntime::GetRuntimeType(CompilerType base_type) { in GetRuntimeType() argument 421 if (TypeSystemClang::IsObjCObjectPointerType(base_type, &class_type)) in GetRuntimeType() 423 else if (TypeSystemClang::IsObjCObjectOrInterfaceType(base_type)) in GetRuntimeType() 424 class_type = base_type; in GetRuntimeType()
|
| H A D | ObjCLanguageRuntime.h | 269 llvm::Optional<CompilerType> GetRuntimeType(CompilerType base_type) override;
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-dwarfdump/X86/ |
| H A D | debug_expr_convert.s | 5 # CHECK: DW_AT_location (DW_OP_addr 0x{{[0-9a-f]+}}, DW_OP_convert <invalid base_type ref: 0x{{[0-… 109 .asciz "\235\200\200" ### This offset is off by one to test the invalid base_type ref printout
|
| /llvm-project-15.0.7/polly/lib/External/ppcg/ |
| H A D | print.c | 377 __isl_take isl_printer *p, const char *base_type, in ppcg_print_declaration_with_size() argument 380 if (!base_type || !size) in ppcg_print_declaration_with_size() 385 p = isl_printer_print_str(p, base_type); in ppcg_print_declaration_with_size()
|
| H A D | print.h | 31 __isl_take isl_printer *p, const char *base_type,
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/ARM/ |
| H A D | ABISysV_arm.cpp | 1596 CompilerType base_type; in GetReturnValueObjectImpl() local 1598 compiler_type.IsHomogeneousAggregate(&base_type); in GetReturnValueObjectImpl() 1602 base_type.GetByteSize(&thread); in GetReturnValueObjectImpl() 1603 if (base_type.IsVectorType()) { in GetReturnValueObjectImpl() 1611 } else if (base_type.IsFloatingPointType(float_count, is_complex)) { in GetReturnValueObjectImpl() 1626 base_type = compiler_type.GetFieldAtIndex(index, name, nullptr, in GetReturnValueObjectImpl() 1629 if (base_type.IsFloatingPointType(float_count, is_complex)) { in GetReturnValueObjectImpl() 1631 base_type.GetByteSize(&thread); in GetReturnValueObjectImpl()
|
| /llvm-project-15.0.7/pstl/test/support/ |
| H A D | utils.h | 190 typedef ForwardIterator<Iterator, IteratorTag> base_type; typedef 194 explicit BidirectionalIterator(Iterator i) : base_type(i) {} in BidirectionalIterator() 195 BidirectionalIterator(const base_type& i) : base_type(i.iterator()) {} in BidirectionalIterator() 200 ++base_type::my_iterator; 206 --base_type::my_iterator; 212 base_type::my_iterator++; 218 base_type::my_iterator--;
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/AArch64/ |
| H A D | ABIMacOSX_arm64.cpp | 507 CompilerType base_type; in LoadValueFromConsecutiveGPRRegisters() local 509 value_type.IsHomogeneousAggregate(&base_type); in LoadValueFromConsecutiveGPRRegisters() 513 if (!base_type) in LoadValueFromConsecutiveGPRRegisters() 516 base_type.GetByteSize(exe_ctx.GetBestExecutionContextScope()); in LoadValueFromConsecutiveGPRRegisters()
|
| H A D | ABISysV_arm64.cpp | 482 CompilerType base_type; in LoadValueFromConsecutiveGPRRegisters() local 484 value_type.IsHomogeneousAggregate(&base_type); in LoadValueFromConsecutiveGPRRegisters() 488 if (!base_type) in LoadValueFromConsecutiveGPRRegisters() 491 base_type.GetByteSize(exe_ctx.GetBestExecutionContextScope()); in LoadValueFromConsecutiveGPRRegisters()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/X86/ |
| H A D | decl-derived-member.ll | 9 ; typedef base base_type; 11 ; base_type b; 110 !6 = !DIDerivedType(tag: DW_TAG_typedef, name: "base_type", file: !2, line: 4, baseType: !7)
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | LanguageRuntime.h | 153 virtual llvm::Optional<CompilerType> GetRuntimeType(CompilerType base_type) { in GetRuntimeType() argument
|
| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | STLExtrasTest.cpp | 543 using base_type = typedef 547 explicit CustomPointerIterator(std::list<int>::iterator I) : base_type(I) {} in CustomPointerIterator() 550 int *operator*() const { return &*base_type::wrapped(); } in operator *()
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | typo-correction.cpp | 46 static int base_type; // expected-note {{'base_type' declared here}} member
|
| /llvm-project-15.0.7/libcxx/utils/gdb/libcxx/ |
| H A D | printers.py | 114 base_type = _remove_generics(_prettify_typename(gdb_type)) 115 arg_list = [base_type]
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 1359 auto base_type = symbol_file.ResolveTypeUID(base->getTypeId()); in AddRecordBases() local 1360 if (!base_type) in AddRecordBases() 1363 auto base_comp_type = base_type->GetFullCompilerType(); in AddRecordBases()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTSource.cpp | 1594 QualType base_type = bi->getType(); in layoutRecordType() local 1595 const RecordType *base_record_type = base_type->getAs<RecordType>(); in layoutRecordType()
|