Home
last modified time | relevance | path

Searched defs:TypeVector (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dintrinsics-library.cpp38 struct TypeVector { struct
39 template <typename... FortranType> static constexpr TypeVector Create() { in Create()
43 constexpr size_t size() const { return size_; }; in size()
44 using const_iterator = const DynamicType *;
45 constexpr const_iterator begin() const { return startPtr; } in begin()
46 constexpr const_iterator end() const { return endPtr; } in end()
47 const DynamicType &operator[](size_t i) const { return *(startPtr + i); } in operator []()
49 const DynamicType *startPtr{nullptr};
50 const DynamicType *endPtr{nullptr};
51 const size_t size_;
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCDeclVendor.cpp391 typedef std::vector<std::string> TypeVector; typedef in ObjCRuntimeMethodType
/llvm-project-15.0.7/llvm/unittests/DebugInfo/CodeView/
H A DRandomAccessVisitorTest.cpp165 std::vector<CVType> TypeVector; member
/llvm-project-15.0.7/clang/include/clang/Parse/
H A DParser.h2071 typedef SmallVector<ParsedType, 12> TypeVector; typedef