Home
last modified time | relevance | path

Searched refs:array_type (Results 1 – 15 of 15) sorted by relevance

/llvm-project/lldb/test/API/commands/expression/import-std-module/array/
H A DTestArrayFromStdModule.py28 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 Dfolding12.f9027 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 Dis_pathable.pass.cpp64 using array_type = CharT[25]; typedef
88 AssertPathable<array_type>(); in Test()
/llvm-project/clang/test/SemaCXX/
H A Dconversion-function.cpp27 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 Dp13.cpp52 namespace array_type { namespace
/llvm-project/mlir/test/Target/Cpp/
H A Dcommon-cpp.mlir108 // 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 DAppleObjCTypeEncodingParser.cpp161 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 DPDBASTParser.cpp667 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 DClangASTImporter.cpp944 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 Dcore.ml151 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 Darc.m815 typedef __typeof__(array) array_type;
816 typedef id __strong array_type[1];
/llvm-project/llvm/bindings/ocaml/llvm/
H A Dllvm.mli724 (** [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 Dllvm.ml514 external array_type : lltype -> int -> lltype = "llvm_array_type"
/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.def150 HANDLE_DW_TAG(0x0001, array_type, 2, DWARF, DW_KIND_TYPE)
/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2713 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