Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/commands/expression/import-std-module/array/
H A DTestArrayFromStdModule.py25 array_type = "std::array<int, 3>"
27 value_type = array_type + "::value_type"
29 iterator = array_type + "::iterator"
30 riterator = array_type + "::reverse_iterator"
33 result_type=array_type,
57 array_type = "std::array<DbgInfo, 1>"
59 value_type = array_type + "::value_type"
61 iterator = array_type + "::iterator"
62 riterator = array_type + "::reverse_iterator"
67 result_type=array_type,
/llvm-project-15.0.7/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-15.0.7/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-15.0.7/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-15.0.7/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
H A Dp13.cpp52 namespace array_type { namespace
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp157 CompilerType array_type(ast_ctx.CreateArrayType( in BuildArray() local
159 return ClangUtil::GetQualType(array_type); in BuildArray()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp664 auto array_type = llvm::dyn_cast<PDBSymbolTypeArray>(&type); in CreateLLDBTypeFromPDBType() local
665 assert(array_type); in CreateLLDBTypeFromPDBType()
666 uint32_t num_elements = array_type->getCount(); in CreateLLDBTypeFromPDBType()
667 uint32_t element_uid = array_type->getElementTypeId(); in CreateLLDBTypeFromPDBType()
669 if (uint64_t size = array_type->getLength()) in CreateLLDBTypeFromPDBType()
696 array_type->getSymIndexId(), m_ast.GetSymbolFile(), ConstString(), in CreateLLDBTypeFromPDBType()
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp702 if (const ArrayType *array_type = type->getAsArrayTypeUnsafe()) in RequireCompleteType() local
703 return RequireCompleteType(array_type->getElementType()); in RequireCompleteType()
/llvm-project-15.0.7/llvm/test/Bindings/OCaml/
H A Dcore.ml129 insist ((array_type i8_type 11) = type_of c);
137 insist ((array_type i8_type 9) = type_of c);
182 insist ((array_type i32_type 2) = (type_of c));
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Darc.m847 typedef __typeof__(array) array_type;
848 typedef id __strong array_type[1];
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DDwarf.def140 HANDLE_DW_TAG(0x0001, array_type, 2, DWARF, DW_KIND_TYPE)
/llvm-project-15.0.7/llvm/bindings/ocaml/llvm/
H A Dllvm.ml507 external array_type : lltype -> int -> lltype = "llvm_array_type"
H A Dllvm.mli715 (** [array_type ty n] returns the array type containing [n] elements of type
717 val array_type : lltype -> int -> lltype val
1014 [array_type ty (Array.length elts)] and containing the values [elts].
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2669 const clang::ArrayType *array_type = in GetCompleteQualType() local
2672 if (array_type) in GetCompleteQualType()
2673 return GetCompleteQualType(ast, array_type->getElementType(), in GetCompleteQualType()