/llvm-project/lldb/test/API/commands/expression/import-std-module/array/ |
H A D | TestArrayFromStdModule.py | 28 array_type = "std::array<int, 3>" 31 result_type=array_type, 58 array_type = "std::array<DbgInfo, 1>" 65 result_type=array_type,
|
/llvm-project/flang/test/Evaluate/ |
H A D | folding12.f90 | 27 type array_type type 29 end type array_type 30 type(array_type), parameter :: array_var2 = & 31 array_type([(real(i*i), i = 1,3)])
|
/llvm-project/libcxx/test/libcxx/input.output/filesystems/class.path/path.req/ |
H A D | is_pathable.pass.cpp | 64 using array_type = CharT[25]; typedef 88 AssertPathable<array_type>(); in Test()
|
/llvm-project/clang/test/SemaCXX/ |
H A D | conversion-function.cpp | 27 typedef int array_type[10]; typedef 41 operator array_type(); // expected-error{{conversion function cannot convert to an array type}}
|
/llvm-project/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/ |
H A D | p13.cpp | 52 namespace array_type { namespace
|
/llvm-project/mlir/test/Target/Cpp/ |
H A D | common-cpp.mlir | 108 // CHECK: void array_type(int32_t v1[3], float v2[10][20]) 109 func.func @array_type(%arg0: !emitc.array<3xi32>, %arg1: !emitc.array<10x20xf32>) {
|
/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCTypeEncodingParser.cpp | 161 CompilerType array_type(ast_ctx.CreateArrayType( in BuildArray() local 164 return ClangUtil::GetQualType(array_type); in BuildArray()
|
/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | PDBASTParser.cpp | 667 auto array_type = llvm::dyn_cast<PDBSymbolTypeArray>(&type); in CreateLLDBTypeFromPDBType() local 668 assert(array_type); in CreateLLDBTypeFromPDBType() 669 uint32_t num_elements = array_type->getCount(); in CreateLLDBTypeFromPDBType() 670 uint32_t element_uid = array_type->getElementTypeId(); in CreateLLDBTypeFromPDBType() 672 if (uint64_t size = array_type->getLength()) in CreateLLDBTypeFromPDBType() 699 array_type->getSymIndexId(), ConstString(), bytes, nullptr, in CreateLLDBTypeFromPDBType()
|
/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangASTImporter.cpp | 944 if (const ArrayType *array_type = type->getAsArrayTypeUnsafe()) in RequireCompleteType() 945 return RequireCompleteType(array_type->getElementType()); in RequireCompleteType() local
|
/llvm-project/llvm/test/Bindings/OCaml/ |
H A D | core.ml | 151 insist ((array_type i8_type 11) = type_of c); 159 insist ((array_type i8_type 9) = type_of c); 204 insist ((array_type i32_type 2) = (type_of c));
|
/llvm-project/clang/test/SemaObjC/ |
H A D | arc.m | 815 typedef __typeof__(array) array_type; 816 typedef id __strong array_type[1];
|
/llvm-project/llvm/bindings/ocaml/llvm/ |
H A D | llvm.mli | 724 (** [array_type ty n] returns the array type containing [n] elements of type 726 val array_type : lltype -> int -> lltype 1034 [array_type ty (Array.length elts)] and containing the values [elts]. 720 val array_type : lltype -> int -> lltype global() val
|
H A D | llvm.ml | 514 external array_type : lltype -> int -> lltype = "llvm_array_type"
|
/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | Dwarf.def | 150 HANDLE_DW_TAG(0x0001, array_type, 2, DWARF, DW_KIND_TYPE)
|
/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 2713 const clang::ArrayType *array_type = in GetCompleteQualType() 2716 if (array_type) in GetCompleteQualType() 2717 return GetCompleteQualType(ast, array_type->getElementType(), in GetCompleteQualType() 2708 const clang::ArrayType *array_type = GetCompleteQualType() local
|